clearHistory method

void clearHistory()

Implementation

void clearHistory() {
  _logger.info('${lightYellow.wrap('🔄 Clearing conversation history...')}');
  _conversationHistory.clear();
  _totalIterations = 0;
  _logger.detail('${lightGreen.wrap('✓')} History cleared');
}