Troubleshooting¶
Quick solutions to common issues
Resolve problems quickly with 400+ modules and 237 enterprise features
Enterprise Support
Part of 237 enterprise modules, which include debugging tools. See Enterprise Documentation.
1. Installation Issues¶
Problem: ModuleNotFoundError: No module named 'agenticaiframework'¶
Solution:
| Bash | |
|---|---|
Virtual Environment
Always use a virtual environment:
2. API Key Errors¶
Problem: Invalid API key or Authentication failed¶
Solution:
| Bash | |
|---|---|
Or in Python:
3. Agent Not Found¶
Problem: ValueError: Agent 'xyz' not found¶
Solution:
| Python | |
|---|---|
4. Tool Not Found¶
Problem: ValueError: Tool 'abc' not found¶
Solution:
5. LLM Provider Errors¶
Problem: Provider not supported¶
Solution:
| Python | |
|---|---|
6. Memory Issues¶
Problem: Data not persisting¶
Solution:
| Python | |
|---|---|
7. Process Execution Errors¶
Problem: Process 'xyz' not found¶
Solution:
| Python | |
|---|---|
8. Performance Issues¶
Problem: Slow agent responses¶
Solution:
- Optimize prompts - Reduce token usage
- Enable caching - Cache repeated LLM calls
- Use async - Process multiple tasks concurrently
| Python | |
|---|---|
9. Memory Leaks¶
Problem: Increasing memory usage over time¶
Solution:
| Python | |
|---|---|
10. Deployment Problems¶
Problem: Application works locally but fails in production¶
Checklist:
- All environment variables are set correctly
- All dependencies are installed (
pip freeze > requirements.txt) - Network access for external APIs is available
- File paths use relative paths or environment variables
- Memory and CPU resources are sufficient
11. Debugging Tips¶
Enable Debug Logging¶
| Python | |
|---|---|
Use Monitoring System¶
| Python | |
|---|---|
Run Tests¶
| Bash | |
|---|---|
12. Getting Help¶
Community Resources¶
- Documentation: isathish.github.io/agenticaiframework
- GitHub Issues: Report bugs
- Discussions: Ask questions