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

import typing

import typing_extensions
from .function_call import FunctionCallParams


class ChatCompletionMessageToolCallParams(typing_extensions.TypedDict):
    id: str
    """
    The ID of the tool call.
    """

    type: typing.Literal["function"]
    """
    The type of the tool call, currently only `function`.
    """

    function: FunctionCallParams
