| 304 | return next(self.responses) |
| 305 | |
| 306 | class PrintToolExecutor(ToolExecutor): |
| 307 | def execute(self, name, inp): |
| 308 | return f"[{name}] 执行了: {inp}" |
| 309 | |
| 310 | # 场景 1: 纯文本回答 (无工具调用) |
| 311 | runtime = ConversationRuntime( |
no outgoing calls
no test coverage detected