1. 01 Aug, 2025 1 commit
  2. 31 Jul, 2025 1 commit
  3. 28 Jul, 2025 2 commits
  4. 23 Jul, 2025 1 commit
  5. 22 Jul, 2025 2 commits
  6. 18 Jul, 2025 2 commits
  7. 17 Jul, 2025 3 commits
  8. 16 Jul, 2025 2 commits
  9. 15 Jul, 2025 3 commits
  10. 10 Jul, 2025 1 commit
  11. 08 Jul, 2025 1 commit
  12. 07 Jul, 2025 1 commit
  13. 01 Jul, 2025 1 commit
  14. 24 Jun, 2025 3 commits
  15. 21 Jun, 2025 1 commit
  16. 17 Jun, 2025 1 commit
  17. 13 Jun, 2025 1 commit
  18. 11 Jun, 2025 2 commits
  19. 09 Jun, 2025 1 commit
  20. 04 Jun, 2025 1 commit
  21. 03 Jun, 2025 1 commit
  22. 29 May, 2025 1 commit
  23. 23 May, 2025 1 commit
  24. 22 May, 2025 2 commits
    • Graham King's avatar
      feat(dynamo-run): Allow setting context-length (#1157) · 6d5da821
      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.
      6d5da821
    • jmswen's avatar
  25. 21 May, 2025 1 commit
  26. 20 May, 2025 1 commit
    • Faradawn Yang's avatar
      chore: Remove unused RouterType and ModelMetaData (#1138) · eb821bee
      Faradawn Yang authored
      Remove RouterType and ModelMetaData in `lib/runtime/src/protocols.rs`, which are unused (no outside reference). It is because that the routing has been moved to its own module, `pipeline/network/egress/push_router.rs`. Therefore, the legacy definition of RouterType in `protocols.rs` is no longer used.
      eb821bee
  27. 19 May, 2025 1 commit
    • Graham King's avatar
      feat: Support multiple models on single ingress node (#1127) · aeb79e62
      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.
      aeb79e62
  28. 15 May, 2025 1 commit
    • Graham King's avatar
      chore: Prevent duplicate components with different models. (#1103) · 641234cd
      Graham King authored
      Each namespace is for a single pipeline, so a component must be model-unique. The means we can have several components with the same name running the same model (data parallel), their traffic will be routed according to `--router-mode`, but we cannot have several components with the same name running different models.
      
      Add an `ensure_unique` check to prevent that happening.
      641234cd