"lib/llm/src/vscode:/vscode.git/clone" did not exist on "d849f7eccabdd850e2c7cb5e6103d6f8b39b0a77"
- 21 Nov, 2025 1 commit
-
-
Yan Ru Pei authored
Signed-off-by:PeaBrane <yanrpei@gmail.com>
-
- 19 Nov, 2025 1 commit
-
-
Graham King authored
Signed-off-by:Graham King <grahamk@nvidia.com>
-
- 11 Nov, 2025 1 commit
-
-
Graham King authored
Signed-off-by:Graham King <grahamk@nvidia.com>
-
- 31 Oct, 2025 1 commit
-
-
Anant Sharma authored
Signed-off-by:Anant Sharma <anants@nvidia.com>
-
- 22 Oct, 2025 1 commit
-
-
Anish authored
Signed-off-by:
Harry Kim <harry_kim@live.com> Signed-off-by:
athreesh <anish.maddipoti@utexas.edu> Signed-off-by:
akshatha-k <33278067+akshatha-k@users.noreply.github.com> Signed-off-by:
Harrison Saturley-Hall <hsaturleyhal@nvidia.com> Signed-off-by:
Harrison King Saturley-Hall <hsaturleyhal@nvidia.com> Co-authored-by:
Harry Kim <harry_kim@live.com> Co-authored-by:
Claude <noreply@anthropic.com> Co-authored-by:
akshatha-k <33278067+akshatha-k@users.noreply.github.com> Co-authored-by:
Harrison Saturley-Hall <hsaturleyhal@nvidia.com>
-
- 16 Oct, 2025 1 commit
-
-
Anish authored
Signed-off-by:
athreesh <anish.maddipoti@utexas.edu> Co-authored-by:
Claude <noreply@anthropic.com>
-
- 08 Oct, 2025 2 commits
-
-
Graham King authored
Signed-off-by:Graham King <grahamk@nvidia.com>
-
Graham King authored
Signed-off-by:Graham King <grahamk@nvidia.com>
-
- 16 Sep, 2025 1 commit
-
-
Graham King authored
Signed-off-by:Graham King <grahamk@nvidia.com>
-
- 03 Sep, 2025 1 commit
-
-
Olga Andreeva authored
refactor: Split ModelType to ModelInput for request and response type; ModelType for the supported workloads (#2714) Signed-off-by:
Guan Luo <gluo@nvidia.com> Signed-off-by:
GuanLuo <41310872+GuanLuo@users.noreply.github.com> Co-authored-by:
Guan Luo <gluo@nvidia.com> Co-authored-by:
GuanLuo <41310872+GuanLuo@users.noreply.github.com>
-
- 02 Sep, 2025 1 commit
-
-
Jacky authored
-
- 06 Aug, 2025 2 commits
-
-
Graham King authored
-
Graham King authored
-
- 05 Aug, 2025 1 commit
-
-
Chi authored
-
- 01 Aug, 2025 1 commit
-
-
Jacky authored
Signed-off-by:
Jacky <18255193+kthui@users.noreply.github.com> Co-authored-by:
Neelay Shah <neelays@nvidia.com>
-
- 28 Jul, 2025 1 commit
-
-
Jacky authored
-
- 22 Jul, 2025 1 commit
-
-
atchernych authored
-
- 18 Jul, 2025 1 commit
-
-
Yan Ru Pei authored
Signed-off-by:
Yan Ru Pei <yanrpei@gmail.com> Co-authored-by:
coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
-
- 17 Jul, 2025 1 commit
-
-
Graham King authored
-
- 16 Jul, 2025 1 commit
-
-
Yan Ru Pei authored
-
- 14 Jul, 2025 1 commit
-
-
Yan Ru Pei authored
-
- 10 Jul, 2025 1 commit
-
-
Yan Ru Pei authored
Signed-off-by:
Yan Ru Pei <yanrpei@gmail.com> Co-authored-by:
Hongkuan Zhou <tedzhouhk@gmail.com>
-
- 08 Jul, 2025 1 commit
-
-
Yan Ru Pei authored
Signed-off-by:
Yan Ru Pei <yanrpei@gmail.com> Co-authored-by:
Alec <35311602+alec-flowers@users.noreply.github.com>
-
- 02 Jul, 2025 1 commit
-
-
Zhongdongming Dai authored
-
- 30 Jun, 2025 1 commit
-
-
tzulingk authored
-
- 12 Jun, 2025 1 commit
-
-
Kristen Kelleher authored
Signed-off-by:
Kristen Kelleher <kkelleher@nvidia.com> Co-authored-by:
Ryan McCormick <rmccormick@nvidia.com>
-
- 04 Jun, 2025 1 commit
-
-
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.
-
- 03 Jun, 2025 1 commit
-
-
Paul Hendricks authored
-
- 02 Jun, 2025 2 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
-
- 29 May, 2025 1 commit
-
-
Graham King authored
-
- 28 May, 2025 1 commit
-
-
Tanmay Verma authored
-
- 22 May, 2025 2 commits
-
-
Graham King authored
Example: ``` dynamo-run out=<engine> <model> --kv-cache-block-size 64 ``` In a distributed system this goes on the worker node and is propagated to ingress via the model deployment card. Previously hard coded to 16, which is now the default. - Load context_length from model. Closes #1172 - Store context length and KV cache block size in Model Deployment Card #1170
-
Graham King authored
Llama 4 has a very large context length (aka n_ctx, model_max_length, max_model_len), and vllm won't start unless it can allocate enough KV cache for the entire context. Allow passing `--context-length <N>` to `dynamo-run` to limit it so long-context models will fit. Future todo: - Restrict every request's `max_tokens` to below the context length. Our pre-processor should do this by setting stop_conditions.max_tokens. mistralrs engine wrapper must do it itself because it does not use the pre-processor. - mistralrs and llamacpp currently have a hard-coded max context length if one is not provided on the command line. Change those to be the model's built-in max, read from the GGUF or tokenizer_config.json.
-
- 21 May, 2025 2 commits
-
-
Graham King authored
-
Suman Tatiraju authored
Signed-off-by:
Suman Tatiraju <167138127+statiraju@users.noreply.github.com> Signed-off-by:
Anant Sharma <anants@nvidia.com> Co-authored-by:
Anant Sharma <anants@nvidia.com> Co-authored-by:
Dmitry Tokarev <dtokarev@nvidia.com> Co-authored-by:
ishandhanani <82981111+ishandhanani@users.noreply.github.com> Co-authored-by:
Kristen Kelleher <kkelleher@nvidia.com> Co-authored-by:
Suman Tatiraju <statiraju@statiraju-mlt.client.nvidia.com> Co-authored-by:
Hannah Zhang <hannahz@nvidia.com>
-
- 19 May, 2025 1 commit
-
-
Graham King authored
We can now do this: - Node 1: ``` dynamo-run in=http out=dyn ``` - Node 2 and 3, two instances of component 'backend' in the nemotron_ultra pipeline: ``` dynamo-run in=dyn://nemotron_ultra.backend.generate out=vllm /data/models/NemotronUltra ``` - Node 4 and 5, two instances of the 'backend' component in nemotron_super pipeline: ``` dynamo-run in=dyn://nemotron_super.backend.generate out=vllm /data/models/NemotronSuper ``` The ingress node will discover all four instances and route correctly. We have been planning for this for a long time now. As part of this auto-discovery is now always `out=dyn`, with no extra URL parts. Previously it could only route to a single pipeline. Also: - Refactor endpoint / instance naming now that I understand them - Fix removing models when their instance stops.
-
- 15 May, 2025 1 commit
-
-
Ryan McCormick authored
-
- 14 May, 2025 1 commit
-
-
Graham King authored
Router: ``` dynamo-run in=http out=dyn://dynamo.endpoint.generate --router-mode kv ``` Worker (* N): ``` dynamo-run in=dyn://dynamo.endpoint.generate out=vllm /data/llms/Qwen/Qwen3-4B ``` You need patched vllm and the C bindings `.so`. Full docs in the updated guide: `docs/guides/dynamo_run.md`. This gives us a pure-Rust ingress node: OpenAI compliant HTTP server + Pre-processor + KV-aware router.
-
- 09 May, 2025 1 commit
-
-
Graham King authored
Example of how to connect a Python sglang engine to the message bus (NATS/etc). I In this example sglang does the pre/post processing. There is already an example where Dynamo does it. The examples teach this: - Be a chat completions engine, do your own pre-processing: ``` await register_llm(ModelType.Chat, endpoint, config.model) ``` - Have Dynamo do pre-processing. It will register us under both Chat and Completions endpoints, because that's handled before a Backend engine gets the request: ``` await register_llm(ModelType.Backend, endpoint, config.model) ```
-