llama/parsers/renderers: nemotron 3 nano (#13489)

---------

Co-authored-by: Daniel Hiltgen <daniel@ollama.com>
This commit is contained in:
Parth Sareen
2025-12-15 18:00:08 -08:00
committed by GitHub
parent 7b95087b9d
commit 7e3ea813c1
13 changed files with 2364 additions and 15 deletions

View File

@@ -62,6 +62,10 @@ func ParserForName(name string) Parser {
return &Olmo3Parser{}
case "olmo3-think":
return &Olmo3ThinkParser{}
case "nemotron-3-nano":
return &Nemotron3NanoParser{HasThinking: false}
case "nemotron-3-nano-thinking":
return &Nemotron3NanoParser{HasThinking: true}
default:
return nil
}