Class: OmniAI::CLI::ChatHandler
- Inherits:
-
BaseHandler
- Object
- BaseHandler
- OmniAI::CLI::ChatHandler
- Defined in:
- lib/omniai/cli/chat_handler.rb
Overview
Used for CLI usage of ‘omnia chat’.
Instance Method Summary collapse
Methods inherited from BaseHandler
Constructor Details
This class inherits a constructor from OmniAI::CLI::BaseHandler
Instance Method Details
#handle!(argv:) ⇒ Object
8 9 10 11 12 13 14 15 16 |
# File 'lib/omniai/cli/chat_handler.rb', line 8 def handle!(argv:) parser.parse!(argv) if argv.empty? listen! else chat(prompt: argv.join(' ')) end end |