Skip to main content

getVector

codebolt.vectordb.getVector(key: string): Promise<GetVectorResponse>
Retrieves a vector from the vector database based on the provided key.

Parameters

NameTypeDescription
keystringThe key of the vector to retrieve.

Returns:

 Promise<GetVectorResponse>
A promise that resolves with the retrieved vector.

Example


const getResponse = await codebolt.vectordb.getVector("123");
console.log("Get Vector Response:", getResponse);