Troubleshooting
Agent Issues
# Check logs
tail -f defi_sage_*.log
# Common causes:
# 1. Twitter API rate limit - wait 15 minutes
# 2. Invalid credentials - check .env file
# 3. Network issues - check internet connection
# 4. LLM provider issues - check provider status page# Solution: Refine personality prompt
# - Be more specific about tone and style
# - Add more examples of desired output
# - Specify length constraints
# - Include topic boundaries# Check MongoDB status
sudo systemctl status mongodb
# Or for Docker:
docker ps | grep mongo
# Test connection:
python -c "from pymongo import MongoClient; print(MongoClient('mongodb://localhost:27017/').server_info())"Token Launch Issues
Integration Issues
Last updated