1. 06 Nov, 2025 1 commit
  2. 03 Nov, 2025 1 commit
  3. 24 Oct, 2025 1 commit
  4. 08 Oct, 2025 1 commit
  5. 30 Sep, 2025 1 commit
  6. 29 Sep, 2025 2 commits
  7. 26 Sep, 2025 1 commit
  8. 25 Sep, 2025 1 commit
  9. 23 Sep, 2025 1 commit
  10. 17 Sep, 2025 1 commit
  11. 16 Sep, 2025 2 commits
  12. 15 Sep, 2025 1 commit
  13. 10 Sep, 2025 1 commit
  14. 27 Aug, 2025 1 commit
  15. 26 Aug, 2025 1 commit
  16. 22 Aug, 2025 2 commits
  17. 21 Aug, 2025 1 commit
  18. 20 Aug, 2025 1 commit
  19. 19 Aug, 2025 2 commits
  20. 13 Aug, 2025 1 commit
  21. 12 Aug, 2025 1 commit
  22. 07 Aug, 2025 1 commit
  23. 23 Jul, 2025 1 commit
  24. 18 Jul, 2025 1 commit
  25. 09 Jul, 2025 1 commit
  26. 01 Jul, 2025 1 commit
  27. 26 Jun, 2025 1 commit
  28. 13 Jun, 2025 1 commit
  29. 11 Jun, 2025 1 commit
  30. 04 Jun, 2025 2 commits
  31. 03 Jun, 2025 1 commit
  32. 21 May, 2025 2 commits
  33. 19 May, 2025 1 commit
  34. 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