Files
duty-ai-ops/config.toml

11 lines
737 B
TOML
Raw Normal View History

2025-12-24 01:36:12 +00:00
# API Configuration
api_base = "http://localhost:11434/v1"
api_key = "ollama"
model = "qwen3-tools:latest"
# AI concurrency settings
max_concurrent_diagnoses = 1 # Maximum parallel AI diagnosis requests
# System prompt for the AI assistant
system_prompt = "You are a Kubernetes diagnostic system. Analyze issues using provided tools and output ONLY a brief technical diagnosis in plain text. Rules: 1) Call tools to gather data. 2) After getting data, output diagnosis as plain text - NO XML, NO function calls in output. 3) Format: 'Resource [name] - [problem]. Cause: [technical reason].' 4) Maximum 3 sentences. 5) If tool fails with error, diagnose based on error message. 6) Output must be plain text diagnosis, not tool calls."