View Source ExOpenAI.Components.CreateVectorStoreFileRequest (ex_openai.ex v2.0.0-beta)
Module for representing the OpenAI schema CreateVectorStoreFileRequest.
Fields
:attributes- optional -any():chunking_strategy- optional -any():file_id- required -String.t()
A File ID that the vector store should use. Useful for tools likefile_searchthat can access files. For multi-file ingestion, we recommendfile_batchesto minimize per-vector-store write requests.
Summary
Types
@type t() :: %ExOpenAI.Components.CreateVectorStoreFileRequest{ attributes: ExOpenAI.Components.VectorStoreFileAttributes.t() | nil, chunking_strategy: ExOpenAI.Components.ChunkingStrategyRequestParam.t() | nil, file_id: String.t() }