@absolutejs/rag 0.0.18 → 0.0.19

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.
@@ -1025,8 +1025,17 @@ export declare const ragChat: (config: RAGChatPluginConfig) => Elysia<"", {
1025
1025
  headers: unknown;
1026
1026
  response: {
1027
1027
  200: AsyncGenerator<{
1028
- data: string;
1029
- event: string;
1028
+ readonly data: string;
1029
+ readonly event: "error";
1030
+ } | {
1031
+ readonly data: string;
1032
+ readonly event: "start";
1033
+ } | {
1034
+ readonly data: string;
1035
+ readonly event: "case";
1036
+ } | {
1037
+ readonly data: string;
1038
+ readonly event: "result";
1030
1039
  }, void, unknown>;
1031
1040
  };
1032
1041
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@absolutejs/rag",
3
- "version": "0.0.18",
3
+ "version": "0.0.19",
4
4
  "description": "Standalone RAG ingestion, sync, retrieval, evaluation, clients, and framework adapters extracted from AbsoluteJS",
5
5
  "license": "BSL-1.1",
6
6
  "type": "module",