"vscode:/vscode.git/clone" did not exist on "2cab0f7fcfcee49bb5f389524c324b1d2775ae1e"
  1. 10 Nov, 2025 1 commit
  2. 06 Nov, 2025 1 commit
  3. 28 Oct, 2025 1 commit
  4. 27 Oct, 2025 2 commits
  5. 24 Oct, 2025 1 commit
  6. 23 Oct, 2025 1 commit
  7. 17 Oct, 2025 1 commit
  8. 14 Oct, 2025 1 commit
  9. 13 Oct, 2025 1 commit
  10. 09 Oct, 2025 1 commit
  11. 07 Oct, 2025 3 commits
  12. 01 Oct, 2025 1 commit
  13. 29 Sep, 2025 1 commit
  14. 25 Sep, 2025 1 commit
  15. 17 Sep, 2025 1 commit
  16. 16 Sep, 2025 1 commit
  17. 09 Sep, 2025 1 commit
  18. 01 Sep, 2025 1 commit
  19. 30 Aug, 2025 1 commit
  20. 27 Aug, 2025 1 commit
  21. 22 Aug, 2025 1 commit
  22. 21 Aug, 2025 1 commit
  23. 20 Aug, 2025 1 commit
  24. 19 Aug, 2025 1 commit
  25. 15 Aug, 2025 1 commit
  26. 13 Aug, 2025 2 commits
  27. 22 Jul, 2025 1 commit
  28. 11 Jun, 2025 1 commit
  29. 23 May, 2025 1 commit
  30. 21 May, 2025 1 commit
  31. 14 May, 2025 1 commit
    • wxsm's avatar
      fix: add maxage to nats stream (#1053) · 087d398d
      wxsm authored
      Add max_age to nats stream when create, 10 min should be very enough for prefill workers to consume. this prevent system crash while nats jetstream hits disk limit by endless growing messages.
      087d398d
  32. 09 May, 2025 1 commit
  33. 07 May, 2025 1 commit
  34. 06 May, 2025 1 commit
  35. 01 May, 2025 1 commit
  36. 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