@mxmweb/rtext 1.6.16 → 1.6.17
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/index.js +3366 -3362
- package/mockrecalldata.d.ts +36 -2
- package/mockserverdata.d.ts +14 -40
- package/package.json +1 -1
- package/stats.html +1 -1
package/mockrecalldata.d.ts
CHANGED
|
@@ -12,7 +12,7 @@ export declare const mockServerData: {
|
|
|
12
12
|
filePath: string;
|
|
13
13
|
configId: number;
|
|
14
14
|
kbId: null;
|
|
15
|
-
queryReplyPairList: {
|
|
15
|
+
queryReplyPairList: ({
|
|
16
16
|
query: {
|
|
17
17
|
id: string;
|
|
18
18
|
gmtCreate: number;
|
|
@@ -69,8 +69,42 @@ export declare const mockServerData: {
|
|
|
69
69
|
}[];
|
|
70
70
|
enableCot: number;
|
|
71
71
|
tokens: number;
|
|
72
|
+
faqReference?: undefined;
|
|
72
73
|
};
|
|
73
|
-
}
|
|
74
|
+
} | {
|
|
75
|
+
query: {
|
|
76
|
+
id: number;
|
|
77
|
+
gmtCreate: string;
|
|
78
|
+
content: string;
|
|
79
|
+
type: string;
|
|
80
|
+
queryId: string;
|
|
81
|
+
audioUrl: string;
|
|
82
|
+
filePaths: null;
|
|
83
|
+
currentFiles: null;
|
|
84
|
+
};
|
|
85
|
+
reply: {
|
|
86
|
+
id: number;
|
|
87
|
+
gmtCreate: string;
|
|
88
|
+
content: string;
|
|
89
|
+
type: string;
|
|
90
|
+
reference: null;
|
|
91
|
+
webReference: null;
|
|
92
|
+
faqReference: string;
|
|
93
|
+
queryId: string;
|
|
94
|
+
feedbackResult: null;
|
|
95
|
+
feedbackId: null;
|
|
96
|
+
parsedFilePaths: null;
|
|
97
|
+
recommendQuestion: string;
|
|
98
|
+
llmType: number;
|
|
99
|
+
resultType: number;
|
|
100
|
+
respTime: number;
|
|
101
|
+
tokens: number;
|
|
102
|
+
knowledgeBases?: undefined;
|
|
103
|
+
databaseReference?: undefined;
|
|
104
|
+
chain?: undefined;
|
|
105
|
+
enableCot?: undefined;
|
|
106
|
+
};
|
|
107
|
+
})[];
|
|
74
108
|
searchConfigDTO: {
|
|
75
109
|
id: number;
|
|
76
110
|
status: number;
|
package/mockserverdata.d.ts
CHANGED
|
@@ -72,11 +72,12 @@ export declare const mockServerData: {
|
|
|
72
72
|
}[];
|
|
73
73
|
enableCot: number;
|
|
74
74
|
tokens: number;
|
|
75
|
+
faqReference?: undefined;
|
|
75
76
|
};
|
|
76
77
|
} | {
|
|
77
78
|
query: {
|
|
78
|
-
id:
|
|
79
|
-
gmtCreate:
|
|
79
|
+
id: number;
|
|
80
|
+
gmtCreate: string;
|
|
80
81
|
content: string;
|
|
81
82
|
type: string;
|
|
82
83
|
queryId: string;
|
|
@@ -85,54 +86,27 @@ export declare const mockServerData: {
|
|
|
85
86
|
currentFiles: null;
|
|
86
87
|
};
|
|
87
88
|
reply: {
|
|
88
|
-
id:
|
|
89
|
-
gmtCreate:
|
|
89
|
+
id: number;
|
|
90
|
+
gmtCreate: string;
|
|
90
91
|
content: string;
|
|
91
92
|
type: string;
|
|
92
|
-
reference:
|
|
93
|
-
webReference:
|
|
94
|
-
|
|
93
|
+
reference: null;
|
|
94
|
+
webReference: null;
|
|
95
|
+
faqReference: string;
|
|
95
96
|
queryId: string;
|
|
96
97
|
feedbackResult: null;
|
|
97
98
|
feedbackId: null;
|
|
98
99
|
parsedFilePaths: null;
|
|
99
|
-
|
|
100
|
-
recommendQuestion: null;
|
|
100
|
+
recommendQuestion: string;
|
|
101
101
|
llmType: number;
|
|
102
102
|
resultType: number;
|
|
103
103
|
respTime: number;
|
|
104
|
-
databaseReference: null;
|
|
105
|
-
chain: {
|
|
106
|
-
sessionId: null;
|
|
107
|
-
queryId: null;
|
|
108
|
-
lastDate: null;
|
|
109
|
-
status: number;
|
|
110
|
-
reply: {
|
|
111
|
-
content: string;
|
|
112
|
-
type: string;
|
|
113
|
-
errorMsg: null;
|
|
114
|
-
errorCode: null;
|
|
115
|
-
};
|
|
116
|
-
reference: null;
|
|
117
|
-
webReference: null;
|
|
118
|
-
databaseReference: null;
|
|
119
|
-
knowledgeBases: null;
|
|
120
|
-
docsTree: null;
|
|
121
|
-
resultType: null;
|
|
122
|
-
filePaths: null;
|
|
123
|
-
respTime: null;
|
|
124
|
-
chainRespTime: null;
|
|
125
|
-
enableCot: null;
|
|
126
|
-
tokens: number;
|
|
127
|
-
promptContent: null;
|
|
128
|
-
llmType: number;
|
|
129
|
-
businessType: string;
|
|
130
|
-
nodeStatus: number;
|
|
131
|
-
temporaryReference: null;
|
|
132
|
-
config: null;
|
|
133
|
-
}[];
|
|
134
|
-
enableCot: number;
|
|
135
104
|
tokens: number;
|
|
105
|
+
knowledgeBases?: undefined;
|
|
106
|
+
temporaryReference?: undefined;
|
|
107
|
+
databaseReference?: undefined;
|
|
108
|
+
chain?: undefined;
|
|
109
|
+
enableCot?: undefined;
|
|
136
110
|
};
|
|
137
111
|
})[];
|
|
138
112
|
searchConfigDTO: {
|