Class: LiterLlm::ToolCall

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeToolCall

Returns a new instance of ToolCall.

Parameters:



106
# File 'sig/types.rbs', line 106

def initialize: (id: String, call_type: ToolType, function: FunctionCall) -> void

Instance Attribute Details

#call_typeToolType (readonly)

Returns the value of attribute call_type.

Returns:



103
104
105
# File 'sig/types.rbs', line 103

def call_type
  @call_type
end

#functionFunctionCall (readonly)

Returns the value of attribute function.

Returns:



104
105
106
# File 'sig/types.rbs', line 104

def function
  @function
end

#idString (readonly)

Returns the value of attribute id.

Returns:

  • (String)


102
103
104
# File 'sig/types.rbs', line 102

def id
  @id
end