diff --git a/README.md b/README.md index 67c1840..6fd27b2 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,7 @@ It includes **agent deployment** and **secure sandboxed tool execution**, and ca | | conversational_agents/multiagent_conversation | ✅ | ❌ | Multi-agent dialogue scenario | | | conversational_agents/multiagent_debate | ✅ | ❌ | Agents engaging in debates | | **Evaluation** | evaluation/ace_bench | ✅ | ❌ | Benchmarks with ACE Bench | -| **Alias** | alias/ | ✅ | ✅ | Agent application running in sandbox to solve diverse real-world problems | +| **General AI Agent** | alias/ | ✅ | ✅ | Agent application running in sandbox to solve diverse real-world problems | ------ @@ -120,6 +120,18 @@ A powerful multi-agent data processing system that leverages Data-Juicer's 200+ 📖 **Documentation**: [English](data_juicer_agent/README.md) | [中文](data_juicer_agent/README_ZH.md) + +### Alias-Agent + +*Alias-Agent* (short for *Alias*) is designed to serve as an intelligent assistant for tackle diverse and complicated real-world tasks, providing three operational modes for flexible task execution: +- **Simple React**: Employs vanilla reasoning-acting loops to iteratively solve problems and execute tool calls. +- **Planner-Worker**: Uses intelligent planning to decompose complex tasks into manageable subtasks, with dedicated worker agents handling each subtask independently. +- **Built-in Agents**: Leverages specialized agents tailored for specific domains, including *Deep Research Agent* for comprehensive analysis and *Browser-use Agent* for web-based interactions. + +Beyond being a ready-to-use agent, we envision Alias as a foundational template that can be adapted to different scenarios. + +📖 **Documentation**: [English](alias/README.md) | [中文](alias/README_ZH.md) + ------ ## ℹ️ Getting Help diff --git a/README_zh.md b/README_zh.md index 574ab49..f1aaa5d 100644 --- a/README_zh.md +++ b/README_zh.md @@ -102,7 +102,7 @@ AgentScope Runtime 是一个**全面的运行时框架**,主要解决部署和 | | conversational_agents/multiagent_conversation | ✅ | ❌ | 多 Agent 对话场景 | | | conversational_agents/multiagent_debate | ✅ | ❌ | Agent 辩论 | | **评估** | evaluation/ace_bench | ✅ | ❌ | ACE Bench 基准测试 | -| **Alias** | alias/ | ✅ | ✅ | 在沙盒中运行的可以解决真实问题的智能体程序 | +| **通用智能体** | alias/ | ✅ | ✅ | 在沙盒中运行的可以解决真实问题的智能体程序 | --- @@ -120,6 +120,17 @@ AgentScope Runtime 是一个**全面的运行时框架**,主要解决部署和 📖 **文档**:[English](data_juicer_agent/README.md) | [中文](data_juicer_agent/README_ZH.md) +### Alias 智能体 + +*Alias-Agent*(简称 *Alias*)旨在作为一个智能助手来处理多样且复杂的真实世界任务,提供三种操作模式以实现灵活的任务执行: +- **Simple React**:采用经典的推理-行动循环来迭代解决问题并执行工具调用。 +- **Planner-Worker**:使用智能规划将复杂任务分解为可管理的子任务,并由专门的执行智能体独立处理每个子任务。 +- **Built-in Agents**:利用针对特定领域定制的专用智能体,包括用于全面分析的Deep Research Agent和用于基于 Web 交互的Browser-use Agent。 + +除了作为一个即用型智能体,我们也希望 Alias 能够成为一个基础模板,可以迁移到不同的场景。 + +📖 **文档**:[English](alias/README.md) | [中文](alias/README_ZH.md) + --- ## ℹ️ 获取帮助 diff --git a/alias/README.md b/alias/README.md index a8edd38..eacf33e 100644 --- a/alias/README.md +++ b/alias/README.md @@ -6,8 +6,9 @@ ## Project introduction -*Alias-Agent* (short for *Alias*) is an LLM-empowered agent built on [AgentScope](https://github.com/agentscope-ai/agentscope) and [AgentScope-runtime](https://github.com/agentscope-ai/agentscope-runtime/), designed to solve diverse real-world problems. It provides three operational modes for flexible task execution: +*Alias-Agent* (short for *Alias*) is an LLM-empowered agent built on [AgentScope](https://github.com/agentscope-ai/agentscope) and [AgentScope-runtime](https://github.com/agentscope-ai/agentscope-runtime/), designed to serve as an intelligent assistant for responding to user queries. Alias excels at decomposing complicated problems, constructing roadmaps, and applying appropriate strategies to tackle diverse real-world tasks. +Specifically, Alias provides three operational modes for flexible task execution: - **Simple React**: Employs vanilla reasoning-acting loops to iteratively solve problems and execute tool calls. - **Planner-Worker**: Uses intelligent planning to decompose complex tasks into manageable subtasks, with dedicated worker agents handling each subtask independently. - **Built-in Agents**: Leverages specialized agents tailored for specific domains, including *Deep Research Agent* for comprehensive analysis and *Browser-use Agent* for web-based interactions. More details can refer to the following "Basic Usage" section. diff --git a/alias/README_ZH.md b/alias/README_ZH.md new file mode 100644 index 0000000..d229807 --- /dev/null +++ b/alias/README_ZH.md @@ -0,0 +1,109 @@ +
+