1. 24 Feb, 2026 1 commit
  2. 18 Feb, 2026 3 commits
  3. 13 Feb, 2026 2 commits
  4. 11 Feb, 2026 1 commit
  5. 05 Feb, 2026 1 commit
  6. 04 Feb, 2026 1 commit
  7. 03 Feb, 2026 1 commit
  8. 02 Jan, 2026 1 commit
  9. 18 Dec, 2025 1 commit
  10. 16 Dec, 2025 2 commits
  11. 02 Dec, 2025 1 commit
  12. 25 Nov, 2025 1 commit
  13. 08 Nov, 2025 1 commit
  14. 23 Oct, 2025 1 commit
  15. 13 Oct, 2025 1 commit
  16. 11 Oct, 2025 1 commit
  17. 10 Oct, 2025 1 commit
  18. 08 Oct, 2025 1 commit
  19. 26 Sep, 2025 1 commit
  20. 24 Sep, 2025 1 commit
  21. 22 Aug, 2025 1 commit
  22. 21 Aug, 2025 1 commit
  23. 18 Aug, 2025 1 commit
  24. 15 Aug, 2025 1 commit
  25. 07 Aug, 2025 1 commit
  26. 05 Aug, 2025 1 commit
  27. 14 Jul, 2025 1 commit
  28. 01 Jul, 2025 1 commit
  29. 25 Jun, 2025 1 commit
  30. 12 Jun, 2025 1 commit
  31. 04 Jun, 2025 1 commit
  32. 27 May, 2025 1 commit
  33. 21 May, 2025 1 commit
  34. 19 May, 2025 1 commit
  35. 14 May, 2025 1 commit
    • Graham King's avatar
      feat(dynamo-run): Print HTTP routes on startup (#1010) · ed290f0a
      Graham King authored
      For #1006
      
      Prints this on startup:
      ```
      2025-05-09T13:06:34.529Z DEBUG dynamo_run::input::http: Supported routes: ["GET /metrics", "GET /dynamo/alpha/list-models", "GET /v1/models", "POST /v1/chat/completions", "POST /v1/completions"]
      ```
      ed290f0a
  36. 29 Apr, 2025 1 commit
    • Abrar Shivani's avatar
      feat: Add request template support for default inference parameters (#841) · adad2ecd
      Abrar Shivani authored
      Adds support for specifying default request parameters through a json template file that can be applied across all inference requests. This enables consistent parameter settings while still allowing per-request overrides.
      
      Changes:
      - Add --request-template CLI flag to specify template file path
      - Integrate template support in HTTP, batch and text input modes
      - Template values can be overridden by individual request parameters
      - Example template.json:
      ```
      {
          "model": "Qwen2.5-3B-Instruct",
          "temperature": 0.7,
          "max_completion_tokens": 4096
      }
      ```
      adad2ecd