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:



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

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

Instance Attribute Details

#call_typeToolType (readonly)

Returns the value of attribute call_type.

Returns:



862
863
864
# File 'sig/types.rbs', line 862

def call_type
  @call_type
end

#functionFunctionCall (readonly)

Returns the value of attribute function.

Returns:



863
864
865
# File 'sig/types.rbs', line 863

def function
  @function
end

#idString (readonly)

Returns the value of attribute id.

Returns:

  • (String)


861
862
863
# File 'sig/types.rbs', line 861

def id
  @id
end