LangChain Reference home pageLangChain ReferenceLangChain Reference
  • GitHub
  • Main Docs
Deep Agents
LangChain
LangGraph
Integrations
LangSmith
  • Overview
    • Overview
    • Caches
    • Callbacks
    • Documents
    • Document loaders
    • Embeddings
    • Exceptions
    • Language models
    • Serialization
    • Output parsers
    • Prompts
    • Rate limiters
    • Retrievers
    • Runnables
    • Utilities
    • Vector stores
    MCP Adapters
    Standard Tests
    Text Splitters
    ⌘I

    LangChain Assistant

    Ask a question to get started

    Enter to send•Shift+Enter new line

    Menu

    OverviewCachesCallbacksDocumentsDocument loadersEmbeddingsExceptionsLanguage modelsSerializationOutput parsersPromptsRate limitersRetrieversRunnablesUtilitiesVector stores
    MCP Adapters
    Standard Tests
    Text Splitters
    Language
    Theme
    Pythonlangchain-coreutilsfunction_callingconvert_to_openai_function
    Function●Since v0.1

    convert_to_openai_function

    Copy
    convert_to_openai_function(
      function: Mapping[str, Any] | type | Callable | BaseTool,
      *,
      
    View source on GitHub
    strict
    :
    bool
    |
    None
    =
    None
    )
    ->
    dict
    [
    str
    ,
    Any
    ]

    Parameters

    NameTypeDescription
    function*Mapping[str, Any] | type | Callable | BaseTool

    A dictionary, Pydantic BaseModel class, TypedDict class, a LangChain Tool object, or a Python function.

    If a dictionary is passed in, it is assumed to already be a valid OpenAI function, a JSON schema with top-level title key specified, an Anthropic format tool, or an Amazon Bedrock Converse format tool.

    strictbool | None
    Default:None

    Convert a raw function/class to an OpenAI function.

    description and parameters keys are now optional. Only name is required and guaranteed to be part of the output.

    If True, model output is guaranteed to exactly match the JSON Schema provided in the function definition.

    If None, strict argument will not be included in function definition.