- 17 Jun, 2025 2 commits
-
-
Jacky authored
-
jthomson04 authored
-
- 14 Jun, 2025 1 commit
-
-
Yan Ru Pei authored
Signed-off-by:
PeaBrane <yanrpei@gmail.com> Signed-off-by:
Yan Ru Pei <yanrpei@gmail.com> Signed-off-by:
jain-ria <riajain@NVIDIA.com> Co-authored-by:
coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> Co-authored-by:
jain-ria <riajain@NVIDIA.com>
-
- 13 Jun, 2025 3 commits
-
-
Jacky authored
-
Anant Sharma authored
-
Hongkuan Zhou authored
Signed-off-by:Hongkuan Zhou <tedzhouhk@gmail.com>
-
- 12 Jun, 2025 3 commits
-
-
Kristen Kelleher authored
Signed-off-by:
Kristen Kelleher <kkelleher@nvidia.com> Co-authored-by:
Ryan McCormick <rmccormick@nvidia.com>
-
Tianer Zhou authored
Signed-off-by:
Tianer Zhou <ezhoureal@gmail.com> Co-authored-by:
Yan Ru Pei <yanrpei@gmail.com>
-
jain-ria authored
-
- 11 Jun, 2025 3 commits
-
-
Ryan Olson authored
-
Hongkuan Zhou authored
-
jthomson04 authored
-
- 10 Jun, 2025 1 commit
-
-
Biswa Panda authored
-
- 09 Jun, 2025 4 commits
-
-
jthomson04 authored
-
jthomson04 authored
-
jthomson04 authored
-
jthomson04 authored
-
- 06 Jun, 2025 1 commit
-
-
Olga Andreeva authored
-
- 05 Jun, 2025 2 commits
-
-
Kris Hung authored
-
Tanmay Verma authored
-
- 04 Jun, 2025 5 commits
-
-
Paul Hendricks authored
-
Graham King authored
Publish `generation_config.json` from worker to ingress, as part of Model Deployment Card. That allows ingress to read key fields out of it. Gemma 3 4B+ has some important information that's only in there.
-
Tom O'Brien authored
-
Kristen Kelleher authored
Signed-off-by:Kristen Kelleher <kkelleher@nvidia.com> - Content, format, and structural changes to the Dynamo docs for 0.3.0. - Includes copyediting and the first batch of changes from the DMO review.
-
jthomson04 authored
-
- 03 Jun, 2025 2 commits
-
-
Abrar Shivani authored
This PR modifies the mistralrs engine to ensure that the maximum output token length never exceeds the context length provided.
-
Hongkuan Zhou authored
Signed-off-by:
Hongkuan Zhou <tedzhouhk@gmail.com> Co-authored-by:
jothomson <jwillthomson19@gmail.com> Co-authored-by:
Ryan McCormick <rmccormick@nvidia.com>
-
- 02 Jun, 2025 3 commits
-
-
Graham King authored
Do not include by default as it needs libgomp1 at runtime. Add a feature to enable it at build time.
-
Hongkuan Zhou authored
-
Graham King authored
It was confusing to have two names for one type. This tidy up started in #1064 , is now complete.
-
- 30 May, 2025 4 commits
-
-
jain-ria authored
-
Graham King authored
Unify them with all our other logs, so we can filter with DYN_LOG, they will eventually go to the log aggregation, etc.
-
Alec authored
-
jthomson04 authored
-
- 29 May, 2025 6 commits
-
-
Graham King authored
Previously `mistral.rs` was the default engine for both safetensors and GGUF models. Now it is only the default for safetensors, `llama.cpp` becomes the default for GGUF. Why? - Since #1177 `llama.cpp` is built-in by default, so we can switch. - `llama.cpp` is very very good at running GGUF (but can't run other types of model), so we should switch. Dynamo's multi-engine support gives us a secret super-power: we can use the best engine for this specific format or model. We can still run GGUF with mistralrs by doing `out=mistralrs`.
-
jthomson04 authored
-
Alec authored
-
jthomson04 authored
-
Graham King authored
- Add Granite to our tokenizer - Fix pre-processor to load context length correctly - Add strftime_now Jinja function for prompt templates - Update llama.cpp - Handle trtllm errors when not using trtllm Support depends on the engine: - `mistral.rs`, our default engine, doesn't support Granite yet. - `llama.cpp` does and works very well: ``` dynamo-run out=llamacpp ~/llms/granite-3.3-2b-instruct-Q4_K_M.gguf --context-length 16384 ``` - `vllm` also works very well: ``` dynamo-run in=http out=vllm ~/llms/granite-3.3-2b-instruct --context-length 16384 ``` - `sglang` mostly works, but it doesn't catch the stop token, so we do in the HTTP ingress, and log an error. The Text ingress doesn't catch it because I disabled it to make the raw echo engine work. A bit of work to do here. Closes: #1245
-
Ryan Olson authored
-