索引
聊天响应模式 #
Bases: str, Enum
在 Agent._chat 中切换等待/流式传输的标志。
workflows/handler.py 中的源代码llama_index/core/chat_engine/types.py
45 46 47 48 49 | |
智能体聊天响应
dataclass
#
智能体聊天回复。
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
response
|
str
|
|
''
|
sources
|
List[ToolOutput]
|
内置可变序列。 如果未提供参数,构造函数将创建一个新的空列表。 如果指定了参数,则它必须是一个可迭代对象。 |
<dynamic>
|
source_nodes
|
List[NodeWithScore]
|
内置可变序列。 如果未提供参数,构造函数将创建一个新的空列表。 如果指定了参数,则它必须是一个可迭代对象。 |
<dynamic>
|
is_dummy_stream
|
bool
|
|
False
|
metadata
|
Dict[str, Any] | None
|
|
None
|
workflows/handler.py 中的源代码llama_index/core/chat_engine/types.py
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 | |
async_response_gen
async
#
async_response_gen() -> AsyncGenerator[str, None]
用于模拟流式传输,例如配合工具输出使用。
workflows/handler.py 中的源代码llama_index/core/chat_engine/types.py
87 88 89 90 91 92 93 94 95 96 97 | |
流式智能体聊天响应
dataclass
#
将聊天响应流式传输给用户并写入聊天历史记录。
参数:
| 名称 | 类型 | 描述 | 默认 |
|---|---|---|---|
response
|
str
|
|
''
|
sources
|
List[ToolOutput]
|
内置可变序列。 如果未提供参数,构造函数将创建一个新的空列表。 如果指定了参数,则它必须是一个可迭代对象。 |
<dynamic>
|
chat_stream
|
Generator[ChatResponse, None, None] | None
|
|
None
|
achat_stream
|
AsyncGenerator[ChatResponse, None] | None
|
|
None
|
source_nodes
|
List[NodeWithScore]
|
内置可变序列。 如果未提供参数,构造函数将创建一个新的空列表。 如果指定了参数,则它必须是一个可迭代对象。 |
<dynamic>
|
unformatted_response
|
str
|
|
''
|
queue
|
Queue
|
创建一个具有指定最大大小的队列对象。 如果 maxsize 小于等于 0,队列大小为无限。 |
<dynamic>
|
aqueue
|
Queue | None
|
|
None
|
is_function
|
bool | None
|
|
None
|
new_item_event
|
Event | None
|
|
None
|
is_function_false_event
|
Event | None
|
|
None
|
is_function_not_none_thread_event
|
Event
|
实现事件对象的类。 事件管理一个标志,该标志可以通过 set() 方法设置为 true,并通过 clear() 方法重置为 false。wait() 方法会阻塞直到标志变为 true。该标志初始值为 false。 |
<threading.Event at 0x7f82e16e8530: unset>
|
is_writing_to_memory
|
bool
|
|
True
|
exception
|
Exception | None
|
|
None
|
awrite_response_to_history_task
|
Task | None
|
|
None
|
workflows/handler.py 中的源代码llama_index/core/chat_engine/types.py
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 | |
基础聊天引擎 #
Bases: DispatcherSpanMixin, ABC
基础聊天引擎。
workflows/handler.py 中的源代码llama_index/core/chat_engine/types.py
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 | |
重置
abstractmethod
#
reset() -> None
重置对话状态。
workflows/handler.py 中的源代码llama_index/core/chat_engine/types.py
374 375 376 | |
聊天
abstractmethod
#
chat(message: str, chat_history: Optional[List[ChatMessage]] = None) -> AGENT_CHAT_RESPONSE_TYPE
主聊天界面。
workflows/handler.py 中的源代码llama_index/core/chat_engine/types.py
378 379 380 381 382 | |
stream_chat
abstractmethod
#
stream_chat(message: str, chat_history: Optional[List[ChatMessage]] = None) -> StreamingAgentChatResponse
流式聊天界面。
workflows/handler.py 中的源代码llama_index/core/chat_engine/types.py
384 385 386 387 388 | |
聊天
abstractmethod
async
#
achat(message: str, chat_history: Optional[List[ChatMessage]] = None) -> AGENT_CHAT_RESPONSE_TYPE
主聊天界面的异步版本。
workflows/handler.py 中的源代码llama_index/core/chat_engine/types.py
390 391 392 393 394 | |
astream_chat
abstractmethod
async
#
astream_chat(message: str, chat_history: Optional[List[ChatMessage]] = None) -> StreamingAgentChatResponse
主聊天界面的异步版本。
workflows/handler.py 中的源代码llama_index/core/chat_engine/types.py
396 397 398 399 400 | |
chat_repl #
chat_repl() -> None
进入交互式聊天 REPL。
workflows/handler.py 中的源代码llama_index/core/chat_engine/types.py
402 403 404 405 406 407 408 409 410 411 | |
streaming_chat_repl #
streaming_chat_repl() -> None
进入具有流式响应的交互式聊天 REPL。
workflows/handler.py 中的源代码llama_index/core/chat_engine/types.py
413 414 415 416 417 418 419 420 421 422 423 424 | |
聊天模式 #
Bases: str, Enum
聊天引擎模式。
workflows/handler.py 中的源代码llama_index/core/chat_engine/types.py
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 | |
CONDENSE_QUESTION
class-attribute
instance-attribute
#
CONDENSE_QUESTION = 'condense_question'
对应 CondenseQuestionChatEngine。
首先根据对话上下文和最后一条消息生成一个独立的问题,然后查询问答引擎获取响应。
上下文
class-attribute
instance-attribute
#
CONTEXT = 'context'
对应 ContextChatEngine。
首先根据用户消息从索引中检索文本,然后使用系统提示中的上下文生成响应。
CONDENSE_PLUS_CONTEXT
class-attribute
instance-attribute
#
CONDENSE_PLUS_CONTEXT = 'condense_plus_context'
对应 CondensePlusContextChatEngine。
首先将对话和最新用户消息浓缩为一个独立问题。 然后从检索器中为该独立问题构建上下文, 最后将上下文连同提示和用户消息传递给LLM生成响应。
REACT
class-attribute
instance-attribute
#
REACT = 'react'
对应 ReActAgent。
使用带有查询引擎工具的ReAct智能体循环。
注意:已弃用且不再受支持。
OPENAI
class-attribute
instance-attribute
#
OPENAI = 'openai'
对应 OpenAIAgent。
使用一个OpenAI函数调用智能体循环。
注意:已弃用且不再受支持。
is_function #
is_function(message: ChatMessage) -> bool
用于处理来自OpenAI模型的ChatMessage响应的实用工具。
workflows/handler.py 中的源代码llama_index/core/chat_engine/types.py
37 38 39 40 41 42 | |