Skip to content

Latest commit

 

History

History
29 lines (17 loc) · 934 Bytes

ChatCompletionStreamResponseDelta.md

File metadata and controls

29 lines (17 loc) · 934 Bytes

ChatCompletionStreamResponseDelta

A chat completion delta generated by streamed model responses.

Properties

Name Type Description Notes
content String The contents of the chunk message. [optional]
functionCall ChatCompletionStreamResponseDeltaFunctionCall [optional]
toolCalls List<ChatCompletionMessageToolCallChunk> [optional]
role RoleEnum The role of the author of this message. [optional]
refusal String The refusal message generated by the model. [optional]

Enum: RoleEnum

Name Value
SYSTEM "system"
USER "user"
ASSISTANT "assistant"
TOOL "tool"