feat(orchestrator): 支持通用任务直接响应 (#252)#253
Merged
Merged
Conversation
- 添加 TaskPlan.DirectResponse 和 Response 字段 - 更新 Decomposer 解析逻辑支持直接响应 - 添加 Executor 分支处理直接响应 - 添加 few-shot 示例引导 LLM 判断直接响应场景 Resolves #252 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Replace amber color scheme with zinc (neutral gray) for NORMAL mode dark theme to reduce visual impact and improve long-term usability. Design rationale: - Zinc is pure neutral gray, calm and professional - Better aligns with "Second Brain" product positioning - Distinct from GEEK (slate blue-gray) and EVOLUTION (emerald green) Changes: - PARROT_THEMES.NORMAL: amber -> zinc - BLOCK_THEMES.NORMAL: amber -> zinc - ChatHeader default mode: amber -> zinc - NODE_COLORS.answer: amber -> zinc - Update TimelineNode tests and snapshots Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
实现 Orchestrator 通用任务直接响应功能,允许 LLM 直接处理简单任务(总结、翻译、简单问答),无需调用专家代理。
变更内容
DirectResponse和Response字段技术细节
direct_response: trueResponse内容Resolves #252
Test plan
make check-all通过