Class: Pikuri::Agent::Event::ToolCall
- Inherits:
-
Data
- Object
- Data
- Pikuri::Agent::Event::ToolCall
- Defined in:
- lib/pikuri/agent/event.rb
Overview
A tool invocation the LLM has requested but not yet observed. Arguments are the raw hash ruby_llm parsed from the model’s tool_calls JSON — no validation has run yet. Emitted by Pikuri::Agent‘s before_tool_call wiring.
Instance Attribute Summary collapse
-
#arguments ⇒ Object
readonly
Returns the value of attribute arguments.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Attribute Details
#arguments ⇒ Object (readonly)
Returns the value of attribute arguments
107 108 109 |
# File 'lib/pikuri/agent/event.rb', line 107 def arguments @arguments end |
#name ⇒ Object (readonly)
Returns the value of attribute name
107 108 109 |
# File 'lib/pikuri/agent/event.rb', line 107 def name @name end |