nemo_microservices.types.shared.chat_completion_assistant_message_param#
Module Contents#
Classes#
API#
- class nemo_microservices.types.shared.chat_completion_assistant_message_param.ChatCompletionAssistantMessageParam(/, **data: Any)#
Bases:
nemo_microservices._models.BaseModel- content: str | None#
None
The contents of the assistant message.
- function_call: nemo_microservices.types.shared.function_call.FunctionCall | None#
None
Deprecated and replaced by
tool_calls.
- name: str | None#
None
An optional name for the participant.
- role: typing_extensions.Literal[assistant]#
None
The role of the messages author, in this case
assistant.
- tool_calls: List[nemo_microservices.types.shared.chat_completion_message_tool_call_param.ChatCompletionMessageToolCallParam] | None#
None
The tool calls generated by the model, such as function calls.