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

@@ -157,6 +157,10 @@ void ConversationalAgentService::SetRomContext(Rom* rom) {
}
}
void ConversationalAgentService::ResetConversation() {
history_.clear();
}
absl::StatusOr<ChatMessage> ConversationalAgentService::SendMessage(
const std::string& message) {
if (message.empty() && history_.empty()) {