Files
archon-kion/config/archon-kion.yaml
Ezra 604d7f6c70 Initial Archon Kion implementation
- 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
2026-04-02 19:57:45 +00:00

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)