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.
865 |
# File 'sig/types.rbs', line 865
def initialize: (id: String, call_type: ToolType, function: FunctionCall) -> void
|
Instance Attribute Details
#call_type ⇒ ToolType (readonly)
Returns the value of attribute call_type.
862 863 864 |
# File 'sig/types.rbs', line 862 def call_type @call_type end |
#function ⇒ FunctionCall (readonly)
Returns the value of attribute function.
863 864 865 |
# File 'sig/types.rbs', line 863 def function @function end |
#id ⇒ String (readonly)
Returns the value of attribute id.
861 862 863 |
# File 'sig/types.rbs', line 861 def id @id end |