LLMFunctionCallResult

@Serializable
data class LLMFunctionCallResult(val functionName: String, val toolCallID: String, val arguments: JsonElement, val result: JsonElement)

Constructors

Link copied to clipboard
constructor(functionName: String, toolCallID: String, arguments: JsonElement, result: JsonElement)

Properties

Link copied to clipboard
val arguments: JsonElement
Link copied to clipboard
@SerialName(value = "function_name")
val functionName: String
Link copied to clipboard
val result: JsonElement
Link copied to clipboard
@SerialName(value = "tool_call_id")
val toolCallID: String