mirror of
https://github.com/LukeHagar/log10py.git
synced 2025-12-06 04:20:12 +00:00
6.9 KiB
6.9 KiB
ChatCompletionRequestAssistantMessage
Fields
| Field | Type | Required | Description |
|---|---|---|---|
role |
components.ChatCompletionRequestAssistantMessageRole | ✔️ | The role of the messages author, in this case assistant. |
content |
Optional[str] | ➖ | The contents of the assistant message. Required unless tool_calls or function_call is specified. |
name |
Optional[str] | ➖ | An optional name for the participant. Provides the model information to differentiate between participants of the same role. |
tool_calls |
List[components.ChatCompletionMessageToolCall] | ➖ | The tool calls generated by the model, such as function calls. |
function_call |
Optional[components.FunctionCall] | ➖ | : warning: ** DEPRECATED **: This will be removed in a future release, please migrate away from it as soon as possible. Deprecated and replaced by tool_calls. The name and arguments of a function that should be called, as generated by the model. |