- Complete daemon with FastAPI - Ollama client for local AI (gemma3:4b) - Telegram webhook handler - Hermes bridge (thin profile) - Systemd service definition - All unit tests passing
24 lines
544 B
YAML
24 lines
544 B
YAML
# Archon Kion Configuration
|
|
|
|
ollama:
|
|
host: localhost
|
|
port: 11434
|
|
model: gemma3:4b
|
|
|
|
telegram:
|
|
# Get token from @Rockachopa or set TELEGRAM_BOT_TOKEN env var
|
|
token: ${TELEGRAM_BOT_TOKEN}
|
|
webhook_url: ${TELEGRAM_WEBHOOK_URL:-http://localhost:8080/webhook/telegram}
|
|
|
|
hermes:
|
|
profile_path: ./hermes-profile/profile.yaml
|
|
|
|
logging:
|
|
level: INFO
|
|
format: "%(asctime)s - %(name)s - %(levelname)s - %(message)s"
|
|
|
|
# Memory settings
|
|
memory:
|
|
max_messages: 20 # Keep last 10 exchanges
|
|
persist: false # Don't persist to disk (privacy)
|