forked from opensearch-project/dashboards-assistant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtext_to_ppl_task.ts
48 lines (41 loc) · 1.11 KB
/
text_to_ppl_task.ts
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
/*
* Copyright OpenSearch Contributors
* SPDX-License-Identifier: Apache-2.0
*/
import { HttpSetup } from '../../../../../src/core/public';
import { Task } from './task';
import { TEXT2VIZ_API } from '../../../common/constants/llm';
interface Input {
inputQuestion: string;
index: string;
dataSourceId?: string;
timeFiledName?: string;
}
export class Text2PPLTask extends Task<Input, Input & { ppl: string }> {
http: HttpSetup;
constructor(http: HttpSetup) {
super();
this.http = http;
}
async execute<T extends Input>(v: T) {
let ppl = '';
try {
ppl = await this.text2ppl(v.inputQuestion, v.index, v.dataSourceId);
} catch (e) {
throw new Error(
`Error while generating PPL query with input: ${v.inputQuestion}. Please try rephrasing your question.`
);
}
return { ...v, ppl };
}
async text2ppl(query: string, index: string, dataSourceId?: string) {
const res = await this.http.post(TEXT2VIZ_API.TEXT2PPL, {
body: JSON.stringify({
question: query,
index,
}),
query: { dataSourceId },
});
return res.ppl;
}
}