@retrivora-ai/rag-engine 1.8.7 → 1.8.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -71,6 +71,7 @@ __export(index_exports, {
71
71
  useRagChat: () => useRagChat
72
72
  });
73
73
  module.exports = __toCommonJS(index_exports);
74
+ var import_index = require("./index.css");
74
75
 
75
76
  // src/components/ChatWidget.tsx
76
77
  var import_react12 = require("react");
package/dist/index.mjs CHANGED
@@ -30,6 +30,9 @@ var __objRest = (source, exclude) => {
30
30
  return target;
31
31
  };
32
32
 
33
+ // src/index.ts
34
+ import "./index.css";
35
+
33
36
  // src/components/ChatWidget.tsx
34
37
  import { useState as useState6 } from "react";
35
38
  import { MessageSquare, X as X3 } from "lucide-react";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@retrivora-ai/rag-engine",
3
- "version": "1.8.7",
3
+ "version": "1.8.9",
4
4
  "description": "Retrivora AI is a plug-and-play AI engine for RAG chat experiences — generic vector DB + LLM provider, embeddable or standalone.",
5
5
  "author": "Abhinav Alkuchi",
6
6
  "license": "MIT",
@@ -74,7 +74,7 @@
74
74
  "scripts": {
75
75
  "dev": "next dev",
76
76
  "build": "next build",
77
- "build:pkg": "tsup src/index.ts src/handlers/index.ts src/server.ts --format cjs,esm --dts --clean --no-splitting --tsconfig tsconfig.build.json --external react,react-dom,next,mongodb,pg,openai,@anthropic-ai/sdk,@pinecone-database/pinecone,axios,lucide-react,mammoth,pdf-parse,react-markdown,remark-gfm,next-themes,langchain,@langchain/core,@langchain/openai,llamaindex && npx @tailwindcss/cli -i src/tailwind.css -o dist/index.css",
77
+ "build:pkg": "tsup src/index.ts src/handlers/index.ts src/server.ts --format cjs,esm --dts --clean --no-splitting --tsconfig tsconfig.build.json --external react,react-dom,next,mongodb,pg,openai,@anthropic-ai/sdk,@pinecone-database/pinecone,axios,lucide-react,mammoth,pdf-parse,react-markdown,remark-gfm,next-themes,langchain,@langchain/core,@langchain/openai,llamaindex,./index.css && npx @tailwindcss/cli -i src/tailwind.css -o dist/index.css",
78
78
  "start": "next start",
79
79
  "lint": "eslint",
80
80
  "prepublishOnly": "npm run build:pkg"
package/src/index.ts CHANGED
@@ -3,6 +3,8 @@
3
3
  * This entry point is CLIENT-SAFE and can be imported in React Client Components.
4
4
  */
5
5
 
6
+ import './index.css';
7
+
6
8
  // ── React Components ─────────────────────────────────────────
7
9
  export { ChatWidget } from './components/ChatWidget';
8
10
  export { ChatWindow } from './components/ChatWindow';