-
Notifications
You must be signed in to change notification settings - Fork 379
/
Copy pathSubQuestionQueryEngine.ts
136 lines (118 loc) · 3.76 KB
/
SubQuestionQueryEngine.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
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
import type { BaseSynthesizer } from "@llamaindex/core/response-synthesizers";
import { getResponseSynthesizer } from "@llamaindex/core/response-synthesizers";
import { TextNode, type NodeWithScore } from "@llamaindex/core/schema";
import { LLMQuestionGenerator } from "../../QuestionGenerator.js";
import type { ServiceContext } from "../../ServiceContext.js";
import type { BaseTool, ToolMetadata } from "@llamaindex/core/llms";
import type { PromptsRecord } from "@llamaindex/core/prompts";
import {
BaseQueryEngine,
type QueryBundle,
type QueryType,
} from "@llamaindex/core/query-engine";
import type { BaseQuestionGenerator, SubQuestion } from "./types.js";
/**
* SubQuestionQueryEngine decomposes a question into subquestions and then
*/
export class SubQuestionQueryEngine extends BaseQueryEngine {
responseSynthesizer: BaseSynthesizer;
questionGen: BaseQuestionGenerator;
queryEngines: BaseTool[];
metadatas: ToolMetadata[];
constructor(init: {
questionGen: BaseQuestionGenerator;
responseSynthesizer: BaseSynthesizer;
queryEngineTools: BaseTool[];
}) {
super();
this.questionGen = init.questionGen;
this.responseSynthesizer =
init.responseSynthesizer ?? getResponseSynthesizer("compact");
this.queryEngines = init.queryEngineTools;
this.metadatas = init.queryEngineTools.map((tool) => tool.metadata);
}
override async _query(strOrQueryBundle: QueryType, stream?: boolean) {
let query: QueryBundle;
if (typeof strOrQueryBundle === "string") {
query = {
query: strOrQueryBundle,
};
} else {
query = strOrQueryBundle;
}
const subQuestions = await this.questionGen.generate(
this.metadatas,
strOrQueryBundle,
);
const subQNodes = await Promise.all(
subQuestions.map((subQ) => this.querySubQ(subQ)),
);
const nodesWithScore: NodeWithScore[] = subQNodes.filter(
(node) => node !== null,
);
if (stream) {
return this.responseSynthesizer.synthesize(
{
query,
nodes: nodesWithScore,
},
true,
);
}
return this.responseSynthesizer.synthesize(
{
query,
nodes: nodesWithScore,
},
false,
);
}
protected _getPrompts(): PromptsRecord {
return {};
}
protected _updatePrompts() {}
// eslint-disable-next-line @typescript-eslint/no-explicit-any
protected _getPromptModules(): Record<string, any> {
return {
questionGen: this.questionGen,
responseSynthesizer: this.responseSynthesizer,
};
}
static fromDefaults(init: {
queryEngineTools: BaseTool[];
questionGen?: BaseQuestionGenerator;
responseSynthesizer?: BaseSynthesizer;
serviceContext?: ServiceContext;
}) {
const questionGen = init.questionGen ?? new LLMQuestionGenerator();
const responseSynthesizer =
init.responseSynthesizer ?? getResponseSynthesizer("compact");
return new SubQuestionQueryEngine({
questionGen,
responseSynthesizer,
queryEngineTools: init.queryEngineTools,
});
}
private async querySubQ(subQ: SubQuestion): Promise<NodeWithScore | null> {
try {
const question = subQ.subQuestion;
const queryEngine = this.queryEngines.find(
(tool) => tool.metadata.name === subQ.toolName,
);
if (!queryEngine) {
return null;
}
const responseValue = await queryEngine?.call?.({
query: question,
});
if (responseValue == null) {
return null;
}
const nodeText = `Sub question: ${question}\nResponse: ${typeof responseValue === "string" ? responseValue : JSON.stringify(responseValue)}`;
const node = new TextNode({ text: nodeText });
return { node, score: 0 };
} catch (error) {
return null;
}
}
}