Skip to content

Latest commit

 

History

History
28 lines (16 loc) · 1.09 KB

ChatCompletionRequestMessage.md

File metadata and controls

28 lines (16 loc) · 1.09 KB

ChatCompletionRequestMessage

Properties

Name Type Description Notes
content String The contents of the function message.
role RoleEnum The role of the messages author, in this case `function`.
name String The name of the function to call.
refusal String The refusal message by the assistant. [optional]
audio ChatCompletionRequestAssistantMessageAudio [optional]
toolCalls List<ChatCompletionMessageToolCall> The tool calls generated by the model, such as function calls. [optional]
functionCall ChatCompletionRequestAssistantMessageFunctionCall [optional]
toolCallId String Tool call that this message is responding to.

Enum: RoleEnum

Name Value
FUNCTION "function"