lazychih114 commited on
Commit
c413558
Β·
1 Parent(s): ec735ad
This view is limited to 50 files because it contains too many changes. Β  See raw diff
Files changed (50) hide show
  1. README.md +9 -7
  2. {deep-swarm β†’ owl}/.env_template +0 -0
  3. {deep-swarm β†’ owl}/camel/__init__.py +0 -0
  4. {deep-swarm β†’ owl}/camel/__pycache__/__init__.cpython-311.pyc +0 -0
  5. {deep-swarm β†’ owl}/camel/__pycache__/generators.cpython-311.pyc +0 -0
  6. {deep-swarm β†’ owl}/camel/__pycache__/human.cpython-311.pyc +0 -0
  7. {deep-swarm β†’ owl}/camel/__pycache__/logger.cpython-311.pyc +0 -0
  8. {deep-swarm β†’ owl}/camel/agents/__init__.py +0 -0
  9. {deep-swarm β†’ owl}/camel/agents/__pycache__/__init__.cpython-311.pyc +0 -0
  10. {deep-swarm β†’ owl}/camel/agents/__pycache__/base.cpython-311.pyc +0 -0
  11. {deep-swarm β†’ owl}/camel/agents/__pycache__/chat_agent.cpython-311.pyc +0 -0
  12. {deep-swarm β†’ owl}/camel/agents/__pycache__/critic_agent.cpython-311.pyc +0 -0
  13. {deep-swarm β†’ owl}/camel/agents/__pycache__/embodied_agent.cpython-311.pyc +0 -0
  14. {deep-swarm β†’ owl}/camel/agents/__pycache__/knowledge_graph_agent.cpython-311.pyc +0 -0
  15. {deep-swarm β†’ owl}/camel/agents/__pycache__/role_assignment_agent.cpython-311.pyc +0 -0
  16. {deep-swarm β†’ owl}/camel/agents/__pycache__/search_agent.cpython-311.pyc +0 -0
  17. {deep-swarm β†’ owl}/camel/agents/__pycache__/task_agent.cpython-311.pyc +0 -0
  18. {deep-swarm β†’ owl}/camel/agents/base.py +0 -0
  19. {deep-swarm β†’ owl}/camel/agents/chat_agent.py +0 -0
  20. {deep-swarm β†’ owl}/camel/agents/critic_agent.py +0 -0
  21. {deep-swarm β†’ owl}/camel/agents/deductive_reasoner_agent.py +0 -0
  22. {deep-swarm β†’ owl}/camel/agents/embodied_agent.py +0 -0
  23. {deep-swarm β†’ owl}/camel/agents/knowledge_graph_agent.py +0 -0
  24. {deep-swarm β†’ owl}/camel/agents/role_assignment_agent.py +0 -0
  25. {deep-swarm β†’ owl}/camel/agents/search_agent.py +0 -0
  26. {deep-swarm β†’ owl}/camel/agents/task_agent.py +0 -0
  27. {deep-swarm β†’ owl}/camel/agents/tool_agents/__init__.py +0 -0
  28. {deep-swarm β†’ owl}/camel/agents/tool_agents/__pycache__/__init__.cpython-311.pyc +0 -0
  29. {deep-swarm β†’ owl}/camel/agents/tool_agents/__pycache__/base.cpython-311.pyc +0 -0
  30. {deep-swarm β†’ owl}/camel/agents/tool_agents/__pycache__/hugging_face_tool_agent.cpython-311.pyc +0 -0
  31. {deep-swarm β†’ owl}/camel/agents/tool_agents/base.py +0 -0
  32. {deep-swarm β†’ owl}/camel/agents/tool_agents/hugging_face_tool_agent.py +0 -0
  33. {deep-swarm β†’ owl}/camel/benchmarks/__init__.py +0 -0
  34. {deep-swarm β†’ owl}/camel/benchmarks/__pycache__/__init__.cpython-311.pyc +0 -0
  35. {deep-swarm β†’ owl}/camel/benchmarks/__pycache__/base.cpython-311.pyc +0 -0
  36. {deep-swarm β†’ owl}/camel/benchmarks/base.py +0 -0
  37. {deep-swarm β†’ owl}/camel/bots/__init__.py +0 -0
  38. {deep-swarm β†’ owl}/camel/bots/discord_app.py +0 -0
  39. {deep-swarm β†’ owl}/camel/bots/slack/__init__.py +0 -0
  40. {deep-swarm β†’ owl}/camel/bots/slack/models.py +0 -0
  41. {deep-swarm β†’ owl}/camel/bots/slack/slack_app.py +0 -0
  42. {deep-swarm β†’ owl}/camel/bots/telegram_bot.py +0 -0
  43. {deep-swarm β†’ owl}/camel/configs/__init__.py +0 -0
  44. {deep-swarm β†’ owl}/camel/configs/__pycache__/__init__.cpython-311.pyc +0 -0
  45. {deep-swarm β†’ owl}/camel/configs/__pycache__/anthropic_config.cpython-311.pyc +0 -0
  46. {deep-swarm β†’ owl}/camel/configs/__pycache__/base_config.cpython-311.pyc +0 -0
  47. {deep-swarm β†’ owl}/camel/configs/__pycache__/cohere_config.cpython-311.pyc +0 -0
  48. {deep-swarm β†’ owl}/camel/configs/__pycache__/deepseek_config.cpython-311.pyc +0 -0
  49. {deep-swarm β†’ owl}/camel/configs/__pycache__/gemini_config.cpython-311.pyc +0 -0
  50. {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
- 🐝 Deep Swarm: Multi-Agent Collaboration for Task Automation in the Wild<br>
3
  </h1>
4
 
5
- Deep Swarm is a cutting-edge framework for multi-agent collaboration that pushes the boundaries of task automation. Built on top of the Camel Framework, Deep Swarm ranks #1 among open-source frameworks.
 
 
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, Deep Swarm enables more natural, efficient, and robust task automation across diverse domains.
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 deepswarm python=3.11
23
- $ conda activate deepswarm
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 in GAIA. You can check the `run_gaia_roleplaying.py` file and run the following command:
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