JavaScript/TypeScript client
The TypeScript client supports code that is written in TypeScript or JavaScript. It allows you to easily interact with the Query Agent API from your JavaScript or TypeScript applications.
It relies on the Weaviate Client package, and handles authentication and connection to your Weaviate instance from there.
Installation
Section titled “Installation”The Query Agent TypeScript client is distributed as the weaviate-agents package on npm, and depends on the weaviate-client package, which it declares as a peer dependency. You should install both packages together:
npm install weaviate-client weaviate-agentsOr with yarn / pnpm:
yarn add weaviate-client weaviate-agentspnpm add weaviate-client weaviate-agentsImports
Section titled “Imports”Import the agent class directly from the weaviate-agents package, alongside your usual weaviate-client imports:
import weaviate from "weaviate-client";
import { QueryAgent } from "weaviate-agents";Troubleshooting: Force npm to install the latest version
Section titled “Troubleshooting: Force npm to install the latest version”For existing installations, npm install may not upgrade weaviate-agents to the latest version. If this occurs, explicitly upgrade the package:
npm install weaviate-agents@latestQuestions and feedback
Section titled “Questions and feedback”Have a question or feedback? Here's how to reach us.