Debugging
# View agent logs
tail -f logs/agent.log
# Check errors
tail -f logs/errors.log
# Filter by time
grep "2025-01-15" logs/agent.log# Test LLM API
from agent_builder_framework import test_llm_connection
test_llm_connection('anthropic', api_key)
# Test platform API
from agent_builder_framework import test_platform_connection
test_platform_connection('twitter', credentials)# Check environment variables
python agent_[ID].py --check-config
# Validate API keys
python agent_[ID].py --validate-keys
# Test mode (no actual posts)
python agent_[ID].py --testGetting Help
Performance Optimization
LLM Cost Management
Caching Strategies
Scaling Strategies
Last updated

