# This file was auto-generated by Fern from our API Definition.

import typing

import typing_extensions
from .chat_completion_message_tool_call import ChatCompletionMessageToolCallParams


class ChatCompletionRequestAssistantMessageParams(typing_extensions.TypedDict):
    content: typing_extensions.NotRequired[str]
    """
    The contents of the assistant message
    """

    tool_calls: typing_extensions.NotRequired[typing.Sequence[ChatCompletionMessageToolCallParams]]
    """
    The tool calls generated by the model.
    """
