1. 24 Sep, 2025 1 commit
  2. 18 Sep, 2025 2 commits
  3. 02 Sep, 2025 1 commit
  4. 25 Aug, 2025 1 commit
  5. 22 Aug, 2025 1 commit
  6. 20 Aug, 2025 3 commits
  7. 19 Aug, 2025 2 commits
  8. 15 Aug, 2025 1 commit
  9. 07 Aug, 2025 1 commit
  10. 06 Aug, 2025 1 commit
  11. 30 Jul, 2025 1 commit
  12. 23 Jul, 2025 1 commit
  13. 22 Jul, 2025 1 commit
  14. 17 Jul, 2025 1 commit
  15. 15 Jul, 2025 2 commits
  16. 14 Jul, 2025 1 commit
  17. 08 Jul, 2025 1 commit
  18. 07 Jul, 2025 1 commit
  19. 03 Jul, 2025 1 commit
  20. 01 Jul, 2025 1 commit
  21. 30 Jun, 2025 1 commit
  22. 13 Jun, 2025 1 commit
  23. 29 May, 2025 1 commit
  24. 09 May, 2025 3 commits
  25. 06 May, 2025 1 commit
    • Graham King's avatar
      feat(dynamo-run): vllm and sglang subprocess engines (#954) · 28fd481c
      Graham King authored
      New vllm and sglang engines that run in a sub-process. Will hopefully replace the existing embedded python engines.
          
      Why?
          
        - Pure Python, does not require knowing Rust to work on it. Much simpler to maintain.
        - No embedded Python interpreter which avoids linking libpython and avoids the MacOS virtualenv issues.
        - Should have better performance as it's "native" vllm / sglang.
        - Works with any version of vllm (including v1!) and sglang. Less upgrade struggle.
      28fd481c
  26. 01 May, 2025 1 commit
  27. 29 Apr, 2025 1 commit
    • Graham King's avatar
      chore: Split PushRouter from Client (#817) · a1a10365
      Graham King authored
      In a distributed system we don't know if the remote workers need pre-processing done ingress-side or not. Previously Client required us to decide this before discovering the remote endpoints, which was fine because pre-processing was worker-side.
      
      As part of moving pre-processing back to ingress-side we need to split this into two steps:
      - Client discovers the endpoints, and (later PR) will fetch their Model Deployment Card.
      - PushRouter will use the Model Deployment Card to decide if they need pre-processing or not, which affects the types of the generic parameters.
      
      Part of #743
      a1a10365
  28. 26 Apr, 2025 1 commit
  29. 25 Apr, 2025 3 commits
    • Harrison Saturley-Hall's avatar
    • Anant Sharma's avatar
      448e79a6
    • Graham King's avatar
      chore: Publish Model Deployment Card to NATS (#799) · d346782c
      Graham King authored
      This will allow an ingress-side pre-processor to see it without needing a model checkout.
      
      Currently pre-processing is done in the worker, which has access to the model deployment card ("MDC") files (`config.json`, `tokenizer.json` and `tokenizer_config.json`) locally. We want to move the pre-processor to the ingress side to support KV routing. That requires ingress side (i.e the HTTP server), on a different machine than the worker to be able to see those three files.
      
      To support that this PR makes the worker upload the contents of those files to the NATS object store, and publishes the MDC with those NATS urls to the key-value store. 
      
      The key-value store has an interface so any store (nats, etcd, redis, etc) can be supported. Implementations for memory and NATS are provided.
      
      Fetching the MDC from the store, doing pre-processing ingress side, and publishing a card backed by a GGUF, are all for a later commit.
      
      Part of #743 
      d346782c
  30. 17 Apr, 2025 1 commit
  31. 09 Apr, 2025 1 commit