Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
5e33cbb
feat: integrate DeerFlow agent runner and improve stream handling
zouyonghe Feb 28, 2026
b90cbe2
refactor: split DeerFlow stream flow and close stale client on reset
zouyonghe Feb 28, 2026
c7da6c1
fix: enforce max_step and correct timeout type check
zouyonghe Feb 28, 2026
a018684
fix: harden DeerFlow config parsing and session lifecycle
zouyonghe Feb 28, 2026
1a7bc0a
fix: preserve third-party runner error semantics and harden image par…
zouyonghe Feb 28, 2026
7e91cd2
perf: bound DeerFlow values history and seen-id cache
zouyonghe Feb 28, 2026
c82b009
refactor: improve deerflow stream semantics and client lifecycle
zouyonghe Feb 28, 2026
9c10db9
fix: harden third-party runner error semantics and fallback aggregation
zouyonghe Feb 28, 2026
fd4fe4b
refactor: reduce deerflow image log noise and lazy-init api session
zouyonghe Feb 28, 2026
17a7ef3
perf: avoid unnecessary iterable copies in deerflow stream utils
zouyonghe Feb 28, 2026
75ade39
refactor: centralize runner error key and clarify deerflow client lif…
zouyonghe Feb 28, 2026
352ab50
refactor: simplify third-party runner output flow
zouyonghe Feb 28, 2026
3ae43a2
fix: defer streaming runner cleanup and unify error mapping
zouyonghe Feb 28, 2026
a6beab6
fix: handle id-less values messages and redact stream payload logs
zouyonghe Feb 28, 2026
bd1648f
fix: improve deerflow error signaling and third-party runner flow
zouyonghe Feb 28, 2026
613559a
fix: support deerflow proxy and refine runner lifecycle
zouyonghe Feb 28, 2026
98a4840
fix: tighten deerflow image validation and runner lifecycle
zouyonghe Feb 28, 2026
b3cab6d
feat: support deerflow image output components
zouyonghe Feb 28, 2026
b4f7262
fix: harden runner stream cleanup and refactor deerflow config
zouyonghe Feb 28, 2026
f0dc39a
fix: preserve deerflow done hook and simplify runner lifecycle
zouyonghe Feb 28, 2026
ce1a79c
refactor: simplify third-party runner aggregation and lifecycle closing
zouyonghe Feb 28, 2026
8a40e14
fix: preserve first deerflow values payload and simplify runner flow
zouyonghe Feb 28, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
"dify": "dify_conversation_id",
"coze": "coze_conversation_id",
"dashscope": "dashscope_conversation_id",
"deerflow": "deerflow_thread_id",
}
THIRD_PARTY_AGENT_RUNNER_STR = ", ".join(THIRD_PARTY_AGENT_RUNNER_KEY.keys())

Expand Down
Loading