From b9121c57705236b541c41bdf939db71af545b798 Mon Sep 17 00:00:00 2001 From: pranav-kural Date: Sun, 7 Jul 2024 19:23:10 -0400 Subject: [PATCH] updated references to QvikChat NPM package --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3ffde0d..b28d045 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ You can either install QvikChat as a package or use the QvikChat starter templat To install QvikChat as a package, run the following command: ```bash copy -npm install qvikchat # or pnpm add qvikchat +npm install @oconva/qvikchat # or pnpm add @oconva/qvikchat ``` Before you can deploy your chat endpoints, you need to setup Firebase Genkit, either by using the default configurations or by providing your own configurations, these may include additional Genkit plugins you may want to enable (e.g. to add support for a new language model). When starting out, we recommend using the default configurations. @@ -39,8 +39,8 @@ Before you can deploy your chat endpoints, you need to setup Firebase Genkit, ei Create a `index.ts` (or `index.js`) file and add the following code: ```typescript copy -import { runServer, setupGenkit } from "qvikchat/genkit"; -import { defineChatEndpoint } from "qvikchat/endpoints"; +import { runServer, setupGenkit } from "@oconva/qvikchat/genkit"; +import { defineChatEndpoint } from "@oconva/qvikchat/endpoints"; // Setup Genkit setupGenkit();