@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.
- package/dist/index.js +14 -14
- package/dist/index.js.map +3 -3
- package/dist/src/chat/chat.d.ts +11 -2
- package/package.json +1 -1
package/dist/src/chat/chat.d.ts
CHANGED
|
@@ -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:
|
|
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