Enhance chat command functionality with ROM context integration and improve TUI initialization

This commit is contained in:
scawful
2025-10-03 15:11:18 -04:00
parent 3715ae98eb
commit 720d55fc43
6 changed files with 69 additions and 46 deletions

View File

@@ -66,7 +66,7 @@ absl::Status Agent::Run(const std::vector<std::string>& arg_vec) {
return agent::HandleDungeonListSpritesCommand(subcommand_args);
}
if (subcommand == "chat") {
return agent::HandleChatCommand();
return agent::HandleChatCommand(rom_);
}
return absl::InvalidArgumentError(std::string(agent::kUsage));