@retrivora-ai/rag-engine 1.3.5 → 1.3.6

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.
@@ -1705,6 +1705,8 @@ When presenting structured data, statistics, or comparisons, decide if it is bes
1705
1705
  3. dataKeys MUST exactly match the property names in the data objects.
1706
1706
  4. data objects MUST be FLAT (no nested objects or arrays).
1707
1707
  5. DO NOT output naked JSON; it MUST be wrapped in \`\`\`chart ... \`\`\`.
1708
+ 6. The UI HAS a built-in charting engine. NEVER provide Python, Plotly, or Matplotlib code.
1709
+ 7. NEVER apologize or claim you cannot render charts. Simply use the \`\`\`chart\`\`\` block.
1708
1710
  \`\`\`chart
1709
1711
  {
1710
1712
  "type": "bar" | "line" | "pie",
@@ -2268,6 +2270,8 @@ When presenting structured data, statistics, or comparisons, decide if it is bes
2268
2270
  3. dataKeys MUST exactly match the property names in the data objects.
2269
2271
  4. data objects MUST be FLAT (no nested objects or arrays).
2270
2272
  5. DO NOT output naked JSON; it MUST be wrapped in \`\`\`chart ... \`\`\`.
2273
+ 6. The UI HAS a built-in charting engine. NEVER provide Python, Plotly, or Matplotlib code.
2274
+ 7. NEVER apologize or claim you cannot render charts. Simply use the \`\`\`chart\`\`\` block.
2271
2275
  \`\`\`chart
2272
2276
  {
2273
2277
  "type": "bar" | "line" | "pie",
@@ -3274,6 +3274,8 @@ When presenting structured data, statistics, or comparisons, decide if it is bes
3274
3274
  3. dataKeys MUST exactly match the property names in the data objects.
3275
3275
  4. data objects MUST be FLAT (no nested objects or arrays).
3276
3276
  5. DO NOT output naked JSON; it MUST be wrapped in \`\`\`chart ... \`\`\`.
3277
+ 6. The UI HAS a built-in charting engine. NEVER provide Python, Plotly, or Matplotlib code.
3278
+ 7. NEVER apologize or claim you cannot render charts. Simply use the \`\`\`chart\`\`\` block.
3277
3279
  \`\`\`chart
3278
3280
  {
3279
3281
  "type": "bar" | "line" | "pie",
@@ -3831,6 +3833,8 @@ When presenting structured data, statistics, or comparisons, decide if it is bes
3831
3833
  3. dataKeys MUST exactly match the property names in the data objects.
3832
3834
  4. data objects MUST be FLAT (no nested objects or arrays).
3833
3835
  5. DO NOT output naked JSON; it MUST be wrapped in \`\`\`chart ... \`\`\`.
3836
+ 6. The UI HAS a built-in charting engine. NEVER provide Python, Plotly, or Matplotlib code.
3837
+ 7. NEVER apologize or claim you cannot render charts. Simply use the \`\`\`chart\`\`\` block.
3834
3838
  \`\`\`chart
3835
3839
  {
3836
3840
  "type": "bar" | "line" | "pie",
@@ -9,7 +9,7 @@ import {
9
9
  sseFrame,
10
10
  sseMetaFrame,
11
11
  sseTextFrame
12
- } from "../chunk-FQ7OYZLF.mjs";
12
+ } from "../chunk-NVXFI7HX.mjs";
13
13
  import "../chunk-YLTMFW4M.mjs";
14
14
  import "../chunk-X4TOT24V.mjs";
15
15
  export {
package/dist/server.js CHANGED
@@ -3359,6 +3359,8 @@ When presenting structured data, statistics, or comparisons, decide if it is bes
3359
3359
  3. dataKeys MUST exactly match the property names in the data objects.
3360
3360
  4. data objects MUST be FLAT (no nested objects or arrays).
3361
3361
  5. DO NOT output naked JSON; it MUST be wrapped in \`\`\`chart ... \`\`\`.
3362
+ 6. The UI HAS a built-in charting engine. NEVER provide Python, Plotly, or Matplotlib code.
3363
+ 7. NEVER apologize or claim you cannot render charts. Simply use the \`\`\`chart\`\`\` block.
3362
3364
  \`\`\`chart
3363
3365
  {
3364
3366
  "type": "bar" | "line" | "pie",
@@ -3922,6 +3924,8 @@ When presenting structured data, statistics, or comparisons, decide if it is bes
3922
3924
  3. dataKeys MUST exactly match the property names in the data objects.
3923
3925
  4. data objects MUST be FLAT (no nested objects or arrays).
3924
3926
  5. DO NOT output naked JSON; it MUST be wrapped in \`\`\`chart ... \`\`\`.
3927
+ 6. The UI HAS a built-in charting engine. NEVER provide Python, Plotly, or Matplotlib code.
3928
+ 7. NEVER apologize or claim you cannot render charts. Simply use the \`\`\`chart\`\`\` block.
3925
3929
  \`\`\`chart
3926
3930
  {
3927
3931
  "type": "bar" | "line" | "pie",
package/dist/server.mjs CHANGED
@@ -39,7 +39,7 @@ import {
39
39
  sseFrame,
40
40
  sseMetaFrame,
41
41
  sseTextFrame
42
- } from "./chunk-FQ7OYZLF.mjs";
42
+ } from "./chunk-NVXFI7HX.mjs";
43
43
  import "./chunk-YLTMFW4M.mjs";
44
44
  import {
45
45
  PineconeProvider
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@retrivora-ai/rag-engine",
3
- "version": "1.3.5",
3
+ "version": "1.3.6",
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",
@@ -59,6 +59,8 @@ export class LangChainAgent {
59
59
  3. dataKeys MUST exactly match the property names in the data objects.
60
60
  4. data objects MUST be FLAT (no nested objects or arrays).
61
61
  5. DO NOT output naked JSON; it MUST be wrapped in \`\`\`chart ... \`\`\`.
62
+ 6. The UI HAS a built-in charting engine. NEVER provide Python, Plotly, or Matplotlib code.
63
+ 7. NEVER apologize or claim you cannot render charts. Simply use the \`\`\`chart\`\`\` block.
62
64
  \`\`\`chart
63
65
  {
64
66
  "type": "bar" | "line" | "pie",
@@ -109,6 +109,8 @@ export class Pipeline {
109
109
  3. dataKeys MUST exactly match the property names in the data objects.
110
110
  4. data objects MUST be FLAT (no nested objects or arrays).
111
111
  5. DO NOT output naked JSON; it MUST be wrapped in \`\`\`chart ... \`\`\`.
112
+ 6. The UI HAS a built-in charting engine. NEVER provide Python, Plotly, or Matplotlib code.
113
+ 7. NEVER apologize or claim you cannot render charts. Simply use the \`\`\`chart\`\`\` block.
112
114
  \`\`\`chart
113
115
  {
114
116
  "type": "bar" | "line" | "pie",