Skip to content

Commit 8788f90

Browse files
fix: eino docs (#1515)
1 parent 8aa9b98 commit 8788f90

16 files changed

Lines changed: 40 additions & 21 deletions

File tree

content/en/docs/eino/core_modules/components/agentic_chat_model_guide.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
---
22
Description: ""
3-
date: "2026-03-02"
3+
date: "2026-03-03"
44
lastmod: ""
55
tags: []
66
title: 'Eino: AgenticModel User Guide [Beta]'
77
weight: 10
88
---
99

10+
> 💡
11+
> This feature is available starting from [v0.9](https://github.com/cloudwego/eino/releases/tag/v0.9.0-alpha.2).
12+
1013
## Introduction
1114

1215
AgenticModel is an abstraction of model capabilities centered on "goal-driven autonomous execution". As capabilities like caching and built-in tools become natively supported in APIs from advanced providers like OpenAI Responses API and Claude API, models are evolving from "one-shot Q&A engines" to "user goal-oriented autonomous agents": capable of closed-loop planning around objectives, invoking tools, and iterative execution to accomplish more complex tasks.

content/en/docs/eino/core_modules/components/agentic_chat_template_guide.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
---
22
Description: ""
3-
date: "2026-01-20"
3+
date: "2026-03-03"
44
lastmod: ""
55
tags: []
66
title: 'Eino: AgenticChatTemplate Guide [Beta]'
77
weight: 11
88
---
99

10+
> 💡
11+
> This feature is available starting from [v0.9](https://github.com/cloudwego/eino/releases/tag/v0.9.0-alpha.2).
12+
1013
## Introduction
1114

1215
The Prompt component is used for processing and formatting prompt templates. AgenticChatTemplate is a component abstraction specifically designed for AgenticMessage, with definitions and usage essentially the same as the existing ChatTemplate abstraction. Its main purpose is to fill user-provided variable values into predefined message templates, generating standardized message formats for interacting with language models. This component can be used in the following scenarios:

content/en/docs/eino/core_modules/components/agentic_tools_node_guide.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
---
22
Description: ""
3-
date: "2026-01-20"
3+
date: "2026-03-03"
44
lastmod: ""
55
tags: []
66
title: 'Eino: AgenticToolsNode & Tool User Guide [Beta]'
77
weight: 12
88
---
99

10+
> 💡
11+
> This feature is available starting from [v0.9](https://github.com/cloudwego/eino/releases/tag/v0.9.0-alpha.2).
12+
1013
## **Introduction**
1114

1215
In the eino framework, a `Tool` is defined as "an external capability that an AgenticModel can choose to invoke", including local functions, MCP server tools, etc.

content/en/docs/eino/core_modules/components/tools_node_guide/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
Description: ""
3-
date: "2026-03-02"
3+
date: "2026-03-03"
44
lastmod: ""
55
tags: []
66
title: 'Eino: ToolsNode & Tool Guide'

content/en/docs/eino/core_modules/components/tools_node_guide/how_to_create_a_tool.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
Description: ""
3-
date: "2026-03-02"
3+
date: "2026-03-03"
44
lastmod: ""
55
tags: []
66
title: How to Create a Tool

content/en/docs/eino/core_modules/eino_adk/agent_implementation/chat_model.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
Description: ""
3-
date: "2026-03-02"
3+
date: "2026-03-03"
44
lastmod: ""
55
tags: []
66
title: 'Eino ADK: ChatModelAgent'

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
Description: ""
3-
date: "2025-11-20"
3+
date: "2026-03-03"
44
lastmod: ""
55
tags: []
66
title: ByteDance LLM Application Go Framework — Eino in Practice

content/en/docs/eino/quick_start/agent_llm_with_tools.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
Description: ""
3-
date: "2025-12-09"
3+
date: "2026-03-03"
44
lastmod: ""
55
tags: []
66
title: Agent — Give Your LLM Hands

content/zh/docs/eino/core_modules/components/agentic_chat_model_guide.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
---
22
Description: ""
3-
date: "2026-03-02"
3+
date: "2026-03-03"
44
lastmod: ""
55
tags: []
66
title: 'Eino: AgenticModel 使用说明[Beta]'
77
weight: 10
88
---
99

10+
> 💡
11+
> 本功能在 [v0.9](https://github.com/cloudwego/eino/releases/tag/v0.9.0-alpha.2) 版本开始提供。
12+
1013
## 基本介绍
1114

1215
AgenticModel 是一种以 “目标驱动的自主执行” 为核心的模型能力抽象。随着缓存、内置工具等能力在 OpenAI Responses API、Claude API 等先进厂商的 API 中得到原生支持,模型正在从 “一次性问答引擎” 升级为 “面向用户目标的自主行动体”:能够围绕目标进行闭环规划、调用工具与迭代执行,从而完成更复杂的任务。

content/zh/docs/eino/core_modules/components/agentic_chat_template_guide.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
---
22
Description: ""
3-
date: "2026-01-20"
3+
date: "2026-03-03"
44
lastmod: ""
55
tags: []
66
title: 'Eino: AgenticChatTemplate 使用说明[Beta]'
77
weight: 11
88
---
99

10+
> 💡
11+
> 本功能在 [v0.9](https://github.com/cloudwego/eino/releases/tag/v0.9.0-alpha.2) 版本开始提供。
12+
1013
## **基本介绍**
1114

1215
Prompt 组件是一个用于处理和格式化提示模板的组件,其中 AgenticChatTemplate 是专为 AgenticMessage 定义组件抽象,定义与用法与现存的 ChatTemplate 抽象基本相同。它的主要作用是将用户提供的变量值填充到预定义的消息模板中,生成用于与语言模型交互的标准消息格式。这个组件可用于以下场景:

0 commit comments

Comments
 (0)