feat: Enhance conversation testing with ROM loading and verbose output options

This commit is contained in:
scawful
2025-10-03 22:49:52 -04:00
parent 57c8434ee1
commit ad7c5f72b2
5 changed files with 105 additions and 15 deletions

View File

@@ -42,6 +42,9 @@ class ConversationalAgentService {
// Provide the service with a ROM context for tool execution.
void SetRomContext(Rom* rom);
// Clear the current conversation history, preserving ROM/tool context.
void ResetConversation();
private:
std::vector<ChatMessage> history_;
std::unique_ptr<AIService> ai_service_;