@@ -68,7 +68,7 @@ See [Eino ADK: ChatModelAgentMiddleware](/docs/eino/core_modules/eino_adk/Eino_A
6868> 💡
6969> ** Function** : Automatic conversation history summarization to prevent exceeding model context window limits
7070
71- 📚 ** Detailed Documentation** : [ Middleware: Summarization] ( https://www.feishu.cn/wiki/KFJ9wnrMmicvI4kWuz4cymnTnfe )
71+ 📚 ** Detailed Documentation** : [ Middleware: Summarization] ( /docs/eino/core_modules/eino_adk/Eino_ADK_ChatModelAgentMiddleware/Middleware_Summarization )
7272
7373When the token count of conversation history exceeds a threshold, automatically calls LLM to generate a summary and compress the context.
7474
@@ -95,7 +95,7 @@ mw, err := summarization.New(ctx, &summarization.Config{
9595> 💡
9696> ** Function** : Tool result compression to optimize context usage efficiency
9797
98- 📚 ** Detailed Documentation** : [ Middleware: ToolReduction] ( https://www.feishu.cn/wiki/C5QAwAg3QisDo5kwaWicJBo9ndd )
98+ 📚 ** Detailed Documentation** : [ Middleware: ToolReduction] ( /docs/eino/core_modules/eino_adk/Eino_ADK_ChatModelAgentMiddleware/Middleware_ToolReduction )
9999
100100Provides two-phase tool output management:
101101
@@ -120,7 +120,7 @@ mw, err := reduction.New(ctx, &reduction.Config{
120120> 💡
121121> ** Function** : File system operation toolset
122122
123- 📚 ** Detailed Documentation** : [ Middleware: FileSystem] ( https://www.feishu.cn/wiki/NODlwh1Q9imdetkhmgKcyF0Vncd )
123+ 📚 ** Detailed Documentation** : [ Middleware: FileSystem] ( /docs/eino/core_modules/eino_adk/Eino_ADK_ChatModelAgentMiddleware/Middleware_FileSystem )
124124
125125** New Capabilities** :
126126
@@ -133,7 +133,7 @@ mw, err := reduction.New(ctx, &reduction.Config{
133133> 💡
134134> ** Function** : Dynamic loading and execution of Skills
135135
136- 📚 ** Detailed Documentation** : [ Middleware: Skill] ( https://www.feishu.cn/wiki/NG1xwde86ig3qhkdMhQc5bh2nIm )
136+ 📚 ** Detailed Documentation** : [ Middleware: Skill] ( /docs/eino/core_modules/eino_adk/Eino_ADK_ChatModelAgentMiddleware/Middleware_Skill )
137137
138138** New Capabilities** :
139139
@@ -146,7 +146,7 @@ mw, err := reduction.New(ctx, &reduction.Config{
146146> 💡
147147> ** Function** : Task planning and execution tools
148148
149- 📚 ** Detailed Documentation** : [ Middleware: PlanTask] ( https://www.feishu.cn/wiki/H7dlwwO0ZiotwBk8iTpcxesKn4d )
149+ 📚 ** Detailed Documentation** : [ Middleware: PlanTask] ( /docs/eino/core_modules/eino_adk/Eino_ADK_ChatModelAgentMiddleware/Middleware_PlanTask )
150150
151151Supports Agent creation and management of task plans, suitable for complex task scenarios requiring step-by-step execution.
152152
@@ -155,7 +155,7 @@ Supports Agent creation and management of task plans, suitable for complex task
155155> 💡
156156> ** Function** : Tool search with dynamic retrieval from a large number of tools
157157
158- 📚 ** Detailed Documentation** : [ Middleware: ToolSearch] ( https://www.feishu.cn/wiki/GVgXww3HJiZUx0kS7O6cfOHpnZf )
158+ 📚 ** Detailed Documentation** : [ Middleware: ToolSearch] ( /docs/eino/core_modules/eino_adk/Eino_ADK_ChatModelAgentMiddleware/Middleware_ToolSearch )
159159
160160When there are many tools, dynamically selects the most relevant tools through semantic search to avoid context overload.
161161
@@ -164,7 +164,7 @@ When there are many tools, dynamically selects the most relevant tools through s
164164> 💡
165165> ** Function** : Patch dangling tool calls to ensure message history completeness
166166
167- 📚 ** Detailed Documentation** : [ Middleware: PatchToolCalls] ( https://www.feishu.cn/wiki/WpkUwXnwMidkUVkGTx8ckIWWnjg )
167+ 📚 ** Detailed Documentation** : [ Middleware: PatchToolCalls] ( /docs/eino/core_modules/eino_adk/Eino_ADK_ChatModelAgentMiddleware/Middleware_PatchToolCalls )
168168
169169Scans message history and inserts placeholder messages for tool calls missing responses. Suitable for scenarios where tool calls are interrupted or cancelled.
170170
0 commit comments