CodeRabbit logoCodeRabbit logo
特徴エンタープライズカスタマー料金表ブログ
リソース
  • ドキュメント
  • トラストセンター
  • お問い合わせ
  • FAQ
ログイン無料試用を開始
CodeRabbit logoCodeRabbit logo

プロダクト

プルリクエストレビューIDE レビューCLI レビュー

ナビゲーション

私たちについて特徴FAQシステムステータス採用データ保護附属書スタートアッププログラム脆弱性開示

リソース

ブログドキュメント変更履歴利用事例トラストセンターブランドガイドライン

問い合わせ

サポートセールス料金表パートナーシップ

By signing up you agree to our Terms of Use and Privacy Policy

discord iconx iconlinkedin iconrss icon
footer-logo shape
利用規約プライバシーポリシー

CodeRabbit Inc © 2026

CodeRabbit logoCodeRabbit logo

プロダクト

プルリクエストレビューIDE レビューCLI レビュー

ナビゲーション

私たちについて特徴FAQシステムステータス採用データ保護附属書スタートアッププログラム脆弱性開示

リソース

ブログドキュメント変更履歴利用事例トラストセンターブランドガイドライン

問い合わせ

サポートセールス料金表パートナーシップ

By signing up you agree to our Terms of Use and Privacy Policy

discord iconx iconlinkedin iconrss icon

CodeRabbit's AI Code Reviews now support NVIDIA Nemotron

by
Sahil Mohan Bansal

Sahil Mohan Bansal

January 05, 2026

|

3 min read

January 05, 2026

3 min read

  • How Nemotron helps: Context gathering at scale
  • Blend of frontier and Open Models
  • What this means for our customers
Back to blog
Cover image

共有

https://victorious-bubble-f69a016683.media.strapiapp.com/X_721afca608.pnghttps://victorious-bubble-f69a016683.media.strapiapp.com/Linked_In_a3d8c65f20.pnghttps://victorious-bubble-f69a016683.media.strapiapp.com/Reddit_feecae8a6d.png

他の記事を読む

最もリクエストの多かったCodeRabbit機能の1つ:マルチリポジトリ分析の紹介

最もリクエストの多かったCodeRabbit機能の1つ:マルチリポジトリ分析の紹介

The most requested CodeRabbit feature: Multi-Repo Analysisの意訳です。 すべてのチェックをパスし、レビューでも問題なさそうに見えたプルリクエストをマージしたら、10分後にダウンストリームのサービスが壊れてしまった...という経験があれば、この問題をすでにご存知でしょう。 アーキテクチャが複数のリポジトリにまたがっている場合(マイクロサービス

PLATEAU SDK for Unity & UnrealにおけるCodeRabbit活用事例

PLATEAU SDK for Unity & UnrealにおけるCodeRabbit活用事例

PLATEAU SDK for Unity、およびUnreal(PLATEAU SDK for Unity & Unreal)以下は、国土交通省が提供するPLATEAUデータ、つまり日本の都市をデジタルに再現した3D都市モデルを、ゲームエンジン上で扱いやすくするためのツールです。UnityとUnreal Engine向けに提供されており、都市の見た目や情報を開発現場で活用しやすくすることを目的に開

セマンティック・ヒストリー:バイブコーディングがツイートから本番環境へ至るまで

セマンティック・ヒストリー:バイブコーディングがツイートから本番環境へ至るまで

A semantic history of vibe coding: Tweet, meme and workflow の意訳です。 AI の世界において、1年は永遠と同じくらい長い期間です。 2025年2月、Andrej Karpathy は、ソフトウェア界にツイートサイズの文化的マーカーを投下しました。それがバイブコーディングという言葉です。このフレーズが定着したのは、開発者エクスペリエンスに

TL;DR: Blend of frontier & open models is more cost efficient and reviews faster. NVIDIA Nemotron is supported for CodeRabbit self-hosted customers.

We are delighted to share that CodeRabbit now supports the NVIDIA Nemotron family of open models among its blend of Large Language Models (LLMs) used for AI code reviews. Support for Nemotron 3 Nano has initially been enabled for CodeRabbit’s self-hosted customers running its container image on their infrastructure. Nemotron is used to power the context gathering and summarization stage of the code review workflow before the frontier models from OpenAI and Anthropic are used for deep reasoning and generating review comments for bug fixes.

How Nemotron helps: Context gathering at scale

This new blend of open and frontier models allows us to improve the overall speed of context gathering and improves cost efficiency by routing different parts of the review workflow to the appropriate model family, while delivering review accuracy that is at par with running frontier models alone.

High quality AI code reviews that can find deep lying and hidden bugs require lots of context gathering related to the code being analyzed. The most frequent (and most token-hungry) work is summarizing and refreshing that context: what changed in the code and does it match developer intent, how do those changes connect with rest of the codebase, what are the repo conventions or custom rules, what external data sources are available to aid the review, etc.

This context building stage is the workhorse of the overall AI code review process and it is run several times iteratively throughout the review workflow. NVIDIA Nemotron 3 Nano was built for high-efficiency tasks and its large context window (1 million tokens) along with fast speed helps to gather a lot of data and run several iterations of context summarization and retrieval.

CodeRabbit architecture with Nemotron support

Blend of frontier and Open Models

When you open a Pull Request (PR), CodeRabbit’s code review workflow is triggered starting with an isolated and secure sandbox environment where CodeRabbit analyzes code from a clone of the repo. In parallel, CodeRabbit pulls in context signals from several sources:

  • Code and PR index

  • Linter / Static App Security Tests (SAST)

  • Code graph

  • Coding agent rules files

  • Custom review rules and Learnings

  • Issue tickets (Jira, Linear, Github issues)

  • Public MCP servers

  • Web search

To dive deeper into our context engineering approach you can check out our blog: The art and science of context engineering for AI code reviews.

A lot of this context, along with the code diff being analyzed, is used to generate a PR Summary before any review comments are generated. This is where open models come in. Instead of sending all of the context to frontier models, CodeRabbit now uses Nemotron Nano v3 to gather and summarize the relevant context. Summarization is at the heart of every code review and is the key to delivering high signal-to-noise in the review comments.

After the summarization stage is completed the frontier models (e.g., OpenAI GPT-5.2-Codex and Anthropic Claude-Opus/Sonnet 4.5) perform deep reasoning to generate review comments for bug fixes, and execute agentic steps like review verification, pre-merge checks, and “finishing touches” (including docstrings and unit test suggestions).

What this means for our customers

CodeRabbit is now enabling Nemotron-3-Nano-30B support (initially for its self-hosted customers) for the context summarization part of the review workflow along with the frontier models from OpenAI and Anthropic. This results in faster code reviews without compromising quality.

We are also delighted to support the announcement from NVIDIA today about the expansion of its Nemotron family of open models and are excited to work with the company to help accelerate AI coding adoption across every industry.

Get in touch with our team to access CodeRabbit’s container image if you would like to run AI code reviews on your self-hosted infrastructure.