Class: Omakase::Request
- Inherits:
-
Data
- Object
- Data
- Omakase::Request
- Defined in:
- lib/omakase/request.rb
Overview
One invocation of a generation method: all a strategy may depend on.
Instance Attribute Summary collapse
-
#agent ⇒ Object
readonly
Returns the value of attribute agent.
-
#generation ⇒ Object
readonly
Returns the value of attribute generation.
-
#inputs ⇒ Object
readonly
Returns the value of attribute inputs.
Instance Method Summary collapse
-
#attachments ⇒ Object
with:is reserved: files for the model to look at, passed through to RubyLLM'sask(with:)as attachments rather than rendered into the text. - #chat ⇒ Object
- #instructions ⇒ Object
-
#prompt ⇒ Object
A prompt written as a block is read at call time, on the agent — so one declaration serves an object however it happens to be configured.
- #schema ⇒ Object
- #task ⇒ Object
Instance Attribute Details
#agent ⇒ Object (readonly)
Returns the value of attribute agent
5 6 7 |
# File 'lib/omakase/request.rb', line 5 def agent @agent end |
#generation ⇒ Object (readonly)
Returns the value of attribute generation
5 6 7 |
# File 'lib/omakase/request.rb', line 5 def generation @generation end |
#inputs ⇒ Object (readonly)
Returns the value of attribute inputs
5 6 7 |
# File 'lib/omakase/request.rb', line 5 def inputs @inputs end |
Instance Method Details
#attachments ⇒ Object
with: is reserved: files for the model to look at, passed through to
RubyLLM's ask(with:) as attachments rather than rendered into the text.
14 |
# File 'lib/omakase/request.rb', line 14 def = inputs[:with] |
#chat ⇒ Object
6 |
# File 'lib/omakase/request.rb', line 6 def chat = agent.chat(**{model: generation.model}.compact) |
#instructions ⇒ Object
10 |
# File 'lib/omakase/request.rb', line 10 def instructions = [agent.class.instructions, agent.context].reject { |text| text.to_s.empty? }.join("\n\n") |
#prompt ⇒ Object
A prompt written as a block is read at call time, on the agent — so one declaration serves an object however it happens to be configured.
26 27 28 29 |
# File 'lib/omakase/request.rb', line 26 def prompt text = generation.prompt text.is_a?(Proc) ? agent.instance_exec(&text) : text end |
#schema ⇒ Object
8 |
# File 'lib/omakase/request.rb', line 8 def schema = generation.schema |
#task ⇒ Object
16 17 18 19 20 21 22 |
# File 'lib/omakase/request.rb', line 16 def task arguments = inputs.except(:with) return prompt if arguments.empty? lines = arguments.map { |name, value| "- #{name}: #{value.inspect}" } "#{prompt}\n\nInputs:\n#{lines.join("\n")}" end |