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

import typing

import typing_extensions
from .chat_completion_named_tool_choice_function import ChatCompletionNamedToolChoiceFunctionParams


class ChatCompletionNamedToolChoiceParams(typing_extensions.TypedDict):
    type: typing.Literal["function"]
    """
    The type of the tool. Currently, only `function` is supported.
    """

    function: ChatCompletionNamedToolChoiceFunctionParams
