Skip to main content

Interface: UpsertResult

Defined in: packages/agentos/src/rag/IVectorStore.ts:186

The result of a vector store upsert operation.

UpsertResult

Properties

errors?

optional errors: object[]

Defined in: packages/agentos/src/rag/IVectorStore.ts:190

Detailed information about any failures.

details?

optional details: any

id

id: string

message

message: string


failedCount?

optional failedCount: 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?

optional upsertedIds: string[]

Defined in: packages/agentos/src/rag/IVectorStore.ts:188

Optional array of IDs of the upserted documents.