main
 1# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
 2
 3from typing_extensions import Literal
 4
 5from ..._models import BaseModel
 6from ..shared.function_definition import FunctionDefinition
 7
 8__all__ = ["FunctionTool"]
 9
10
11class FunctionTool(BaseModel):
12    function: FunctionDefinition
13
14    type: Literal["function"]
15    """The type of tool being defined: `function`"""