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

Module for representing the OpenAI schema ContainerReferenceParam.

Fields

  • :container_id - required - String.t()
    The ID of the referenced container.

  • :type - required - :container_reference
    References a container created with the /v1/containers endpoint
    Allowed values: "container_reference"
    Default: "container_reference"

Summary

Types

@type t() :: %ExOpenAI.Components.ContainerReferenceParam{
  container_id: String.t(),
  type: :container_reference
}