- 30 Jun, 2025 5 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. -
Biswa Panda authored
Co-authored-by:
Hannah Zhang <hannahz@nvidia.com> Co-authored-by:
hhzhang16 <54051230+hhzhang16@users.noreply.github.com>
-
Neal Vaidya authored
Signed-off-by:Neal Vaidya <nealv@nvidia.com>
-
tzulingk authored
-
Paul Hendricks authored
-
- 28 Jun, 2025 1 commit
-
-
Faradawn Yang authored
-
- 27 Jun, 2025 10 commits
-
-
Faradawn Yang authored
-
Muthuraj Ramalingakumar authored
-
ishandhanani authored
Co-authored-by:kkranen <kyle.kranen@gmail.com>
-
Jorge António authored
-
richardhuo-nv authored
-
Yan Ru Pei authored
Signed-off-by:Yan Ru Pei <yanrpei@gmail.com>
-
jthomson04 authored
-
Yan Ru Pei authored
feat: Unnormalize waiting requests + predictive load updates for Python router (mirroring Rust) + softmax sampling to reduce thrashing (#1638)
-
GuanLuo authored
-
julienmancuso authored
-
- 26 Jun, 2025 9 commits
-
-
hhzhang16 authored
-
Paul Hendricks authored
-
Tanmay Verma authored
Signed-off-by:Tanmay Verma <tanmayv@nvidia.com>
-
Paul Hendricks authored
-
Anant Sharma authored
Signed-off-by:Anant Sharma <anants@nvidia.com>
-
Ryan McCormick authored
-
jthomson04 authored
-
Paul Hendricks authored
-
Paul Hendricks authored
-
- 25 Jun, 2025 12 commits
-
-
hhzhang16 authored
-
Zhongdongming Dai authored
-
Biswa Panda authored
-
Yan Ru Pei authored
-
ishandhanani authored
Co-authored-by:Ryan McCormick <rmccormick@nvidia.com>
-
Will Killian authored
Signed-off-by:Will Killian <wkillian@nvidia.com>
-
Ryan McCormick authored
-
jain-ria authored
-
Tanmay Verma authored
-
Nathan Barry authored
-
Yan Ru Pei authored
-
Ryan McCormick authored
-
- 24 Jun, 2025 3 commits
-
-
Anant Sharma authored
-
Paul Hendricks authored
-
Tanmay Verma authored
Signed-off-by:
Tanmay Verma <tanmay2592@gmail.com> Co-authored-by:
Ryan McCormick <rmccormick@nvidia.com>
-