lazychih114
commited on
Commit
Β·
c413558
1
Parent(s):
ec735ad
update
Browse filesThis view is limited to 50 files because it contains too many changes. Β
See raw diff
- README.md +9 -7
- {deep-swarm β owl}/.env_template +0 -0
- {deep-swarm β owl}/camel/__init__.py +0 -0
- {deep-swarm β owl}/camel/__pycache__/__init__.cpython-311.pyc +0 -0
- {deep-swarm β owl}/camel/__pycache__/generators.cpython-311.pyc +0 -0
- {deep-swarm β owl}/camel/__pycache__/human.cpython-311.pyc +0 -0
- {deep-swarm β owl}/camel/__pycache__/logger.cpython-311.pyc +0 -0
- {deep-swarm β owl}/camel/agents/__init__.py +0 -0
- {deep-swarm β owl}/camel/agents/__pycache__/__init__.cpython-311.pyc +0 -0
- {deep-swarm β owl}/camel/agents/__pycache__/base.cpython-311.pyc +0 -0
- {deep-swarm β owl}/camel/agents/__pycache__/chat_agent.cpython-311.pyc +0 -0
- {deep-swarm β owl}/camel/agents/__pycache__/critic_agent.cpython-311.pyc +0 -0
- {deep-swarm β owl}/camel/agents/__pycache__/embodied_agent.cpython-311.pyc +0 -0
- {deep-swarm β owl}/camel/agents/__pycache__/knowledge_graph_agent.cpython-311.pyc +0 -0
- {deep-swarm β owl}/camel/agents/__pycache__/role_assignment_agent.cpython-311.pyc +0 -0
- {deep-swarm β owl}/camel/agents/__pycache__/search_agent.cpython-311.pyc +0 -0
- {deep-swarm β owl}/camel/agents/__pycache__/task_agent.cpython-311.pyc +0 -0
- {deep-swarm β owl}/camel/agents/base.py +0 -0
- {deep-swarm β owl}/camel/agents/chat_agent.py +0 -0
- {deep-swarm β owl}/camel/agents/critic_agent.py +0 -0
- {deep-swarm β owl}/camel/agents/deductive_reasoner_agent.py +0 -0
- {deep-swarm β owl}/camel/agents/embodied_agent.py +0 -0
- {deep-swarm β owl}/camel/agents/knowledge_graph_agent.py +0 -0
- {deep-swarm β owl}/camel/agents/role_assignment_agent.py +0 -0
- {deep-swarm β owl}/camel/agents/search_agent.py +0 -0
- {deep-swarm β owl}/camel/agents/task_agent.py +0 -0
- {deep-swarm β owl}/camel/agents/tool_agents/__init__.py +0 -0
- {deep-swarm β owl}/camel/agents/tool_agents/__pycache__/__init__.cpython-311.pyc +0 -0
- {deep-swarm β owl}/camel/agents/tool_agents/__pycache__/base.cpython-311.pyc +0 -0
- {deep-swarm β owl}/camel/agents/tool_agents/__pycache__/hugging_face_tool_agent.cpython-311.pyc +0 -0
- {deep-swarm β owl}/camel/agents/tool_agents/base.py +0 -0
- {deep-swarm β owl}/camel/agents/tool_agents/hugging_face_tool_agent.py +0 -0
- {deep-swarm β owl}/camel/benchmarks/__init__.py +0 -0
- {deep-swarm β owl}/camel/benchmarks/__pycache__/__init__.cpython-311.pyc +0 -0
- {deep-swarm β owl}/camel/benchmarks/__pycache__/base.cpython-311.pyc +0 -0
- {deep-swarm β owl}/camel/benchmarks/base.py +0 -0
- {deep-swarm β owl}/camel/bots/__init__.py +0 -0
- {deep-swarm β owl}/camel/bots/discord_app.py +0 -0
- {deep-swarm β owl}/camel/bots/slack/__init__.py +0 -0
- {deep-swarm β owl}/camel/bots/slack/models.py +0 -0
- {deep-swarm β owl}/camel/bots/slack/slack_app.py +0 -0
- {deep-swarm β owl}/camel/bots/telegram_bot.py +0 -0
- {deep-swarm β owl}/camel/configs/__init__.py +0 -0
- {deep-swarm β owl}/camel/configs/__pycache__/__init__.cpython-311.pyc +0 -0
- {deep-swarm β owl}/camel/configs/__pycache__/anthropic_config.cpython-311.pyc +0 -0
- {deep-swarm β owl}/camel/configs/__pycache__/base_config.cpython-311.pyc +0 -0
- {deep-swarm β owl}/camel/configs/__pycache__/cohere_config.cpython-311.pyc +0 -0
- {deep-swarm β owl}/camel/configs/__pycache__/deepseek_config.cpython-311.pyc +0 -0
- {deep-swarm β owl}/camel/configs/__pycache__/gemini_config.cpython-311.pyc +0 -0
- {deep-swarm β owl}/camel/configs/__pycache__/groq_config.cpython-311.pyc +0 -0
README.md
CHANGED
@@ -1,12 +1,14 @@
|
|
1 |
<h1 align="center">
|
2 |
-
|
3 |
</h1>
|
4 |
|
5 |
-
|
|
|
|
|
6 |
|
7 |
-
Our vision is to revolutionize how AI agents collaborate to solve real-world tasks. By leveraging role-playing mechanisms and dynamic agent interactions,
|
8 |
|
9 |
-
# Key Features
|
10 |
|
11 |
# Quick Start
|
12 |
|
@@ -19,8 +21,8 @@ $ git clone xxx
|
|
19 |
2. **Set up Python Environment:**
|
20 |
|
21 |
```bash
|
22 |
-
$ conda create -n
|
23 |
-
$ conda activate
|
24 |
```
|
25 |
|
26 |
3. **Install Dependencies:**
|
@@ -37,7 +39,7 @@ $ pip install -r requirements.txt
|
|
37 |
$ python run.py
|
38 |
```
|
39 |
|
40 |
-
Additionally, We have provided a script to reproduce the results
|
41 |
|
42 |
```bash
|
43 |
$ python run_gaia_roleplaying.py
|
|
|
1 |
<h1 align="center">
|
2 |
+
π¦ OWL: Towards General Multi-Agent Assistant for Real-World Task Automation
|
3 |
</h1>
|
4 |
|
5 |
+
π¦ OWL is a cutting-edge framework for multi-agent collaboration that pushes the boundaries of task automation.
|
6 |
+
Built on top of the [Camel-AI Framework](https://github.com/camel-ai/camel).
|
7 |
+
OWL ranks #1 among open-source frameworks on GAIA benchmark.
|
8 |
|
9 |
+
Our vision is to revolutionize how AI agents collaborate to solve real-world tasks. By leveraging role-playing mechanisms and dynamic agent interactions, OWL enables more natural, efficient, and robust task automation across diverse domains.
|
10 |
|
11 |
+
<!-- # Key Features -->
|
12 |
|
13 |
# Quick Start
|
14 |
|
|
|
21 |
2. **Set up Python Environment:**
|
22 |
|
23 |
```bash
|
24 |
+
$ conda create -n owl python=3.11
|
25 |
+
$ conda activate owl
|
26 |
```
|
27 |
|
28 |
3. **Install Dependencies:**
|
|
|
39 |
$ python run.py
|
40 |
```
|
41 |
|
42 |
+
Additionally, We have provided a script to reproduce the results on GAIA. You can check the `run_gaia_roleplaying.py` file and run the following command:
|
43 |
|
44 |
```bash
|
45 |
$ python run_gaia_roleplaying.py
|
{deep-swarm β owl}/.env_template
RENAMED
File without changes
|
{deep-swarm β owl}/camel/__init__.py
RENAMED
File without changes
|
{deep-swarm β owl}/camel/__pycache__/__init__.cpython-311.pyc
RENAMED
File without changes
|
{deep-swarm β owl}/camel/__pycache__/generators.cpython-311.pyc
RENAMED
File without changes
|
{deep-swarm β owl}/camel/__pycache__/human.cpython-311.pyc
RENAMED
File without changes
|
{deep-swarm β owl}/camel/__pycache__/logger.cpython-311.pyc
RENAMED
File without changes
|
{deep-swarm β owl}/camel/agents/__init__.py
RENAMED
File without changes
|
{deep-swarm β owl}/camel/agents/__pycache__/__init__.cpython-311.pyc
RENAMED
File without changes
|
{deep-swarm β owl}/camel/agents/__pycache__/base.cpython-311.pyc
RENAMED
File without changes
|
{deep-swarm β owl}/camel/agents/__pycache__/chat_agent.cpython-311.pyc
RENAMED
File without changes
|
{deep-swarm β owl}/camel/agents/__pycache__/critic_agent.cpython-311.pyc
RENAMED
File without changes
|
{deep-swarm β owl}/camel/agents/__pycache__/embodied_agent.cpython-311.pyc
RENAMED
File without changes
|
{deep-swarm β owl}/camel/agents/__pycache__/knowledge_graph_agent.cpython-311.pyc
RENAMED
File without changes
|
{deep-swarm β owl}/camel/agents/__pycache__/role_assignment_agent.cpython-311.pyc
RENAMED
File without changes
|
{deep-swarm β owl}/camel/agents/__pycache__/search_agent.cpython-311.pyc
RENAMED
File without changes
|
{deep-swarm β owl}/camel/agents/__pycache__/task_agent.cpython-311.pyc
RENAMED
File without changes
|
{deep-swarm β owl}/camel/agents/base.py
RENAMED
File without changes
|
{deep-swarm β owl}/camel/agents/chat_agent.py
RENAMED
File without changes
|
{deep-swarm β owl}/camel/agents/critic_agent.py
RENAMED
File without changes
|
{deep-swarm β owl}/camel/agents/deductive_reasoner_agent.py
RENAMED
File without changes
|
{deep-swarm β owl}/camel/agents/embodied_agent.py
RENAMED
File without changes
|
{deep-swarm β owl}/camel/agents/knowledge_graph_agent.py
RENAMED
File without changes
|
{deep-swarm β owl}/camel/agents/role_assignment_agent.py
RENAMED
File without changes
|
{deep-swarm β owl}/camel/agents/search_agent.py
RENAMED
File without changes
|
{deep-swarm β owl}/camel/agents/task_agent.py
RENAMED
File without changes
|
{deep-swarm β owl}/camel/agents/tool_agents/__init__.py
RENAMED
File without changes
|
{deep-swarm β owl}/camel/agents/tool_agents/__pycache__/__init__.cpython-311.pyc
RENAMED
File without changes
|
{deep-swarm β owl}/camel/agents/tool_agents/__pycache__/base.cpython-311.pyc
RENAMED
File without changes
|
{deep-swarm β owl}/camel/agents/tool_agents/__pycache__/hugging_face_tool_agent.cpython-311.pyc
RENAMED
File without changes
|
{deep-swarm β owl}/camel/agents/tool_agents/base.py
RENAMED
File without changes
|
{deep-swarm β owl}/camel/agents/tool_agents/hugging_face_tool_agent.py
RENAMED
File without changes
|
{deep-swarm β owl}/camel/benchmarks/__init__.py
RENAMED
File without changes
|
{deep-swarm β owl}/camel/benchmarks/__pycache__/__init__.cpython-311.pyc
RENAMED
File without changes
|
{deep-swarm β owl}/camel/benchmarks/__pycache__/base.cpython-311.pyc
RENAMED
File without changes
|
{deep-swarm β owl}/camel/benchmarks/base.py
RENAMED
File without changes
|
{deep-swarm β owl}/camel/bots/__init__.py
RENAMED
File without changes
|
{deep-swarm β owl}/camel/bots/discord_app.py
RENAMED
File without changes
|
{deep-swarm β owl}/camel/bots/slack/__init__.py
RENAMED
File without changes
|
{deep-swarm β owl}/camel/bots/slack/models.py
RENAMED
File without changes
|
{deep-swarm β owl}/camel/bots/slack/slack_app.py
RENAMED
File without changes
|
{deep-swarm β owl}/camel/bots/telegram_bot.py
RENAMED
File without changes
|
{deep-swarm β owl}/camel/configs/__init__.py
RENAMED
File without changes
|
{deep-swarm β owl}/camel/configs/__pycache__/__init__.cpython-311.pyc
RENAMED
File without changes
|
{deep-swarm β owl}/camel/configs/__pycache__/anthropic_config.cpython-311.pyc
RENAMED
File without changes
|
{deep-swarm β owl}/camel/configs/__pycache__/base_config.cpython-311.pyc
RENAMED
File without changes
|
{deep-swarm β owl}/camel/configs/__pycache__/cohere_config.cpython-311.pyc
RENAMED
File without changes
|
{deep-swarm β owl}/camel/configs/__pycache__/deepseek_config.cpython-311.pyc
RENAMED
File without changes
|
{deep-swarm β owl}/camel/configs/__pycache__/gemini_config.cpython-311.pyc
RENAMED
File without changes
|
{deep-swarm β owl}/camel/configs/__pycache__/groq_config.cpython-311.pyc
RENAMED
File without changes
|