@@ -6,7 +6,7 @@ AgentMesh is a **Multi-Agent platform** for AI agents building, providing a fram
66task planning, and autonomous decision-making. Build your agent team quickly and solve complex tasks through agent
77collaboration.
88
9- # Overview
9+ ## Overview
1010
1111AgentMesh uses a modular layered design for flexible and extensible multi-agent systems:
1212
@@ -18,15 +18,15 @@ AgentMesh uses a modular layered design for flexible and extensible multi-agent
1818 protocol support coming soon for even more tool extensions.
1919- ** Multi-Platform** : Run via CLI, Docker, or SDK. WebUI and integration with common software coming soon.
2020
21- # Quick Start
21+ ## Quick Start
2222
2323Choose one of these three ways to build and run your agent team:
2424
25- ## 1. Terminal
25+ ### 1. Terminal
2626
2727Run a multi-agent team from your command line:
2828
29- ### 1.1 Installation
29+ #### 1.1 Installation
3030
3131** Requirements:** Linux, MacOS, or Windows with Python installed.
3232
@@ -53,7 +53,7 @@ pip install browser-use
5353playwright install
5454```
5555
56- ### 1.2 Configuration
56+ #### 1.2 Configuration
5757
5858Edit the ` config.yaml ` file with your model settings and agent configurations:
5959
@@ -66,7 +66,7 @@ Add your model `api_key` - AgentMesh supports `openai`, `claude`, `deepseek`, `q
6666> The template includes a pre-configured ` software_team ` with three roles (PM, architect, engineer) that collaborate on
6767> software development tasks.
6868
69- ### 1.3 Execution
69+ #### 1.3 Execution
7070
7171``` bash
7272python main.py -l # List available agent teams
@@ -75,7 +75,7 @@ python main.py -t software_team # Run the 'software_team'
7575
7676Enter your requirements in the interactive prompt to begin.
7777
78- ## 2. SDK
78+ ### 2. SDK
7979
8080Use the AgentMesh SDK to build custom agent teams programmatically:
8181
@@ -106,13 +106,13 @@ team.add(Agent(name="Developer", description="Implements code based on requireme
106106result = team.run(task = " Write a Snake client game" )
107107```
108108
109- ## 3. Web Service
109+ ### 3. Web Service
110110
111111Coming soon
112112
113- # Details
113+ ## Details
114114
115- ## Core Concepts
115+ ### Core Concepts
116116
117117- ** Agent** : Autonomous decision-making unit with specific roles and capabilities, configurable with models, system
118118 prompts, tools, and decision logic.
@@ -122,22 +122,22 @@ Coming soon
122122- ** Context** : Shared information including team details, task content, and execution history.
123123- ** LLMModel** : Large language model interface supporting various mainstream LLMs through a unified API.
124124
125- ## Supported Models
125+ ### Supported Models
126126
127127- ** OpenAI** : GPT series models, recommended: ` gpt-4.1 ` , ` gpt-4o ` , ` gpt-4.1-mini `
128128- ** Claude** : Claude series models, recommended: ` claude-3-7-sonnet-latest `
129129- ** DeepSeek** : DeepSeek series models, recommended: ` deepseek-chat `
130130- ** Ollama** : Local open-source models (coming soon)
131131
132- ## Built-in Tools
132+ ### Built-in Tools
133133
134134- ** calculator** : Mathematical calculation tool supporting complex expression evaluation
135135- ** current_time** : Current time retrieval tool solving model time awareness issues
136136- ** browser** : Web browsing tool based on browser-use, supporting web access, content extraction, and interaction
137137- ** google_search** : Search engine tool for retrieving up-to-date information
138138- ** MCP** : Multi-modal content processing tool supporting image recognition and generation (coming soon)
139139
140- # Contribution
140+ ## Contribution
141141
142142Star this project to receive notifications about updates.
143143
0 commit comments