[PR #13489] [MERGED] llama/parsers/renderers: nemotron 3 nano #24774

Closed
opened 2026-04-19 17:48:09 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/ollama/ollama/pull/13489
Author: @ParthSareen
Created: 12/15/2025
Status: Merged
Merged: 12/16/2025
Merged by: @ParthSareen

Base: mainHead: parth/nemotron-3-nano


📝 Commits (4)

  • 6949224 renderers/parsers: add nemotron 3 nano
  • 49d415e add support for NVIDIA Nemotron 3 Nano
  • 383b028 simplify renderer and parser, add tests
  • 7e567d8 add renderer parser edge cases, remove dead code

📊 Changes

13 files changed (+2364 additions, -15 deletions)

View changed files

📝 llama/llama.cpp/src/llama-arch.cpp (+35 -0)
📝 llama/llama.cpp/src/llama-arch.h (+1 -0)
📝 llama/llama.cpp/src/llama-graph.cpp (+10 -0)
📝 llama/llama.cpp/src/llama-model.cpp (+41 -9)
📝 llama/llama.cpp/src/llama-model.h (+1 -0)
📝 llama/llama.cpp/src/models/nemotron-h.cpp (+35 -6)
llama/patches/0032-llama-add-support-for-NVIDIA-Nemotron-Nano-3.patch (+586 -0)
model/parsers/nemotron3nano.go (+255 -0)
model/parsers/nemotron3nano_test.go (+583 -0)
📝 model/parsers/parsers.go (+4 -0)
model/renderers/nemotron3nano.go (+222 -0)
model/renderers/nemotron3nano_test.go (+585 -0)
📝 model/renderers/renderer.go (+6 -0)

📄 Description

adds NVIDIA Nemotron 3 Nano to Ollama


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/ollama/ollama/pull/13489 **Author:** [@ParthSareen](https://github.com/ParthSareen) **Created:** 12/15/2025 **Status:** ✅ Merged **Merged:** 12/16/2025 **Merged by:** [@ParthSareen](https://github.com/ParthSareen) **Base:** `main` ← **Head:** `parth/nemotron-3-nano` --- ### 📝 Commits (4) - [`6949224`](https://github.com/ollama/ollama/commit/694922479674da04d40ecdf032742ca45bb27f69) renderers/parsers: add nemotron 3 nano - [`49d415e`](https://github.com/ollama/ollama/commit/49d415eb2f78dcfc47e8cfc9c79e8abb14f3f650) add support for NVIDIA Nemotron 3 Nano - [`383b028`](https://github.com/ollama/ollama/commit/383b028911a0cb0ca49acfa324bfa3d1b2cc8d88) simplify renderer and parser, add tests - [`7e567d8`](https://github.com/ollama/ollama/commit/7e567d85e0dfe7b2f9e2d606907f4d6443e947fc) add renderer parser edge cases, remove dead code ### 📊 Changes **13 files changed** (+2364 additions, -15 deletions) <details> <summary>View changed files</summary> 📝 `llama/llama.cpp/src/llama-arch.cpp` (+35 -0) 📝 `llama/llama.cpp/src/llama-arch.h` (+1 -0) 📝 `llama/llama.cpp/src/llama-graph.cpp` (+10 -0) 📝 `llama/llama.cpp/src/llama-model.cpp` (+41 -9) 📝 `llama/llama.cpp/src/llama-model.h` (+1 -0) 📝 `llama/llama.cpp/src/models/nemotron-h.cpp` (+35 -6) ➕ `llama/patches/0032-llama-add-support-for-NVIDIA-Nemotron-Nano-3.patch` (+586 -0) ➕ `model/parsers/nemotron3nano.go` (+255 -0) ➕ `model/parsers/nemotron3nano_test.go` (+583 -0) 📝 `model/parsers/parsers.go` (+4 -0) ➕ `model/renderers/nemotron3nano.go` (+222 -0) ➕ `model/renderers/nemotron3nano_test.go` (+585 -0) 📝 `model/renderers/renderer.go` (+6 -0) </details> ### 📄 Description adds NVIDIA Nemotron 3 Nano to Ollama --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-19 17:48:09 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/ollama#24774