Guest User

Untitled

a guest
Apr 24th, 2026
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. {
  2. "$schema": "https://charm.land/crush.json",
  3. "providers": {
  4. "local-llm": {
  5. "id": "local-llm",
  6. "name": "Local LLM (llama-swap)",
  7. "type": "openai-compat",
  8. "base_url": "https://<your-llama-server>/v1",
  9. "api_key": "unused",
  10. "models": [
  11. {
  12. "id": "qwen3.6-35b-a3b",
  13. "name": "Qwen3.6-35B-A3B",
  14. "context_window": 131072,
  15. "default_max_tokens": 32768,
  16. "can_reason": true
  17. },
  18. {
  19. "id": "qwen3.6-27b",
  20. "name": "Qwen3.6-27B",
  21. "context_window": 131072,
  22. "default_max_tokens": 32768,
  23. "can_reason": true
  24. },
  25. {
  26. "id": "gemma-4-26b-a4b",
  27. "name": "Gemma 4 26B-A4B",
  28. "context_window": 131072,
  29. "default_max_tokens": 32768,
  30. "can_reason": true
  31. }
  32. ]
  33. }
  34. },
  35. "models": {
  36. "large": {
  37. "provider": "local-llm",
  38. "model": "qwen3.6-27b",
  39. "temperature": 0.6,
  40. "think": true
  41. },
  42. "small": {
  43. "provider": "local-llm",
  44. "model": "qwen3.6-27b",
  45. "temperature": 0.7,
  46. "think": false
  47. }
  48. },
  49. ...continues...
  50. }
Advertisement
Add Comment
Please, Sign In to add comment