Class: LLM::Shell::Command::SystemPrompt
- Inherits:
-
LLM::Shell::Command
- Object
- LLM::Shell::Command
- LLM::Shell::Command::SystemPrompt
- Defined in:
- lib/llm/shell/commands/system_prompt.rb
Instance Method Summary collapse
-
#call ⇒ void
Emits the system prompt to standard output.
Methods inherited from LLM::Shell::Command
builtin?, description, enabled?, inherited, #initialize, name
Constructor Details
This class inherits a constructor from LLM::Shell::Command
Instance Method Details
#call ⇒ void
This method returns an undefined value.
Emits the system prompt to standard output
11 12 13 14 15 |
# File 'lib/llm/shell/commands/system_prompt.rb', line 11 def call pager do |io| io.write render(bot.[0]) end end |