ConversationManager constructor
- required AIProvider provider,
- int maxContextTokens = 4096,
- int maxToolIterations = 10,
- TokenTracker? tokenTracker,
- StorageProvider? storage,
Implementation
ConversationManager({
required this.provider,
this.maxContextTokens = 4096,
this.maxToolIterations = 10,
TokenTracker? tokenTracker,
this.storage,
}) : tokenTracker = tokenTracker ?? TokenTracker();