Quick Start
Display with Agent Features
- Tool Calls
- Error Handling
- Reflection
Callback System
Register Callbacks
Display Context
Flow Display
Error Logs
Common Patterns
- Custom Logger
- UI Integration
- File Logger
API Reference
Best Practices
Use appropriate log levels
Use appropriate log levels
Use
error for failures, warning for issues, info for status, debug for development.Keep callbacks lightweight
Keep callbacks lightweight
Sync callbacks run in the main thread - avoid blocking operations.
Use async for I/O
Use async for I/O
Register async callbacks for network requests or file operations.

