View Source ExOpenAI.Components.FunctionTool (ex_openai.ex v1.8.0)

Schema representing a FunctionTool within the OpenAI API

Summary

Types

@type t() :: %ExOpenAI.Components.FunctionTool{
  description: String.t() | nil,
  name: String.t(),
  parameters: map(),
  strict: boolean(),
  type: :function
}