mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-22 00:31:44 +00:00
Every issue opened from now on is gated on the template headings, sent once through the LiteLLM proxy with a strict JSON schema, and labelled from the manifest in .github/labels.json. Old-template issues are not touched. The bug template shrinks to Description, Config, LiteLLM Version and Steps to Repro, both templates gain a domain dropdown, and the labelers that keyed off the old component dropdown go away.
72 lines
2.1 KiB
JSON
72 lines
2.1 KiB
JSON
{
|
|
"type": "object",
|
|
"additionalProperties": false,
|
|
"required": ["domain", "provider", "kind", "priority", "lift", "route", "version", "needs_repro", "reason"],
|
|
"properties": {
|
|
"domain": {
|
|
"type": "string",
|
|
"enum": [
|
|
"cost-map",
|
|
"llm-translation",
|
|
"routing",
|
|
"caching",
|
|
"proxy-core",
|
|
"proxy-auth",
|
|
"management",
|
|
"spend-tracking",
|
|
"budgets-rate-limits",
|
|
"db",
|
|
"logging",
|
|
"guardrails",
|
|
"mcp",
|
|
"agents",
|
|
"vector-stores",
|
|
"passthrough",
|
|
"ui",
|
|
"sdk",
|
|
"deploy",
|
|
"docs",
|
|
"unknown"
|
|
]
|
|
},
|
|
"provider": {
|
|
"type": ["string", "null"],
|
|
"enum": ["openai", "anthropic", "bedrock", "vertex_ai", "azure", "gemini", "vllm", "ollama", "openrouter", "azure_ai", null],
|
|
"description": "The provider the issue is about, folded to these ten, or null when it names none or another one."
|
|
},
|
|
"kind": { "type": "string", "enum": ["bug", "feature", "question"] },
|
|
"priority": { "type": "string", "enum": ["p0", "p1", "p2", "p3"] },
|
|
"lift": { "type": "string", "enum": ["small", "medium", "large"] },
|
|
"route": {
|
|
"type": ["string", "null"],
|
|
"enum": [
|
|
"chat_completions",
|
|
"responses",
|
|
"messages",
|
|
"embeddings",
|
|
"images",
|
|
"audio",
|
|
"rerank",
|
|
"files_batches",
|
|
"realtime",
|
|
"mcp",
|
|
"management_endpoints",
|
|
"ui",
|
|
null
|
|
],
|
|
"description": "The API surface the reporter was hitting, only when they name one."
|
|
},
|
|
"version": {
|
|
"type": ["string", "null"],
|
|
"description": "The LiteLLM release the reporter is on, found anywhere in the issue, or null."
|
|
},
|
|
"needs_repro": {
|
|
"type": "boolean",
|
|
"description": "True for a bug with no command, output or screenshot, or when unsure between p1 and p2."
|
|
},
|
|
"reason": {
|
|
"type": "string",
|
|
"description": "One or two sentences naming the evidence for the domain and the priority."
|
|
}
|
|
}
|
|
}
|