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) · 849 Bytes

ChatCompletionRequestAssistantMessage.md

File metadata and controls

24 lines (18 loc) · 849 Bytes

OpenapiClient::ChatCompletionRequestAssistantMessage

Properties

Name Type Description Notes
content String The contents of the assistant message.
role String The role of the messages author, in this case `assistant`.
tool_calls Array<ChatCompletionMessageToolCall> The tool calls generated by the model, such as function calls. [optional]
function_call ChatCompletionRequestAssistantMessageFunctionCall [optional]

Example

require 'openapi_client'

instance = OpenapiClient::ChatCompletionRequestAssistantMessage.new(
  content: null,
  role: null,
  tool_calls: null,
  function_call: null
)