索引
响应构建器类。
该类提供通用函数,用于接收一组文本并生成响应。
将支持不同模式,包括:1) 将文本块填充到提示中, 2) 对每个文本块分别创建和优化,3) 树状摘要。
基础合成器 #
基类:PromptMixin, DispatcherSpanMixin
响应构建器类。
workflows/handler.py 中的源代码llama_index/core/response_synthesizers/base.py
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 | |
get_response
abstractmethod
#
get_response(query_str: str, text_chunks: Sequence[str], **response_kwargs: Any) -> RESPONSE_TEXT_TYPE
获取响应。
workflows/handler.py 中的源代码llama_index/core/response_synthesizers/base.py
108 109 110 111 112 113 114 115 116 | |
aget_response
abstractmethod
async
#
aget_response(query_str: str, text_chunks: Sequence[str], **response_kwargs: Any) -> RESPONSE_TEXT_TYPE
获取响应。
workflows/handler.py 中的源代码llama_index/core/response_synthesizers/base.py
118 119 120 121 122 123 124 125 126 | |
选项: 成员:- BaseSynthesizer
get_response_synthesizer #
get_response_synthesizer(llm: Optional[大语言模型] = None, prompt_helper: Optional[PromptHelper] = None, text_qa_template: Optional[BasePromptTemplate] = None, refine_template: Optional[BasePromptTemplate] = None, summary_template: Optional[BasePromptTemplate] = None, simple_template: Optional[BasePromptTemplate] = None, response_mode: ResponseMode = 紧凑型, callback_manager: Optional[CallbackManager] = None, use_async: bool = False, streaming: bool = False, structured_answer_filtering: bool = False, output_cls: Optional[Type[BaseModel]] = None, program_factory: Optional[Callable[[BasePromptTemplate], BasePydanticProgram]] = None, verbose: bool = False) -> BaseSynthesizer
获取一个响应合成器。
workflows/handler.py 中的源代码llama_index/core/response_synthesizers/factory.py
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 | |
选项: 成员:- get_response_synthesizer
响应模式 #
基类:str, Enum
响应构建器(及合成器)的响应模式。
workflows/handler.py 中的源代码llama_index/core/response_synthesizers/type.py
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 | |
优化
class-attribute
instance-attribute
#
REFINE = 'refine'
Refine是一种迭代生成响应的方法。 我们首先使用第一个节点中的上下文以及查询来生成初始答案。 然后我们将此答案、查询和第二个节点的上下文作为输入传递给“优化提示”以生成优化后的答案。我们通过N-1个节点进行优化,其中N是节点总数。
紧凑
class-attribute
instance-attribute
#
COMPACT = 'compact'
紧凑和优化模式首先将文本块合并为更大的整合块,以更充分地利用可用上下文窗口,然后在这些块之间优化答案。 由于我们减少了对LLM的调用次数,这种模式比优化模式更快。
SIMPLE_SUMMARIZE
class-attribute
instance-attribute
#
SIMPLE_SUMMARIZE = 'simple_summarize'
将所有文本块合并为一个,并进行一次大语言模型调用。 如果合并后的文本块超出上下文窗口大小,此操作将失败。
TREE_SUMMARIZE
class-attribute
instance-attribute
#
TREE_SUMMARIZE = 'tree_summarize'
在候选节点集合上构建树状索引,使用查询种子初始化摘要提示。 该树以自底向上的方式构建,最终根节点作为响应返回。
COMPACT_ACCUMULATE
class-attribute
instance-attribute
#
COMPACT_ACCUMULATE = 'compact_accumulate'
紧凑与累积模式首先将文本块合并为更大的整合块,以更充分地利用可用上下文窗口,然后为每个整合块累积答案,最后返回拼接结果。 由于我们减少了对大语言模型的调用次数,该模式比累积模式更快。
选项: 成员:- ResponseMode