1#ifndef YAZE_CLI_HANDLERS_AGENT_SIMPLE_CHAT_COMMAND_H_
2#define YAZE_CLI_HANDLERS_AGENT_SIMPLE_CHAT_COMMAND_H_
12 std::string
GetName()
const {
return "simple-chat"; }
14 return "Simple text-based chat with the AI agent.";
17 return "simple-chat [--prompt <message>] [--file <path>] [--format "
23 return absl::OkStatus();
The Rom class is used to load, save, and modify Rom data. This is a generic SNES ROM container and do...
std::string GetDescription() const
absl::Status ValidateArgs(const resources::ArgumentParser &parser) override
Validate command arguments.
std::string GetUsage() const override
Get the command usage string.
std::string GetName() const
Get the command name.
absl::Status Execute(Rom *rom, const resources::ArgumentParser &parser, resources::OutputFormatter &formatter) override
Execute the command business logic.
Utility for parsing common CLI argument patterns.
Base class for CLI command handlers.