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

import typing_extensions
from ..types.role import Role


class ChatCompletionResponseMessageParams(typing_extensions.TypedDict):
    content: str
    """
    The contents of the message.
    """

    role: Role
    """
    The role of the author of this message.
    """
