Module: Ace::LLM::CLI

Defined in:
lib/ace/llm/cli.rb,
lib/ace/llm/cli/commands/query.rb

Overview

CLI namespace for ace-llm command loading.

ace-llm uses a single-command ace-support-cli entrypoint that calls CLI::Commands::Query directly from the executable.

Defined Under Namespace

Modules: Commands

Class Method Summary collapse

Class Method Details

.start(args) ⇒ Object

Entry point for CLI invocation (used by tests via cli_helpers)

Parameters:

  • args (Array<String>)

    Command-line arguments



19
20
21
# File 'lib/ace/llm/cli.rb', line 19

def self.start(args)
  Ace::Support::Cli::Runner.new(Commands::Query).call(args: args)
end