@nixxie-cms/ai-rag 1.0.0 → 2.0.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/package.json +3 -3
package/CHANGELOG.md ADDED
@@ -0,0 +1,26 @@
1
+ # @nixxie-cms/ai-rag
2
+
3
+ ## 2.0.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 0fe028d: feat: add `@nixxie-cms/ai-rag` — a custom, RAG-trained AI assistant
8
+
9
+ New package that auto-creates a `KnowledgeBase` source list, indexes it into embeddings,
10
+ and answers questions grounded in that content with citations and hallucination guarding.
11
+ Generation via Anthropic / OpenAI / Gemini / Llama (Ollama); embeddings via OpenAI /
12
+ Gemini / Llama. Pluggable vector store (SQL-backed default that runs on any database).
13
+ Surfaces: programmatic service (`context.services.aiRag`), HTTP chat route with SSE
14
+ streaming, GraphQL queries/mutations, and an Admin UI console. Highly configurable
15
+ (prompts, temperature, models, chunking, scheduled/incremental indexing, token limits,
16
+ grounding checks). Register with `ragPlugin()`.
17
+
18
+ `@nixxie-cms/core` gains the `NixxieAiRagService` type and `context.services.aiRag`.
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies [0fe028d]
23
+ - Updated dependencies [690e433]
24
+ - Updated dependencies [2c0d28c]
25
+ - Updated dependencies [450043a]
26
+ - @nixxie-cms/core@2.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nixxie-cms/ai-rag",
3
- "version": "1.0.0",
3
+ "version": "2.0.0",
4
4
  "license": "MIT",
5
5
  "main": "dist/nixxie-cms-ai-rag.cjs.js",
6
6
  "module": "dist/nixxie-cms-ai-rag.esm.js",
@@ -16,10 +16,10 @@
16
16
  "@babel/runtime": "^7.24.7"
17
17
  },
18
18
  "devDependencies": {
19
- "@nixxie-cms/core": "^1.1.0"
19
+ "@nixxie-cms/core": "^2.0.0"
20
20
  },
21
21
  "peerDependencies": {
22
- "@nixxie-cms/core": "^1.0.3"
22
+ "@nixxie-cms/core": "^2.0.0"
23
23
  },
24
24
  "optionalDependencies": {
25
25
  "@anthropic-ai/sdk": "^0.69.0",