View Source ExOpenAI.Components.CreateVectorStoreRequest (ex_openai.ex v1.7.0)

Schema representing a CreateVectorStoreRequest within the OpenAI API

Summary

Types

@type t() :: %ExOpenAI.Components.CreateVectorStoreRequest{
  chunking_strategy:
    (ExOpenAI.Components.StaticChunkingStrategyRequestParam.t()
     | ExOpenAI.Components.AutoChunkingStrategyRequestParam.t())
    | nil,
  expires_after: ExOpenAI.Components.VectorStoreExpirationAfter.t() | nil,
  file_ids: [String.t()] | nil,
  metadata: map() | nil,
  name: String.t() | nil
}