mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-05-23 16:35:59 +00:00
config: raise default summarization trigger before v2.0-m1 (#3174)
* config: update summarization configuration * docs: sync summarization trigger guidance
This commit is contained in:
+2
-2
@@ -799,9 +799,9 @@ summarization:
|
|||||||
# Summarization runs when ANY threshold is met (OR logic)
|
# Summarization runs when ANY threshold is met (OR logic)
|
||||||
# You can specify a single trigger or a list of triggers
|
# You can specify a single trigger or a list of triggers
|
||||||
trigger:
|
trigger:
|
||||||
# Trigger when token count reaches 15564
|
# Trigger when token count reaches 32000
|
||||||
- type: tokens
|
- type: tokens
|
||||||
value: 15564
|
value: 32000
|
||||||
# Uncomment to also trigger when message count reaches 50
|
# Uncomment to also trigger when message count reaches 50
|
||||||
# - type: messages
|
# - type: messages
|
||||||
# value: 50
|
# value: 50
|
||||||
|
|||||||
@@ -162,7 +162,7 @@ summarization:
|
|||||||
# Trigger conditions — summarization runs when ANY threshold is met
|
# Trigger conditions — summarization runs when ANY threshold is met
|
||||||
trigger:
|
trigger:
|
||||||
- type: tokens # trigger when context exceeds N tokens
|
- type: tokens # trigger when context exceeds N tokens
|
||||||
value: 15564
|
value: 32000
|
||||||
# - type: messages # trigger when there are more than N messages
|
# - type: messages # trigger when there are more than N messages
|
||||||
# value: 50
|
# value: 50
|
||||||
# - type: fraction # trigger when context exceeds X% of model max
|
# - type: fraction # trigger when context exceeds X% of model max
|
||||||
|
|||||||
@@ -154,7 +154,7 @@ summarization:
|
|||||||
# 触发条件——满足任意一个条件时运行摘要
|
# 触发条件——满足任意一个条件时运行摘要
|
||||||
trigger:
|
trigger:
|
||||||
- type: tokens # 当上下文超过 N 个 token 时触发
|
- type: tokens # 当上下文超过 N 个 token 时触发
|
||||||
value: 15564
|
value: 32000
|
||||||
# - type: messages # 当消息数超过 N 时触发
|
# - type: messages # 当消息数超过 N 时触发
|
||||||
# value: 50
|
# value: 50
|
||||||
# - type: fraction # 当上下文达到模型最大输入的 X% 时触发
|
# - type: fraction # 当上下文达到模型最大输入的 X% 时触发
|
||||||
|
|||||||
Reference in New Issue
Block a user