add project template

This commit is contained in:
raykkk
2025-10-29 12:18:04 +08:00
parent 38a7e49d03
commit c35c1187b2
5 changed files with 9 additions and 7 deletions

View File

@@ -88,8 +88,9 @@ It includes **agent deployment** and **secure sandboxed tool execution**, and ca
│ ├── stream_printing_messages/ # Streaming and printing messages │ ├── stream_printing_messages/ # Streaming and printing messages
│ ├── structured_output/ # Structured output parsing and validation │ ├── structured_output/ # Structured output parsing and validation
│ ├── multiagent_concurrent/ # Concurrent multi-agent task execution │ ├── 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 └── README.md
``` ```

View File

@@ -88,8 +88,9 @@ AgentScope Runtime 是一个**全面的运行时框架**,主要解决部署和
│ ├── stream_printing_messages/ # 信息流式输出与打印 │ ├── stream_printing_messages/ # 信息流式输出与打印
│ ├── structured_output/ # 结构化输出解析与验证 │ ├── structured_output/ # 结构化输出解析与验证
│ ├── multiagent_concurrent/ # 多 Agent 并发任务执行 │ ├── multiagent_concurrent/ # 多 Agent 并发任务执行
│ └── meta_planner_agent/ # 带工具编排的计划 Agent │ └── meta_planner_agent/ # 带工具编排的计划 Agent
├── sample_template/ # 新样例贡献模板
└── README.md └── README.md
``` ```

View File

@@ -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 ### Python Only
@@ -34,7 +34,7 @@
## 📖 Overview ## 📖 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 ## 🚀 Getting Started

View File

@@ -1,5 +1,5 @@
""" """
[Your Project Name] - Entry Point [Your Sample Name] - Entry Point
This example demonstrates [brief description]. This example demonstrates [brief description].
""" """