ChatCompletionAssistantMessageParam#

class nemo_microservices.types.shared_params.ChatCompletionAssistantMessageParam

Bases: TypedDict

role: Required[Literal['assistant']]

The role of the messages author, in this case assistant.

content: str

The contents of the assistant message.

function_call: FunctionCall

Deprecated and replaced by tool_calls.

name: str

An optional name for the participant.

tool_calls: Iterable[ChatCompletionMessageToolCallParam]

The tool calls generated by the model, such as function calls.