Skip to content

Commit d8e6b58

Browse files
docs(eino): sync english translations
1 parent 7a80b26 commit d8e6b58

10 files changed

Lines changed: 12 additions & 13 deletions

File tree

content/en/docs/eino/FAQ.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,3 +169,7 @@ The fundamental solution to this problem is to rely on the model to output valid
169169
Use the `GraphCompileCallback` mechanism to export the topology structure during `graph.Compile`. A code example for exporting as a mermaid diagram: [https://github.com/cloudwego/eino-examples/tree/main/devops/visualize](https://github.com/cloudwego/eino-examples/tree/main/devops/visualize)
170170

171171
- For obtaining intermediate structures in Flow/React Agent scenarios, refer to the document [Eino: ReAct Agent Manual](/docs/eino/core_modules/flow_integration_components/react_agent_manual)
172+
173+
# Q: Gemini model error missing a `thought_signature`
174+
175+
Gemini model protocol is not openai-compatible. You should use the gemini wrapper at [https://github.com/cloudwego/eino-ext/tree/main/components/model/gemini](https://github.com/cloudwego/eino-ext/tree/main/components/model/gemini). See initialization reference code.

content/en/docs/eino/core_modules/eino_adk/Eino_ADK_ChatModelAgentMiddleware/Middleware_PatchToolCalls.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ weight: 7
1010
adk/middlewares/patchtoolcalls
1111

1212
> 💡
13-
> The PatchToolCalls middleware is used to fix "dangling tool calls" issues in the message history. This middleware was introduced in [v0.8.0.Beta](https://github.com/cloudwego/eino/releases/tag/v0.8.0-beta.1).
13+
> The PatchToolCalls middleware is used to fix "dangling tool calls" issues in the message history. This middleware was introduced in v0.8.0.
1414
1515
## Overview
1616

content/en/docs/eino/core_modules/eino_adk/Eino_ADK_ChatModelAgentMiddleware/Middleware_PlanTask.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ weight: 4
1212
adk/middlewares/plantask
1313

1414
> 💡
15-
> This middleware was introduced in [v0.8.0.Beta](https://github.com/cloudwego/eino/releases/tag/v0.8.0-beta.1).
15+
> This middleware was introduced in v0.8.0.
1616
1717
## Overview
1818

content/en/docs/eino/core_modules/eino_adk/Eino_ADK_ChatModelAgentMiddleware/Middleware_Summarization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ weight: 3
1212
The Summarization middleware automatically compresses conversation history when the token count exceeds a configured threshold. This helps maintain context continuity in long conversations while staying within the model's token limits.
1313

1414
> 💡
15-
> This middleware was introduced in [v0.8.0.Beta](https://github.com/cloudwego/eino/releases/tag/v0.8.0-beta.1).
15+
> This middleware was introduced in v0.8.0.
1616
1717
## Quick Start
1818

content/en/docs/eino/core_modules/eino_adk/Eino_ADK_ChatModelAgentMiddleware/Middleware_ToolReduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ weight: 6
1212
adk/middlewares/reduction
1313

1414
> 💡
15-
> This middleware was introduced in [v0.8.0.Beta](https://github.com/cloudwego/eino/releases/tag/v0.8.0-beta.1).
15+
> This middleware was introduced in v0.8.0.
1616
1717
## Overview
1818

content/en/docs/eino/core_modules/eino_adk/Eino_ADK_ChatModelAgentMiddleware/Middleware_ToolSearch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ weight: 5
1212
adk/middlewares/dynamictool/toolsearch
1313

1414
> 💡
15-
> This middleware was introduced in [v0.8.0.Beta](https://github.com/cloudwego/eino/releases/tag/v0.8.0-beta.1).
15+
> This middleware was introduced in v0.8.0.
1616
1717
## Overview
1818

content/en/docs/eino/core_modules/eino_adk/Eino_ADK_ChatModelAgentMiddleware/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ weight: 8
1616
**Important:** This interface is designed specifically for `ChatModelAgent` and Agents built on top of it (such as `DeepAgent`).
1717

1818
> 💡
19-
> The ChatModelAgentMiddleware interface was introduced in [v0.8.0.Beta](https://github.com/cloudwego/eino/releases/tag/v0.8.0-beta.1)
19+
> The ChatModelAgentMiddleware interface was introduced in v0.8.0
2020
2121
### Why Use ChatModelAgentMiddleware Instead of AgentMiddleware?
2222

content/en/docs/eino/core_modules/eino_adk/adk_agent_callback.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The ADK Agent Callback mechanism shares the same infrastructure as the callback
1818
- Can be combined with other component callbacks (such as ChatModel, Tool, etc.)
1919

2020
> 💡
21-
> Through Agent Callback, you can hook into key points of Agent execution to implement observability capabilities like tracing, logging, and metrics. This feature was introduced in [v0.8.0.Beta](https://github.com/cloudwego/eino/releases/tag/v0.8.0-beta.1).
21+
> Through Agent Callback, you can hook into key points of Agent execution to implement observability capabilities like tracing, logging, and metrics. This feature was introduced in v0.8.0.
2222
2323
## Core Types
2424

content/en/docs/eino/overview/_index.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -345,9 +345,7 @@ The Eino framework consists of several parts:
345345
- [EinoExt](https://github.com/cloudwego/eino-ext): Component implementations, callback handler implementations, component usage examples, and various tools such as evaluators, prompt optimizers, etc.
346346

347347
> 💡
348-
> For components used internally at ByteDance, there are corresponding internal code repositories:
349-
>
350-
> EinoBytedExt: [https://code.byted.org/flow/eino-byted-ext](https://code.byted.org/flow/eino-byted-ext)
348+
> For components used internally at ByteDance, there are corresponding internal code repositories.
351349
352350
- [Eino Devops](https://github.com/cloudwego/eino-ext/tree/main/devops): Visual development, visual debugging, etc.
353351
- [EinoExamples](https://github.com/cloudwego/eino-examples): A code repository containing example applications and best practices.

content/en/docs/eino/release_notes_and_migration/Eino_v0.8._-adk_middlewares/_index.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@ weight: 8
99

1010
This document introduces the main new features and improvements in Eino ADK v0.8.*.
1111

12-
> 💡
13-
> Currently in the v0.8.0.Beta version stage: [https://github.com/cloudwego/eino/releases/tag/v0.8.0-beta.1](https://github.com/cloudwego/eino/releases/tag/v0.8.0-beta.1)
14-
1512
## Version Highlights
1613

1714
v0.8 is a significant feature enhancement release that introduces a new middleware interface architecture, adds multiple practical middlewares, and provides enhanced observability support.

0 commit comments

Comments
 (0)