View Source ExOpenAI.Components.LocalSkillParam (ex_openai.ex v2.0.0-beta2)

Module for representing the OpenAI schema LocalSkillParam.

Fields

  • :description - required - String.t()
    The description of the skill.

  • :name - required - String.t()
    The name of the skill.

  • :path - required - String.t()
    The path to the directory containing the skill.

Summary

Types

@type t() :: %ExOpenAI.Components.LocalSkillParam{
  description: String.t(),
  name: String.t(),
  path: String.t()
}