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

import typing_extensions


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

    tool_call_id: str
    """
    Tool call that this message is responding to.
    """
