Skip to content
This repository has been archived by the owner on Nov 9, 2023. It is now read-only.

Latest commit

 

History

History
22 lines (16 loc) · 697 Bytes

RunToolCallObject.md

File metadata and controls

22 lines (16 loc) · 697 Bytes

OpenapiClient::RunToolCallObject

Properties

Name Type Description Notes
id String The ID of the tool call. This ID must be referenced when you submit the tool outputs in using the Submit tool outputs to run endpoint.
type String The type of tool call the output is required for. For now, this is always `function`.
function RunToolCallObjectFunction

Example

require 'openapi_client'

instance = OpenapiClient::RunToolCallObject.new(
  id: null,
  type: null,
  function: null
)