Interface: UpsertOptions
Defined in: packages/agentos/src/rag/IVectorStore.ts:171
Options for a vector store upsert (insert or update) operation.
UpsertOptions
Properties
batchSize?
optionalbatchSize:number
Defined in: packages/agentos/src/rag/IVectorStore.ts:172
Preferred batch size for upserting multiple documents, if the provider supports batching.
customParams?
optionalcustomParams:Record<string,any>
Defined in: packages/agentos/src/rag/IVectorStore.ts:174
Provider-specific parameters for the upsert operation.
overwrite?
optionaloverwrite:boolean
Defined in: packages/agentos/src/rag/IVectorStore.ts:173
Whether to overwrite existing documents with the same ID.