View Source ExOpenAI.Components.InlineSkillSourceParam (ex_openai.ex v2.0.0-beta2)
Inline skill payload
Fields
:data- required -String.t()
Base64-encoded skill zip bundle.
Constraints: minLength: 1, maxLength: 70254592:media_type- required -:"application/zip"
The media type of the inline skill payload. Must beapplication/zip.
Allowed values:"application/zip"
Default:"application/zip":type- required -:base64
The type of the inline skill source. Must bebase64.
Allowed values:"base64"
Default:"base64"
Summary
Types
@type t() :: %ExOpenAI.Components.InlineSkillSourceParam{ data: String.t(), media_type: :"application/zip", type: :base64 }