models-dev.json 794 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "acme": {
  3. "id": "acme",
  4. "name": "Acme",
  5. "env": ["ACME_API_KEY"],
  6. "models": {}
  7. },
  8. "local": {
  9. "id": "local",
  10. "name": "Local",
  11. "env": [],
  12. "models": {
  13. "model": {
  14. "id": "model",
  15. "name": "Local Model",
  16. "release_date": "2026-01-01",
  17. "attachment": false,
  18. "reasoning": true,
  19. "temperature": true,
  20. "tool_call": true,
  21. "limit": { "context": 1000, "output": 100 },
  22. "experimental": {
  23. "modes": {
  24. "high": {
  25. "provider": { "body": { "reasoning_effort": "high" } }
  26. },
  27. "max": {
  28. "provider": { "headers": { "x-variant": "max" }, "body": { "reasoning_effort": "max" } }
  29. }
  30. }
  31. }
  32. }
  33. }
  34. }
  35. }