DanialMT commited on
Commit
8f9935f
·
1 Parent(s): 84a5c0f

Fix an inconsistency

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -482,7 +482,7 @@ print(response.choices[0].message.content)
482
  ```bash
483
  curl -sS http://localhost:8000/v1/chat/completions \
484
  -H "Content-Type: application/json" \
485
- -d '{"model":"nvidia/nemotron-nano-v3-omni","messages":[{"role":"user","content":"Hello, what can you do?"}],"temperature":1.0,"top_k":1}' \
486
  | python3 -c "import sys,json; print(json.load(sys.stdin)['choices'][0]['message']['content'])"
487
  ```
488
 
@@ -517,7 +517,7 @@ USER_PROMPT = (
517
  "Do not invent text you cannot read."
518
  )
519
  API_URL = "http://localhost:8000/v1/chat/completions"
520
- MODEL = "nvidia/nemotron-nano-v3-omni"
521
  MAX_TOKENS = 32000
522
  DPI = 150
523
 
 
482
  ```bash
483
  curl -sS http://localhost:8000/v1/chat/completions \
484
  -H "Content-Type: application/json" \
485
+ -d '{"model":"nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning-NVFP4","messages":[{"role":"user","content":"Hello, what can you do?"}],"temperature":1.0,"top_k":1}' \
486
  | python3 -c "import sys,json; print(json.load(sys.stdin)['choices'][0]['message']['content'])"
487
  ```
488
 
 
517
  "Do not invent text you cannot read."
518
  )
519
  API_URL = "http://localhost:8000/v1/chat/completions"
520
+ MODEL = "nvidia/Nemotron-3-Nano-Omni-30B-A3B-Reasoning-NVFP4"
521
  MAX_TOKENS = 32000
522
  DPI = 150
523