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

Latest commit

 

History

History
24 lines (18 loc) · 665 Bytes

ChatCompletionMessageToolCallChunk.md

File metadata and controls

24 lines (18 loc) · 665 Bytes

OpenapiClient::ChatCompletionMessageToolCallChunk

Properties

Name Type Description Notes
index Integer
id String The ID of the tool call. [optional]
type String The type of the tool. Currently, only `function` is supported. [optional]
function ChatCompletionMessageToolCallChunkFunction [optional]

Example

require 'openapi_client'

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