- 30 Jun, 2025 2 commits
-
-
Graham King authored
Move much of what was in the `dynamo-run` crate into `dynamo-llm` so that everyone can use it. Example usage: 1. Create a `LocalModel`: ``` let local_model = LocalModelBuilder::default() .model_path("Qwen/Qwen3-0.6B") .http_port(8080) .build().await?; ``` 2. Make an engine: ``` let engine_config = EngineConfig::StaticFull { engine: dynamo_engine_mistralrs::make_engine(&local_model).await?, model: Box::new(local_model), }; ``` 3. Connect it to an input and run it ``` dynamo_llm::entrypoint::input::run_input(Input::Http, runtime, engine_config).await?; ``` For https://github.com/ai-dynamo/dynamo/issues/1647 Code Rabbit summary, thanks: * Introduced a flexible builder pattern for local model configuration, allowing advanced customization and easier initialization. * Added new input modes and unified input handling, supporting interactive chat, HTTP server, batch file, and distributed endpoint modes. * Centralized engine configuration and routing, enabling more extensible and maintainable engine management. * Simplified and modularized the codebase by moving input and engine logic into dedicated modules. * Replaced direct model construction with an asynchronous builder for improved clarity and extensibility. * Streamlined configuration and validation for flags and router settings. * Added validation to prevent incompatible input and output combinations in endpoint and dynamic modes. -
Paul Hendricks authored
-
- 27 Jun, 2025 2 commits
-
-
Muthuraj Ramalingakumar authored
-
Yan Ru Pei authored
feat: Unnormalize waiting requests + predictive load updates for Python router (mirroring Rust) + softmax sampling to reduce thrashing (#1638)
-
- 26 Jun, 2025 4 commits
-
-
Paul Hendricks authored
-
Paul Hendricks authored
-
Paul Hendricks authored
-
Paul Hendricks authored
-
- 25 Jun, 2025 3 commits
-
-
Zhongdongming Dai authored
-
ishandhanani authored
Co-authored-by:Ryan McCormick <rmccormick@nvidia.com>
-
jain-ria authored
-
- 24 Jun, 2025 3 commits
-
-
Paul Hendricks authored
-
Paul Hendricks authored
-
Tianer Zhou authored
Signed-off-by:
Tianer Zhou <ezhoureal@gmail.com> Co-authored-by:
Yan Ru Pei <yanrpei@gmail.com>
-
- 17 Jun, 2025 1 commit
-
-
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 1 commit
-
-
Hongkuan Zhou authored
Signed-off-by:Hongkuan Zhou <tedzhouhk@gmail.com>
-
- 12 Jun, 2025 2 commits
-
-
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
-
- 09 Jun, 2025 3 commits
-
-
jthomson04 authored
-
jthomson04 authored
-
jthomson04 authored
-
- 06 Jun, 2025 1 commit
-
-
Olga Andreeva authored
-
- 04 Jun, 2025 4 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
-
jthomson04 authored
-
- 03 Jun, 2025 1 commit
-
-
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 2 commits
-
-
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 3 commits
-
-
jain-ria authored
-
Alec authored
-
jthomson04 authored
-
- 29 May, 2025 4 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
-