feat: add Nebius Token Factory provider for open-source models#394
feat: add Nebius Token Factory provider for open-source models#394Tony363 wants to merge 2 commits intoBeehiveInnovations:mainfrom
Conversation
Adds Nebius Token Factory as a new provider, giving access to open-source models (Qwen3, DeepSeek, Llama, GLM, GPT-OSS, Kimi, Gemma, Nemotron) through their OpenAI-compatible API. Also includes: - DeepSeek V3.2 cloud model in custom_models.json - Grok-4 intelligence score adjustment (16 → 18) - Auto-formatting fixes from black Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Summary of ChangesHello @Tony363, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request significantly expands the system's model capabilities by integrating Nebius Token Factory as a new provider. This integration allows users to leverage a wide array of open-source models, such as Qwen3, DeepSeek, and Llama, through a familiar OpenAI-compatible interface. The changes include the addition of a dedicated Nebius provider, a comprehensive model catalog, and necessary configuration updates to ensure seamless operation and user control over model access and selection. Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Activity
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request introduces a new provider, Nebius Token Factory, which enables access to a wide range of open-source models. The changes are well-structured and consistently integrated across the application, including updates to configuration, provider registration, and model restriction handling. The new provider implementation is clean and follows existing patterns. I have one suggestion to improve code clarity and reduce duplication in the model selection logic. Overall, this is a great addition.
Co-authored-by: gemini-code-assist[bot] <176961590+gemini-code-assist[bot]@users.noreply.github.com>
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 082d3dc718
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
Description
Adds Nebius Token Factory as a new model provider, enabling access to a wide range of open-source models through their OpenAI-compatible API.
Changes Made
providers/nebius.py— extendsOpenAICompatibleProviderwith Nebius-specific config and model routingproviders/registries/nebius.py— capability registry backed byconf/nebius_models.jsonconf/nebius_models.json— 19 models including Qwen3, DeepSeek, Llama, GLM, GPT-OSS, Kimi K2, Gemma, Nemotronserver.py,providers/__init__.py,providers/registry.py,providers/shared/provider_type.pyNEBIUS_ALLOWED_MODELSenv vartools/listmodels.pyoutput.env.exampleupdated with Nebius configuration and model documentationconf/custom_models.jsonconf/xai_models.jsonSupported Models
Testing
./code_quality_checks.shpasses 100%Checklist
source venv/bin/activate && ./code_quality_checks.sh🤖 Generated with Claude Code