wujingjing
2024-12-14 1476d27514874e9c95002451a81878bd9bec8382
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
import request, { streamReq } from '/@/utils/request';
const GET_SECTION_SAMPLE_API = '/scene/get_scene_group_sample';
const GET_SECTION_A_LIST_API = '/scene/get_scene_group_tree';
export const Get_LOGIN_SMS = '/login_sms';
export const NO_AUTH_API_LIST = [GET_SECTION_SAMPLE_API, GET_SECTION_A_LIST_API, Get_LOGIN_SMS];
 
//#region ====================== knowledge ======================
 
export interface KnowledgeRes {
    json_ok: boolean;
    question: string;
    answer_type: string;
    knowledge: KnowledgeData[];
}
 
export interface KnowledgeData {
    answer: string;
    contexts: Context[];
}
 
export interface Context {
    page_content: string;
    metadata: Metadata;
}
 
export interface Metadata {
    Title?: string;
}
 
//#endregion
 
//#region ====================== RecordSet ======================
export interface RecordSetRes {
    json_ok: boolean;
    question: string;
    answer_type: string;
    values: RecordSetValues;
}
 
export interface RecordSetValues {
    names: string[];
    values: Array<Array<any>>;
    type: string;
    title: string;
}
 
//#endregion
/**
 * @summary 获取历史操作
 */
export const GetHistory = async (req: any = request) => {
    return req({
        url: '/chat/get_history',
        method: 'POST',
    });
};
 
/**
 * @summary
 */
export const GetSampleList = async (req: any = request) => {
    return req({
        url: '/chat/get_sample_list',
        method: 'POST',
    });
};
 
/**
 * @summary description
 */
export const QuestionAi = async (params, req: any = request) => {
    return req({
        url: '/chat/question',
        method: 'POST',
        data: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};
 
/**
 * @summary description
 */
export const GetLLMList = async (req: any = request) => {
    return req({
        url: '/llm/llm/get_llm_list',
        method: 'POST',
    });
};
 
/**
 * @summary description
 */
export const SetLLM = async (params, req: any = request) => {
    return req({
        url: '/llm/set_llm',
        method: 'POST',
        data: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};
 
/**
 * @summary  获取主场景
 */
export const getSectionList = async (req: any = request) => {
    return req({
        url: GET_SECTION_A_LIST_API,
        method: 'POST',
    });
};
/**
 * @summary  根据主应用场景获取次应用场景
 */
export const getSectionByIdList = async (params, req: any = request) => {
    return req({
        url: '/section/get_section_b_list',
        method: 'POST',
        data: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};
/**
 * @summary  获取全部次场景
 */
export const getSectionByAllList = async (req: any = request) => {
    return req({
        url: '/section/get_section_list',
        method: 'POST',
    });
};
/**
 * @summary description
 */
export const CreateHistoryGroup = async (params, req: any = request) => {
    return req({
        url: '/history/create_history_group',
        method: 'POST',
        data: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};
 
export const GetHistoryGroups = async (req: any = request) => {
    return req({
        url: '/history/get_history_groups',
        method: 'POST',
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};
 
export const DeleteHistoryGroups = async (params, req: any = request) => {
    return req({
        url: '/history/delete_history_group',
        method: 'POST',
        data: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};
 
export const QueryHistoryGroup = async (params, req: any = request) => {
    return req({
        url: '/history/query_history_detail',
        method: 'POST',
        data: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};
 
// 获取AI对话测试例子列表
export const getSelectSample = async (params, req: any = request) => {
    return req({
        url: GET_SECTION_SAMPLE_API,
        method: 'POST',
        data: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};
 
export const GetHistoryAnswer = async (params, req: any = request) => {
    return req({
        url: '/history/get_history_answer',
        method: 'POST',
        data: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};
 
export const QueryHistoryDetail = async (params, req: any = request) => {
    return req({
        url: '/history/query_history_detail',
        method: 'POST',
        data: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};
//系统通知
export const systemNotifyList = async (req: any = request) => {
    return req({
        url: '/system/get_sys_notify_list',
        method: 'POST',
    });
};
//获取大模型列表
export const getBigModelList = async (req: any = request) => {
    return req({
        url: '/llm/llm/get_llm_list',
        method: 'POST',
    });
};
 
/**
 * @summary 设置历史对话状态(未设置:NULL,顶1,踩0
 */
export const SetHistoryAnswerState = async (params, req: any = request) => {
    return req({
        url: '/history/set_history_answer_state',
        method: 'POST',
        data: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};
 
/**
 * @summary AI大模型对话
 */
export const QuestionWorkAi = async (params, req: any = request) => {
    return req({
        url: '/chat/question1',
        method: 'POST',
        data: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};
/**
 * @description 流式大模型对话
 * @param {FormData} params
 **/
export const questionStreamByPost = (params, callback: (chunkRes) => void, extraData: any = {}) =>
    streamReq(
        {
            url: `/chat/question_stream`,
            method: 'post',
            params: {},
            data: params,
            headers: {
                'Content-Type': 'application/x-www-form-urlencoded',
            },
            ...extraData,
        },
        callback
    );
 
/**
 * @summary AI大模型对话
 */
export const getUserTemplateList = async (req: any = request) => {
    return req({
        url: '/system/get_user_template_list',
        method: 'POST',
    });
};
 
/**
 * 查询问题进度
 * @param params
 * @param req
 * @returns
 */
export const getQuestionProcess = async (params, req: any = request) => {
    return req({
        url: 'chat/get_question_process',
        method: 'POST',
        data: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};
//修改对话分组列表标题
export const setHistoryGroupTitle = async (params, req: any = request) => {
    return req({
        url: 'history/set_history_group_title',
        method: 'POST',
        data: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};
 
export const reportHistoryProblem = async (params, req: any = request) => {
    return req({
        url: 'history/report_history_problem',
        method: 'POST',
        data: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};
 
export const querySimilarityHistory = async (params, req: any = request) => {
    return req({
        url: 'history/query_similarity_history',
        method: 'POST',
        data: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};
export const getMetricsNames = async (req: any = request) => {
    return req({
        url: 'chat/get_metrics_names',
        method: 'POST',
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};
export const filterQuery = async (params, req: any = request) => {
    return req({
        url: 'chat/filter_query',
        method: 'POST',
        data: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};
 
export const queryScadaTimeValues = async (params, req: any = request) => {
    return req({
        url: 'data/query_scada_time_values',
        method: 'POST',
        data: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};
 
/** @description 关联查询 */
export const extCallQuery = async (params, req: any = request) => {
    return req({
        url: 'chat/ext_call_query',
        method: 'POST',
        data: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};
 
/**
 * 曲线查询
 * @param params
 * @param req
 * @returns
 */
export const curveQuery = (params, req: any = request) => {
    return req({
        url: 'chat/chat_supervisor_json',
        method: 'POST',
        data: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};
 
/**
 * 添加用户自定义例子
 * @param params
 * @param req
 * @returns
 */
export const addUserSample = (params, req: any = request) => {
    return req({
        url: 'chat/add_user_sample',
        method: 'POST',
        data: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};
 
/**
 * 
查询用户自定义例子
 * @param params 
 * @param req 
 * @returns 
 */
export const listUserSample = (params, req: any = request) => {
    return req({
        url: 'chat/list_user_sample',
        method: 'POST',
        data: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};
/**
 * 
修改用户自定义例子
 * @param params 
 * @param req 
 * @returns 
 */
export const updateUserSample = (params, req: any = request) => {
    return req({
        url: 'chat/update_user_sample',
        method: 'POST',
        data: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};
 
/**
 * 
删除用户自定义例子
 * @param params 
 * @param req 
 * @returns 
 */
export const deleteUserSample = (params, req: any = request) => {
    return req({
        url: 'chat/delete_user_sample',
        method: 'POST',
        data: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
};
 
/**
 * @description 将当前对话历史分享
 * @param {FormData} params
 **/
export const shareChatHistoryByPost = (params) =>
    request({
        url: `/chat/share_chat_history`,
        method: 'post',
        params: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
/**
 * @description 查询异步结果
 * @param {FormData} params
 **/
export const shareAsyncQueryByPost = (params) =>
    request({
        url: `/chat/share_async_query`,
        method: 'post',
        params: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
/**
 * @description 将当前对话历史分享
 * @param {FormData} params
 **/
export const getShareChatJsonByPost = (params) =>
    request({
        url: `/chat/get_share_chat_json`,
        method: 'post',
        params: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });
 
 
    export const question_stream_reply = (params) =>
    request({
        url: `/chat/question_stream_reply`,
        method: 'post',
        params: params,
        headers: {
            'Content-Type': 'application/x-www-form-urlencoded',
        },
    });