# This file was auto-generated by Fern from our API Definition. import typing import typing_extensions from .function_definition import FunctionDefinitionParams class ChatCompletionToolParams(typing_extensions.TypedDict): type: typing.Literal["function"] """ The type of the tool. Currently, only `function` is supported. """ function: FunctionDefinitionParams