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

Module for representing the OpenAI schema InlineSkillParam.

Fields

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

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

  • :source - required - ExOpenAI.Components.InlineSkillSourceParam.t()
    Inline skill payload

  • :type - required - :inline
    Defines an inline skill for this request.
    Allowed values: "inline"
    Default: "inline"

Summary

Types

@type t() :: %ExOpenAI.Components.InlineSkillParam{
  description: String.t(),
  name: String.t(),
  source: ExOpenAI.Components.InlineSkillSourceParam.t(),
  type: :inline
}