Skip to content

Latest commit

 

History

History
28 lines (16 loc) · 846 Bytes

ChatCompletionStreamResponseDelta.md

File metadata and controls

28 lines (16 loc) · 846 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]

Enum: RoleEnum

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