Interface: UpsertResult
Defined in: packages/agentos/src/rag/IVectorStore.ts:186
The result of a vector store upsert operation.
UpsertResult
Properties
errors?
optionalerrors:object[]
Defined in: packages/agentos/src/rag/IVectorStore.ts:190
Detailed information about any failures.
details?
optionaldetails:any
id
id:
string
message
message:
string
failedCount?
optionalfailedCount:number
Defined in: packages/agentos/src/rag/IVectorStore.ts:189
The number of documents that failed to upsert.
upsertedCount
upsertedCount:
number
Defined in: packages/agentos/src/rag/IVectorStore.ts:187
The number of documents successfully upserted.
upsertedIds?
optionalupsertedIds:string[]
Defined in: packages/agentos/src/rag/IVectorStore.ts:188
Optional array of IDs of the upserted documents.