This page provides an overview of APIs related to vector storage and retrieval.

View Vector is a storage and retrieval platform for vector embeddings, semantic cells, semantic chunks, and relevant metadata linking to source documents. Within the processing pipeline, embeddings are generated for each semantic chunk and persisted for later retrieval within View Vector. APIs are provided for search (retrieval), and the underlying vector stores are defined by the configured vector repository objects mentioned in the configuration section.

JavaScript SDK Setup

Install SDK from npm

npm install view-sdk

Initialize Configuration Sdk

import { ViewVectorProxySdk } from "view-sdk";

const vector = new ViewVectorProxySdk(
  "00000000-0000-0000-0000-000000000000", //tenant Id
  "default", //access token
  "http://localhost:8000/" //endpoint
  )