- 17 Nov, 2025 1 commit
-
-
Keiven C authored
Signed-off-by:
Keiven Chang <keivenchang@users.noreply.github.com> Co-authored-by:
Keiven Chang <keivenchang@users.noreply.github.com>
-
- 31 Oct, 2025 1 commit
-
-
Biswa Panda authored
-
- 24 Sep, 2025 1 commit
-
-
Hyunjae Woo authored
-
- 16 Sep, 2025 1 commit
-
-
Graham King authored
Signed-off-by:Graham King <grahamk@nvidia.com>
-
- 28 Aug, 2025 1 commit
-
-
KavinKrishnan authored
Signed-off-by:
Kavin Krishnan <kavink@nvidia.com> Co-authored-by:
KavinKrishnan <kavin.krishnan@nvidia.com>
-
- 25 Aug, 2025 1 commit
-
-
Hyeonki Hong authored
Signed-off-by:Hyeonki Hong <hhk7734@gmail.com>
-
- 20 Aug, 2025 1 commit
-
-
Graham King authored
-
- 31 Jul, 2025 1 commit
-
-
Yan Ru Pei authored
-
- 28 May, 2025 1 commit
-
-
Graham King authored
Fixes #286
-
- 06 May, 2025 1 commit
-
-
Graham King authored
Adding this to a Python script makes it register on the network so that `dynamo-run` can discover it and send it requests: ``` from dynamo.llm import register_llm MODEL = "Qwen/Qwen2.5-0.5B-Instruct" await register_llm(endpoint, MODEL, 3) ``` Full vllm example, with pre-processing in dynamo: - `dynamo-run in=text out=dyn://dynamo.backend.generate` - `cd lib/bindings/python/examples/hello_world` - `python server_vllm.py` This builds on top of the work to move pre-processor to ingress side. It means we can decouple Rust and Python using NATS as the bus. The `register_llm` call does this: - Download the model from HF if necessary - Load the model deployment card from the HF folder or extract from GGUF - Push the tokenizer config etc into NATS object store so ingress can access it from a different machine - Publish the model deployment card to ETCD
-
- 17 Mar, 2025 1 commit
-
-
Graham King authored
-
- 14 Mar, 2025 1 commit
-
-
Ryan McCormick authored
-
- 13 Mar, 2025 1 commit
-
-
Graham King authored
- Any engine can take the name of a Hugging Face repository. It will be downloaded before calling the engine. - The default engine (previously always mistralrs) depends on what is compiled in. - Text can be piped in and will result in a single run of the model. All of those together mean if you build with `--features vllm` you can do this and it will download the model and run it with vllm, answer your question, and exit: ``` echo "What is the capital of Costa Rica?" | dynamo-run Qwen/Qwen2.5-3B-Instruct ``` Co-authored-by:Ryan McCormick <rmccormick@nvidia.com>
-