Class: LiterLlm::ToolCall
- Inherits:
-
Object
- Object
- LiterLlm::ToolCall
- Defined in:
- sig/types.rbs
Instance Attribute Summary collapse
-
#call_type ⇒ ToolType
readonly
Returns the value of attribute call_type.
-
#function ⇒ FunctionCall
readonly
Returns the value of attribute function.
-
#id ⇒ String
readonly
Returns the value of attribute id.
Instance Method Summary collapse
-
#initialize ⇒ ToolCall
constructor
A new instance of ToolCall.
Constructor Details
#initialize ⇒ ToolCall
Returns a new instance of ToolCall.
106 |
# File 'sig/types.rbs', line 106
def initialize: (id: String, call_type: ToolType, function: FunctionCall) -> void
|
Instance Attribute Details
#call_type ⇒ ToolType (readonly)
Returns the value of attribute call_type.
103 104 105 |
# File 'sig/types.rbs', line 103 def call_type @call_type end |
#function ⇒ FunctionCall (readonly)
Returns the value of attribute function.
104 105 106 |
# File 'sig/types.rbs', line 104 def function @function end |
#id ⇒ String (readonly)
Returns the value of attribute id.
102 103 104 |
# File 'sig/types.rbs', line 102 def id @id end |