diff --git a/README.md b/README.md index 05e2349..d9b8f98 100644 --- a/README.md +++ b/README.md @@ -88,8 +88,9 @@ It includes **agent deployment** and **secure sandboxed tool execution**, and ca │ ├── stream_printing_messages/ # Streaming and printing messages │ ├── structured_output/ # Structured output parsing and validation │ ├── multiagent_concurrent/ # Concurrent multi-agent task execution -│ └── meta_planner_agent/ # Planning agent with tool orchestration +│ └── meta_planner_agent/ # Planning agent with tool orchestration │ +├── sample_template/ # Template for new sample contributions └── README.md ``` diff --git a/README_zh.md b/README_zh.md index b2fb755..84f9735 100644 --- a/README_zh.md +++ b/README_zh.md @@ -88,8 +88,9 @@ AgentScope Runtime 是一个**全面的运行时框架**,主要解决部署和 │ ├── stream_printing_messages/ # 信息流式输出与打印 │ ├── structured_output/ # 结构化输出解析与验证 │ ├── multiagent_concurrent/ # 多 Agent 并发任务执行 -│ └── meta_planner_agent/ # 带工具编排的计划 Agent +│ └── meta_planner_agent/ # 带工具编排的计划 Agent │ +├── sample_template/ # 新样例贡献模板 └── README.md ``` diff --git a/project_template/README.md b/sample_template/README.md similarity index 87% rename from project_template/README.md rename to sample_template/README.md index b9b1ca4..161d432 100644 --- a/project_template/README.md +++ b/sample_template/README.md @@ -1,8 +1,8 @@ -# [Your Project Name] +# [Your Sample Name] -[Brief description of what this project demonstrates] +[Brief description of what this sample demonstrates] -## 🌳 Project Structure +## 🌳 Sample Structure ### Python Only @@ -34,7 +34,7 @@ ## 📖 Overview -[Detailed description of the project, what it demonstrates, and key features] +[Detailed description of the sample, what it demonstrates, and key features] ## 🚀 Getting Started diff --git a/project_template/main.py b/sample_template/main.py similarity index 85% rename from project_template/main.py rename to sample_template/main.py index 70714bf..90ac3de 100644 --- a/project_template/main.py +++ b/sample_template/main.py @@ -1,5 +1,5 @@ """ -[Your Project Name] - Entry Point +[Your Sample Name] - Entry Point This example demonstrates [brief description]. """ diff --git a/project_template/requirements.txt b/sample_template/requirements.txt similarity index 100% rename from project_template/requirements.txt rename to sample_template/requirements.txt