Class: OmniAgent::Eval::Run
- Inherits:
-
Object
- Object
- OmniAgent::Eval::Run
- Defined in:
- lib/omni_agent/eval/run.rb
Instance Attribute Summary collapse
-
#agent ⇒ Object
readonly
Returns the value of attribute agent.
-
#output ⇒ Object
readonly
Returns the value of attribute output.
-
#tool_calls ⇒ Object
readonly
Returns the value of attribute tool_calls.
Instance Method Summary collapse
-
#initialize(output:, tool_calls:, agent:) ⇒ Run
constructor
A new instance of Run.
Constructor Details
#initialize(output:, tool_calls:, agent:) ⇒ Run
Returns a new instance of Run.
6 7 8 9 10 |
# File 'lib/omni_agent/eval/run.rb', line 6 def initialize(output:, tool_calls:, agent:) @output = output @tool_calls = tool_calls @agent = agent end |
Instance Attribute Details
#agent ⇒ Object (readonly)
Returns the value of attribute agent.
4 5 6 |
# File 'lib/omni_agent/eval/run.rb', line 4 def agent @agent end |
#output ⇒ Object (readonly)
Returns the value of attribute output.
4 5 6 |
# File 'lib/omni_agent/eval/run.rb', line 4 def output @output end |
#tool_calls ⇒ Object (readonly)
Returns the value of attribute tool_calls.
4 5 6 |
# File 'lib/omni_agent/eval/run.rb', line 4 def tool_calls @tool_calls end |