Thread Registry: - Root thread initialization at boot - Thread chain tracking for message flow - register_thread() for external message UUIDs LLM Router: - Multi-backend support with failover strategy - Token bucket rate limiting per backend - Async completion API with retries Console Handler: - Message-driven REPL (not separate async loop) - ConsolePrompt/ConsoleInput payloads - Handler returns None to disconnect Boot System: - System primitives module - Boot message injected at startup - Initializes root thread context Documentation: - Updated v2.1 docs for new architecture - LLM router documentation - Gap analysis cross-check Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
12 lines
237 B
Text
12 lines
237 B
Text
# LLM API Keys
|
|
# Copy this file to .env and fill in your keys
|
|
# NEVER commit .env to git!
|
|
|
|
# xAI (Grok)
|
|
XAI_API_KEY=xai-your-key-here
|
|
|
|
# Anthropic (Claude)
|
|
ANTHROPIC_API_KEY=sk-ant-your-key-here
|
|
|
|
# OpenAI
|
|
OPENAI_API_KEY=sk-your-key-here
|