diff --git a/README.md b/README.md index e9cb62759f900e0eb4b1a3842009ba4f0c2be9aa..842611fafd6d08cf229918100c3e895907f0f462 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,14 @@

- 🐝 Deep Swarm: Multi-Agent Collaboration for Task Automation in the Wild
+ 🦉 OWL: Towards General Multi-Agent Assistant for Real-World Task Automation

-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. +🦉 OWL is a cutting-edge framework for multi-agent collaboration that pushes the boundaries of task automation. +Built on top of the [Camel-AI Framework](https://github.com/camel-ai/camel). +OWL ranks #1 among open-source frameworks on GAIA benchmark. -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. +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. -# Key Features + # Quick Start @@ -19,8 +21,8 @@ $ git clone xxx 2. **Set up Python Environment:** ```bash -$ conda create -n deepswarm python=3.11 -$ conda activate deepswarm +$ conda create -n owl python=3.11 +$ conda activate owl ``` 3. **Install Dependencies:** @@ -37,7 +39,7 @@ $ pip install -r requirements.txt $ python run.py ``` -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: +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: ```bash $ python run_gaia_roleplaying.py diff --git a/deep-swarm/.env_template b/owl/.env_template similarity index 100% rename from deep-swarm/.env_template rename to owl/.env_template diff --git a/deep-swarm/camel/__init__.py b/owl/camel/__init__.py similarity index 100% rename from deep-swarm/camel/__init__.py rename to owl/camel/__init__.py diff --git a/deep-swarm/camel/__pycache__/__init__.cpython-311.pyc b/owl/camel/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/__pycache__/__init__.cpython-311.pyc rename to owl/camel/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/__pycache__/generators.cpython-311.pyc b/owl/camel/__pycache__/generators.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/__pycache__/generators.cpython-311.pyc rename to owl/camel/__pycache__/generators.cpython-311.pyc diff --git a/deep-swarm/camel/__pycache__/human.cpython-311.pyc b/owl/camel/__pycache__/human.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/__pycache__/human.cpython-311.pyc rename to owl/camel/__pycache__/human.cpython-311.pyc diff --git a/deep-swarm/camel/__pycache__/logger.cpython-311.pyc b/owl/camel/__pycache__/logger.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/__pycache__/logger.cpython-311.pyc rename to owl/camel/__pycache__/logger.cpython-311.pyc diff --git a/deep-swarm/camel/agents/__init__.py b/owl/camel/agents/__init__.py similarity index 100% rename from deep-swarm/camel/agents/__init__.py rename to owl/camel/agents/__init__.py diff --git a/deep-swarm/camel/agents/__pycache__/__init__.cpython-311.pyc b/owl/camel/agents/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/agents/__pycache__/__init__.cpython-311.pyc rename to owl/camel/agents/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/agents/__pycache__/base.cpython-311.pyc b/owl/camel/agents/__pycache__/base.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/agents/__pycache__/base.cpython-311.pyc rename to owl/camel/agents/__pycache__/base.cpython-311.pyc diff --git a/deep-swarm/camel/agents/__pycache__/chat_agent.cpython-311.pyc b/owl/camel/agents/__pycache__/chat_agent.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/agents/__pycache__/chat_agent.cpython-311.pyc rename to owl/camel/agents/__pycache__/chat_agent.cpython-311.pyc diff --git a/deep-swarm/camel/agents/__pycache__/critic_agent.cpython-311.pyc b/owl/camel/agents/__pycache__/critic_agent.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/agents/__pycache__/critic_agent.cpython-311.pyc rename to owl/camel/agents/__pycache__/critic_agent.cpython-311.pyc diff --git a/deep-swarm/camel/agents/__pycache__/embodied_agent.cpython-311.pyc b/owl/camel/agents/__pycache__/embodied_agent.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/agents/__pycache__/embodied_agent.cpython-311.pyc rename to owl/camel/agents/__pycache__/embodied_agent.cpython-311.pyc diff --git a/deep-swarm/camel/agents/__pycache__/knowledge_graph_agent.cpython-311.pyc b/owl/camel/agents/__pycache__/knowledge_graph_agent.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/agents/__pycache__/knowledge_graph_agent.cpython-311.pyc rename to owl/camel/agents/__pycache__/knowledge_graph_agent.cpython-311.pyc diff --git a/deep-swarm/camel/agents/__pycache__/role_assignment_agent.cpython-311.pyc b/owl/camel/agents/__pycache__/role_assignment_agent.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/agents/__pycache__/role_assignment_agent.cpython-311.pyc rename to owl/camel/agents/__pycache__/role_assignment_agent.cpython-311.pyc diff --git a/deep-swarm/camel/agents/__pycache__/search_agent.cpython-311.pyc b/owl/camel/agents/__pycache__/search_agent.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/agents/__pycache__/search_agent.cpython-311.pyc rename to owl/camel/agents/__pycache__/search_agent.cpython-311.pyc diff --git a/deep-swarm/camel/agents/__pycache__/task_agent.cpython-311.pyc b/owl/camel/agents/__pycache__/task_agent.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/agents/__pycache__/task_agent.cpython-311.pyc rename to owl/camel/agents/__pycache__/task_agent.cpython-311.pyc diff --git a/deep-swarm/camel/agents/base.py b/owl/camel/agents/base.py similarity index 100% rename from deep-swarm/camel/agents/base.py rename to owl/camel/agents/base.py diff --git a/deep-swarm/camel/agents/chat_agent.py b/owl/camel/agents/chat_agent.py similarity index 100% rename from deep-swarm/camel/agents/chat_agent.py rename to owl/camel/agents/chat_agent.py diff --git a/deep-swarm/camel/agents/critic_agent.py b/owl/camel/agents/critic_agent.py similarity index 100% rename from deep-swarm/camel/agents/critic_agent.py rename to owl/camel/agents/critic_agent.py diff --git a/deep-swarm/camel/agents/deductive_reasoner_agent.py b/owl/camel/agents/deductive_reasoner_agent.py similarity index 100% rename from deep-swarm/camel/agents/deductive_reasoner_agent.py rename to owl/camel/agents/deductive_reasoner_agent.py diff --git a/deep-swarm/camel/agents/embodied_agent.py b/owl/camel/agents/embodied_agent.py similarity index 100% rename from deep-swarm/camel/agents/embodied_agent.py rename to owl/camel/agents/embodied_agent.py diff --git a/deep-swarm/camel/agents/knowledge_graph_agent.py b/owl/camel/agents/knowledge_graph_agent.py similarity index 100% rename from deep-swarm/camel/agents/knowledge_graph_agent.py rename to owl/camel/agents/knowledge_graph_agent.py diff --git a/deep-swarm/camel/agents/role_assignment_agent.py b/owl/camel/agents/role_assignment_agent.py similarity index 100% rename from deep-swarm/camel/agents/role_assignment_agent.py rename to owl/camel/agents/role_assignment_agent.py diff --git a/deep-swarm/camel/agents/search_agent.py b/owl/camel/agents/search_agent.py similarity index 100% rename from deep-swarm/camel/agents/search_agent.py rename to owl/camel/agents/search_agent.py diff --git a/deep-swarm/camel/agents/task_agent.py b/owl/camel/agents/task_agent.py similarity index 100% rename from deep-swarm/camel/agents/task_agent.py rename to owl/camel/agents/task_agent.py diff --git a/deep-swarm/camel/agents/tool_agents/__init__.py b/owl/camel/agents/tool_agents/__init__.py similarity index 100% rename from deep-swarm/camel/agents/tool_agents/__init__.py rename to owl/camel/agents/tool_agents/__init__.py diff --git a/deep-swarm/camel/agents/tool_agents/__pycache__/__init__.cpython-311.pyc b/owl/camel/agents/tool_agents/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/agents/tool_agents/__pycache__/__init__.cpython-311.pyc rename to owl/camel/agents/tool_agents/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/agents/tool_agents/__pycache__/base.cpython-311.pyc b/owl/camel/agents/tool_agents/__pycache__/base.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/agents/tool_agents/__pycache__/base.cpython-311.pyc rename to owl/camel/agents/tool_agents/__pycache__/base.cpython-311.pyc diff --git a/deep-swarm/camel/agents/tool_agents/__pycache__/hugging_face_tool_agent.cpython-311.pyc b/owl/camel/agents/tool_agents/__pycache__/hugging_face_tool_agent.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/agents/tool_agents/__pycache__/hugging_face_tool_agent.cpython-311.pyc rename to owl/camel/agents/tool_agents/__pycache__/hugging_face_tool_agent.cpython-311.pyc diff --git a/deep-swarm/camel/agents/tool_agents/base.py b/owl/camel/agents/tool_agents/base.py similarity index 100% rename from deep-swarm/camel/agents/tool_agents/base.py rename to owl/camel/agents/tool_agents/base.py diff --git a/deep-swarm/camel/agents/tool_agents/hugging_face_tool_agent.py b/owl/camel/agents/tool_agents/hugging_face_tool_agent.py similarity index 100% rename from deep-swarm/camel/agents/tool_agents/hugging_face_tool_agent.py rename to owl/camel/agents/tool_agents/hugging_face_tool_agent.py diff --git a/deep-swarm/camel/benchmarks/__init__.py b/owl/camel/benchmarks/__init__.py similarity index 100% rename from deep-swarm/camel/benchmarks/__init__.py rename to owl/camel/benchmarks/__init__.py diff --git a/deep-swarm/camel/benchmarks/__pycache__/__init__.cpython-311.pyc b/owl/camel/benchmarks/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/benchmarks/__pycache__/__init__.cpython-311.pyc rename to owl/camel/benchmarks/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/benchmarks/__pycache__/base.cpython-311.pyc b/owl/camel/benchmarks/__pycache__/base.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/benchmarks/__pycache__/base.cpython-311.pyc rename to owl/camel/benchmarks/__pycache__/base.cpython-311.pyc diff --git a/deep-swarm/camel/benchmarks/base.py b/owl/camel/benchmarks/base.py similarity index 100% rename from deep-swarm/camel/benchmarks/base.py rename to owl/camel/benchmarks/base.py diff --git a/deep-swarm/camel/bots/__init__.py b/owl/camel/bots/__init__.py similarity index 100% rename from deep-swarm/camel/bots/__init__.py rename to owl/camel/bots/__init__.py diff --git a/deep-swarm/camel/bots/discord_app.py b/owl/camel/bots/discord_app.py similarity index 100% rename from deep-swarm/camel/bots/discord_app.py rename to owl/camel/bots/discord_app.py diff --git a/deep-swarm/camel/bots/slack/__init__.py b/owl/camel/bots/slack/__init__.py similarity index 100% rename from deep-swarm/camel/bots/slack/__init__.py rename to owl/camel/bots/slack/__init__.py diff --git a/deep-swarm/camel/bots/slack/models.py b/owl/camel/bots/slack/models.py similarity index 100% rename from deep-swarm/camel/bots/slack/models.py rename to owl/camel/bots/slack/models.py diff --git a/deep-swarm/camel/bots/slack/slack_app.py b/owl/camel/bots/slack/slack_app.py similarity index 100% rename from deep-swarm/camel/bots/slack/slack_app.py rename to owl/camel/bots/slack/slack_app.py diff --git a/deep-swarm/camel/bots/telegram_bot.py b/owl/camel/bots/telegram_bot.py similarity index 100% rename from deep-swarm/camel/bots/telegram_bot.py rename to owl/camel/bots/telegram_bot.py diff --git a/deep-swarm/camel/configs/__init__.py b/owl/camel/configs/__init__.py similarity index 100% rename from deep-swarm/camel/configs/__init__.py rename to owl/camel/configs/__init__.py diff --git a/deep-swarm/camel/configs/__pycache__/__init__.cpython-311.pyc b/owl/camel/configs/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/configs/__pycache__/__init__.cpython-311.pyc rename to owl/camel/configs/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/configs/__pycache__/anthropic_config.cpython-311.pyc b/owl/camel/configs/__pycache__/anthropic_config.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/configs/__pycache__/anthropic_config.cpython-311.pyc rename to owl/camel/configs/__pycache__/anthropic_config.cpython-311.pyc diff --git a/deep-swarm/camel/configs/__pycache__/base_config.cpython-311.pyc b/owl/camel/configs/__pycache__/base_config.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/configs/__pycache__/base_config.cpython-311.pyc rename to owl/camel/configs/__pycache__/base_config.cpython-311.pyc diff --git a/deep-swarm/camel/configs/__pycache__/cohere_config.cpython-311.pyc b/owl/camel/configs/__pycache__/cohere_config.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/configs/__pycache__/cohere_config.cpython-311.pyc rename to owl/camel/configs/__pycache__/cohere_config.cpython-311.pyc diff --git a/deep-swarm/camel/configs/__pycache__/deepseek_config.cpython-311.pyc b/owl/camel/configs/__pycache__/deepseek_config.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/configs/__pycache__/deepseek_config.cpython-311.pyc rename to owl/camel/configs/__pycache__/deepseek_config.cpython-311.pyc diff --git a/deep-swarm/camel/configs/__pycache__/gemini_config.cpython-311.pyc b/owl/camel/configs/__pycache__/gemini_config.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/configs/__pycache__/gemini_config.cpython-311.pyc rename to owl/camel/configs/__pycache__/gemini_config.cpython-311.pyc diff --git a/deep-swarm/camel/configs/__pycache__/groq_config.cpython-311.pyc b/owl/camel/configs/__pycache__/groq_config.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/configs/__pycache__/groq_config.cpython-311.pyc rename to owl/camel/configs/__pycache__/groq_config.cpython-311.pyc diff --git a/deep-swarm/camel/configs/__pycache__/litellm_config.cpython-311.pyc b/owl/camel/configs/__pycache__/litellm_config.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/configs/__pycache__/litellm_config.cpython-311.pyc rename to owl/camel/configs/__pycache__/litellm_config.cpython-311.pyc diff --git a/deep-swarm/camel/configs/__pycache__/mistral_config.cpython-311.pyc b/owl/camel/configs/__pycache__/mistral_config.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/configs/__pycache__/mistral_config.cpython-311.pyc rename to owl/camel/configs/__pycache__/mistral_config.cpython-311.pyc diff --git a/deep-swarm/camel/configs/__pycache__/nvidia_config.cpython-311.pyc b/owl/camel/configs/__pycache__/nvidia_config.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/configs/__pycache__/nvidia_config.cpython-311.pyc rename to owl/camel/configs/__pycache__/nvidia_config.cpython-311.pyc diff --git a/deep-swarm/camel/configs/__pycache__/ollama_config.cpython-311.pyc b/owl/camel/configs/__pycache__/ollama_config.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/configs/__pycache__/ollama_config.cpython-311.pyc rename to owl/camel/configs/__pycache__/ollama_config.cpython-311.pyc diff --git a/deep-swarm/camel/configs/__pycache__/openai_config.cpython-311.pyc b/owl/camel/configs/__pycache__/openai_config.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/configs/__pycache__/openai_config.cpython-311.pyc rename to owl/camel/configs/__pycache__/openai_config.cpython-311.pyc diff --git a/deep-swarm/camel/configs/__pycache__/qwen_config.cpython-311.pyc b/owl/camel/configs/__pycache__/qwen_config.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/configs/__pycache__/qwen_config.cpython-311.pyc rename to owl/camel/configs/__pycache__/qwen_config.cpython-311.pyc diff --git a/deep-swarm/camel/configs/__pycache__/reka_config.cpython-311.pyc b/owl/camel/configs/__pycache__/reka_config.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/configs/__pycache__/reka_config.cpython-311.pyc rename to owl/camel/configs/__pycache__/reka_config.cpython-311.pyc diff --git a/deep-swarm/camel/configs/__pycache__/samba_config.cpython-311.pyc b/owl/camel/configs/__pycache__/samba_config.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/configs/__pycache__/samba_config.cpython-311.pyc rename to owl/camel/configs/__pycache__/samba_config.cpython-311.pyc diff --git a/deep-swarm/camel/configs/__pycache__/togetherai_config.cpython-311.pyc b/owl/camel/configs/__pycache__/togetherai_config.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/configs/__pycache__/togetherai_config.cpython-311.pyc rename to owl/camel/configs/__pycache__/togetherai_config.cpython-311.pyc diff --git a/deep-swarm/camel/configs/__pycache__/vllm_config.cpython-311.pyc b/owl/camel/configs/__pycache__/vllm_config.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/configs/__pycache__/vllm_config.cpython-311.pyc rename to owl/camel/configs/__pycache__/vllm_config.cpython-311.pyc diff --git a/deep-swarm/camel/configs/__pycache__/yi_config.cpython-311.pyc b/owl/camel/configs/__pycache__/yi_config.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/configs/__pycache__/yi_config.cpython-311.pyc rename to owl/camel/configs/__pycache__/yi_config.cpython-311.pyc diff --git a/deep-swarm/camel/configs/__pycache__/zhipuai_config.cpython-311.pyc b/owl/camel/configs/__pycache__/zhipuai_config.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/configs/__pycache__/zhipuai_config.cpython-311.pyc rename to owl/camel/configs/__pycache__/zhipuai_config.cpython-311.pyc diff --git a/deep-swarm/camel/configs/anthropic_config.py b/owl/camel/configs/anthropic_config.py similarity index 100% rename from deep-swarm/camel/configs/anthropic_config.py rename to owl/camel/configs/anthropic_config.py diff --git a/deep-swarm/camel/configs/base_config.py b/owl/camel/configs/base_config.py similarity index 100% rename from deep-swarm/camel/configs/base_config.py rename to owl/camel/configs/base_config.py diff --git a/deep-swarm/camel/configs/cohere_config.py b/owl/camel/configs/cohere_config.py similarity index 100% rename from deep-swarm/camel/configs/cohere_config.py rename to owl/camel/configs/cohere_config.py diff --git a/deep-swarm/camel/configs/deepseek_config.py b/owl/camel/configs/deepseek_config.py similarity index 100% rename from deep-swarm/camel/configs/deepseek_config.py rename to owl/camel/configs/deepseek_config.py diff --git a/deep-swarm/camel/configs/gemini_config.py b/owl/camel/configs/gemini_config.py similarity index 100% rename from deep-swarm/camel/configs/gemini_config.py rename to owl/camel/configs/gemini_config.py diff --git a/deep-swarm/camel/configs/groq_config.py b/owl/camel/configs/groq_config.py similarity index 100% rename from deep-swarm/camel/configs/groq_config.py rename to owl/camel/configs/groq_config.py diff --git a/deep-swarm/camel/configs/litellm_config.py b/owl/camel/configs/litellm_config.py similarity index 100% rename from deep-swarm/camel/configs/litellm_config.py rename to owl/camel/configs/litellm_config.py diff --git a/deep-swarm/camel/configs/mistral_config.py b/owl/camel/configs/mistral_config.py similarity index 100% rename from deep-swarm/camel/configs/mistral_config.py rename to owl/camel/configs/mistral_config.py diff --git a/deep-swarm/camel/configs/nvidia_config.py b/owl/camel/configs/nvidia_config.py similarity index 100% rename from deep-swarm/camel/configs/nvidia_config.py rename to owl/camel/configs/nvidia_config.py diff --git a/deep-swarm/camel/configs/ollama_config.py b/owl/camel/configs/ollama_config.py similarity index 100% rename from deep-swarm/camel/configs/ollama_config.py rename to owl/camel/configs/ollama_config.py diff --git a/deep-swarm/camel/configs/openai_config.py b/owl/camel/configs/openai_config.py similarity index 100% rename from deep-swarm/camel/configs/openai_config.py rename to owl/camel/configs/openai_config.py diff --git a/deep-swarm/camel/configs/qwen_config.py b/owl/camel/configs/qwen_config.py similarity index 100% rename from deep-swarm/camel/configs/qwen_config.py rename to owl/camel/configs/qwen_config.py diff --git a/deep-swarm/camel/configs/reka_config.py b/owl/camel/configs/reka_config.py similarity index 100% rename from deep-swarm/camel/configs/reka_config.py rename to owl/camel/configs/reka_config.py diff --git a/deep-swarm/camel/configs/samba_config.py b/owl/camel/configs/samba_config.py similarity index 100% rename from deep-swarm/camel/configs/samba_config.py rename to owl/camel/configs/samba_config.py diff --git a/deep-swarm/camel/configs/togetherai_config.py b/owl/camel/configs/togetherai_config.py similarity index 100% rename from deep-swarm/camel/configs/togetherai_config.py rename to owl/camel/configs/togetherai_config.py diff --git a/deep-swarm/camel/configs/vllm_config.py b/owl/camel/configs/vllm_config.py similarity index 100% rename from deep-swarm/camel/configs/vllm_config.py rename to owl/camel/configs/vllm_config.py diff --git a/deep-swarm/camel/configs/yi_config.py b/owl/camel/configs/yi_config.py similarity index 100% rename from deep-swarm/camel/configs/yi_config.py rename to owl/camel/configs/yi_config.py diff --git a/deep-swarm/camel/configs/zhipuai_config.py b/owl/camel/configs/zhipuai_config.py similarity index 100% rename from deep-swarm/camel/configs/zhipuai_config.py rename to owl/camel/configs/zhipuai_config.py diff --git a/deep-swarm/camel/datahubs/__init__.py b/owl/camel/datahubs/__init__.py similarity index 100% rename from deep-swarm/camel/datahubs/__init__.py rename to owl/camel/datahubs/__init__.py diff --git a/deep-swarm/camel/datahubs/base.py b/owl/camel/datahubs/base.py similarity index 100% rename from deep-swarm/camel/datahubs/base.py rename to owl/camel/datahubs/base.py diff --git a/deep-swarm/camel/datahubs/huggingface.py b/owl/camel/datahubs/huggingface.py similarity index 100% rename from deep-swarm/camel/datahubs/huggingface.py rename to owl/camel/datahubs/huggingface.py diff --git a/deep-swarm/camel/datahubs/models.py b/owl/camel/datahubs/models.py similarity index 100% rename from deep-swarm/camel/datahubs/models.py rename to owl/camel/datahubs/models.py diff --git a/deep-swarm/camel/embeddings/__init__.py b/owl/camel/embeddings/__init__.py similarity index 100% rename from deep-swarm/camel/embeddings/__init__.py rename to owl/camel/embeddings/__init__.py diff --git a/deep-swarm/camel/embeddings/__pycache__/__init__.cpython-311.pyc b/owl/camel/embeddings/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/embeddings/__pycache__/__init__.cpython-311.pyc rename to owl/camel/embeddings/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/embeddings/__pycache__/base.cpython-311.pyc b/owl/camel/embeddings/__pycache__/base.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/embeddings/__pycache__/base.cpython-311.pyc rename to owl/camel/embeddings/__pycache__/base.cpython-311.pyc diff --git a/deep-swarm/camel/embeddings/__pycache__/mistral_embedding.cpython-311.pyc b/owl/camel/embeddings/__pycache__/mistral_embedding.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/embeddings/__pycache__/mistral_embedding.cpython-311.pyc rename to owl/camel/embeddings/__pycache__/mistral_embedding.cpython-311.pyc diff --git a/deep-swarm/camel/embeddings/__pycache__/openai_compatible_embedding.cpython-311.pyc b/owl/camel/embeddings/__pycache__/openai_compatible_embedding.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/embeddings/__pycache__/openai_compatible_embedding.cpython-311.pyc rename to owl/camel/embeddings/__pycache__/openai_compatible_embedding.cpython-311.pyc diff --git a/deep-swarm/camel/embeddings/__pycache__/openai_embedding.cpython-311.pyc b/owl/camel/embeddings/__pycache__/openai_embedding.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/embeddings/__pycache__/openai_embedding.cpython-311.pyc rename to owl/camel/embeddings/__pycache__/openai_embedding.cpython-311.pyc diff --git a/deep-swarm/camel/embeddings/__pycache__/sentence_transformers_embeddings.cpython-311.pyc b/owl/camel/embeddings/__pycache__/sentence_transformers_embeddings.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/embeddings/__pycache__/sentence_transformers_embeddings.cpython-311.pyc rename to owl/camel/embeddings/__pycache__/sentence_transformers_embeddings.cpython-311.pyc diff --git a/deep-swarm/camel/embeddings/__pycache__/vlm_embedding.cpython-311.pyc b/owl/camel/embeddings/__pycache__/vlm_embedding.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/embeddings/__pycache__/vlm_embedding.cpython-311.pyc rename to owl/camel/embeddings/__pycache__/vlm_embedding.cpython-311.pyc diff --git a/deep-swarm/camel/embeddings/base.py b/owl/camel/embeddings/base.py similarity index 100% rename from deep-swarm/camel/embeddings/base.py rename to owl/camel/embeddings/base.py diff --git a/deep-swarm/camel/embeddings/mistral_embedding.py b/owl/camel/embeddings/mistral_embedding.py similarity index 100% rename from deep-swarm/camel/embeddings/mistral_embedding.py rename to owl/camel/embeddings/mistral_embedding.py diff --git a/deep-swarm/camel/embeddings/openai_compatible_embedding.py b/owl/camel/embeddings/openai_compatible_embedding.py similarity index 100% rename from deep-swarm/camel/embeddings/openai_compatible_embedding.py rename to owl/camel/embeddings/openai_compatible_embedding.py diff --git a/deep-swarm/camel/embeddings/openai_embedding.py b/owl/camel/embeddings/openai_embedding.py similarity index 100% rename from deep-swarm/camel/embeddings/openai_embedding.py rename to owl/camel/embeddings/openai_embedding.py diff --git a/deep-swarm/camel/embeddings/sentence_transformers_embeddings.py b/owl/camel/embeddings/sentence_transformers_embeddings.py similarity index 100% rename from deep-swarm/camel/embeddings/sentence_transformers_embeddings.py rename to owl/camel/embeddings/sentence_transformers_embeddings.py diff --git a/deep-swarm/camel/embeddings/vlm_embedding.py b/owl/camel/embeddings/vlm_embedding.py similarity index 100% rename from deep-swarm/camel/embeddings/vlm_embedding.py rename to owl/camel/embeddings/vlm_embedding.py diff --git a/deep-swarm/camel/generators.py b/owl/camel/generators.py similarity index 100% rename from deep-swarm/camel/generators.py rename to owl/camel/generators.py diff --git a/deep-swarm/camel/human.py b/owl/camel/human.py similarity index 100% rename from deep-swarm/camel/human.py rename to owl/camel/human.py diff --git a/deep-swarm/camel/interpreters/__init__.py b/owl/camel/interpreters/__init__.py similarity index 100% rename from deep-swarm/camel/interpreters/__init__.py rename to owl/camel/interpreters/__init__.py diff --git a/deep-swarm/camel/interpreters/__pycache__/__init__.cpython-311.pyc b/owl/camel/interpreters/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/interpreters/__pycache__/__init__.cpython-311.pyc rename to owl/camel/interpreters/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/interpreters/__pycache__/base.cpython-311.pyc b/owl/camel/interpreters/__pycache__/base.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/interpreters/__pycache__/base.cpython-311.pyc rename to owl/camel/interpreters/__pycache__/base.cpython-311.pyc diff --git a/deep-swarm/camel/interpreters/__pycache__/docker_interpreter.cpython-311.pyc b/owl/camel/interpreters/__pycache__/docker_interpreter.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/interpreters/__pycache__/docker_interpreter.cpython-311.pyc rename to owl/camel/interpreters/__pycache__/docker_interpreter.cpython-311.pyc diff --git a/deep-swarm/camel/interpreters/__pycache__/internal_python_interpreter.cpython-311.pyc b/owl/camel/interpreters/__pycache__/internal_python_interpreter.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/interpreters/__pycache__/internal_python_interpreter.cpython-311.pyc rename to owl/camel/interpreters/__pycache__/internal_python_interpreter.cpython-311.pyc diff --git a/deep-swarm/camel/interpreters/__pycache__/interpreter_error.cpython-311.pyc b/owl/camel/interpreters/__pycache__/interpreter_error.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/interpreters/__pycache__/interpreter_error.cpython-311.pyc rename to owl/camel/interpreters/__pycache__/interpreter_error.cpython-311.pyc diff --git a/deep-swarm/camel/interpreters/__pycache__/ipython_interpreter.cpython-311.pyc b/owl/camel/interpreters/__pycache__/ipython_interpreter.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/interpreters/__pycache__/ipython_interpreter.cpython-311.pyc rename to owl/camel/interpreters/__pycache__/ipython_interpreter.cpython-311.pyc diff --git a/deep-swarm/camel/interpreters/__pycache__/subprocess_interpreter.cpython-311.pyc b/owl/camel/interpreters/__pycache__/subprocess_interpreter.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/interpreters/__pycache__/subprocess_interpreter.cpython-311.pyc rename to owl/camel/interpreters/__pycache__/subprocess_interpreter.cpython-311.pyc diff --git a/deep-swarm/camel/interpreters/base.py b/owl/camel/interpreters/base.py similarity index 100% rename from deep-swarm/camel/interpreters/base.py rename to owl/camel/interpreters/base.py diff --git a/deep-swarm/camel/interpreters/docker_interpreter.py b/owl/camel/interpreters/docker_interpreter.py similarity index 100% rename from deep-swarm/camel/interpreters/docker_interpreter.py rename to owl/camel/interpreters/docker_interpreter.py diff --git a/deep-swarm/camel/interpreters/internal_python_interpreter.py b/owl/camel/interpreters/internal_python_interpreter.py similarity index 100% rename from deep-swarm/camel/interpreters/internal_python_interpreter.py rename to owl/camel/interpreters/internal_python_interpreter.py diff --git a/deep-swarm/camel/interpreters/interpreter_error.py b/owl/camel/interpreters/interpreter_error.py similarity index 100% rename from deep-swarm/camel/interpreters/interpreter_error.py rename to owl/camel/interpreters/interpreter_error.py diff --git a/deep-swarm/camel/interpreters/ipython_interpreter.py b/owl/camel/interpreters/ipython_interpreter.py similarity index 100% rename from deep-swarm/camel/interpreters/ipython_interpreter.py rename to owl/camel/interpreters/ipython_interpreter.py diff --git a/deep-swarm/camel/interpreters/subprocess_interpreter.py b/owl/camel/interpreters/subprocess_interpreter.py similarity index 100% rename from deep-swarm/camel/interpreters/subprocess_interpreter.py rename to owl/camel/interpreters/subprocess_interpreter.py diff --git a/deep-swarm/camel/loaders/__init__.py b/owl/camel/loaders/__init__.py similarity index 100% rename from deep-swarm/camel/loaders/__init__.py rename to owl/camel/loaders/__init__.py diff --git a/deep-swarm/camel/loaders/__pycache__/__init__.cpython-311.pyc b/owl/camel/loaders/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/loaders/__pycache__/__init__.cpython-311.pyc rename to owl/camel/loaders/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/loaders/__pycache__/apify_reader.cpython-311.pyc b/owl/camel/loaders/__pycache__/apify_reader.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/loaders/__pycache__/apify_reader.cpython-311.pyc rename to owl/camel/loaders/__pycache__/apify_reader.cpython-311.pyc diff --git a/deep-swarm/camel/loaders/__pycache__/base_io.cpython-311.pyc b/owl/camel/loaders/__pycache__/base_io.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/loaders/__pycache__/base_io.cpython-311.pyc rename to owl/camel/loaders/__pycache__/base_io.cpython-311.pyc diff --git a/deep-swarm/camel/loaders/__pycache__/chunkr_reader.cpython-311.pyc b/owl/camel/loaders/__pycache__/chunkr_reader.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/loaders/__pycache__/chunkr_reader.cpython-311.pyc rename to owl/camel/loaders/__pycache__/chunkr_reader.cpython-311.pyc diff --git a/deep-swarm/camel/loaders/__pycache__/firecrawl_reader.cpython-311.pyc b/owl/camel/loaders/__pycache__/firecrawl_reader.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/loaders/__pycache__/firecrawl_reader.cpython-311.pyc rename to owl/camel/loaders/__pycache__/firecrawl_reader.cpython-311.pyc diff --git a/deep-swarm/camel/loaders/__pycache__/jina_url_reader.cpython-311.pyc b/owl/camel/loaders/__pycache__/jina_url_reader.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/loaders/__pycache__/jina_url_reader.cpython-311.pyc rename to owl/camel/loaders/__pycache__/jina_url_reader.cpython-311.pyc diff --git a/deep-swarm/camel/loaders/__pycache__/unstructured_io.cpython-311.pyc b/owl/camel/loaders/__pycache__/unstructured_io.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/loaders/__pycache__/unstructured_io.cpython-311.pyc rename to owl/camel/loaders/__pycache__/unstructured_io.cpython-311.pyc diff --git a/deep-swarm/camel/loaders/apify_reader.py b/owl/camel/loaders/apify_reader.py similarity index 100% rename from deep-swarm/camel/loaders/apify_reader.py rename to owl/camel/loaders/apify_reader.py diff --git a/deep-swarm/camel/loaders/base_io.py b/owl/camel/loaders/base_io.py similarity index 100% rename from deep-swarm/camel/loaders/base_io.py rename to owl/camel/loaders/base_io.py diff --git a/deep-swarm/camel/loaders/chunkr_reader.py b/owl/camel/loaders/chunkr_reader.py similarity index 100% rename from deep-swarm/camel/loaders/chunkr_reader.py rename to owl/camel/loaders/chunkr_reader.py diff --git a/deep-swarm/camel/loaders/firecrawl_reader.py b/owl/camel/loaders/firecrawl_reader.py similarity index 100% rename from deep-swarm/camel/loaders/firecrawl_reader.py rename to owl/camel/loaders/firecrawl_reader.py diff --git a/deep-swarm/camel/loaders/jina_url_reader.py b/owl/camel/loaders/jina_url_reader.py similarity index 100% rename from deep-swarm/camel/loaders/jina_url_reader.py rename to owl/camel/loaders/jina_url_reader.py diff --git a/deep-swarm/camel/loaders/unstructured_io.py b/owl/camel/loaders/unstructured_io.py similarity index 100% rename from deep-swarm/camel/loaders/unstructured_io.py rename to owl/camel/loaders/unstructured_io.py diff --git a/deep-swarm/camel/logger.py b/owl/camel/logger.py similarity index 100% rename from deep-swarm/camel/logger.py rename to owl/camel/logger.py diff --git a/deep-swarm/camel/memories/__init__.py b/owl/camel/memories/__init__.py similarity index 100% rename from deep-swarm/camel/memories/__init__.py rename to owl/camel/memories/__init__.py diff --git a/deep-swarm/camel/memories/__pycache__/__init__.cpython-311.pyc b/owl/camel/memories/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/memories/__pycache__/__init__.cpython-311.pyc rename to owl/camel/memories/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/memories/__pycache__/agent_memories.cpython-311.pyc b/owl/camel/memories/__pycache__/agent_memories.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/memories/__pycache__/agent_memories.cpython-311.pyc rename to owl/camel/memories/__pycache__/agent_memories.cpython-311.pyc diff --git a/deep-swarm/camel/memories/__pycache__/base.cpython-311.pyc b/owl/camel/memories/__pycache__/base.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/memories/__pycache__/base.cpython-311.pyc rename to owl/camel/memories/__pycache__/base.cpython-311.pyc diff --git a/deep-swarm/camel/memories/__pycache__/records.cpython-311.pyc b/owl/camel/memories/__pycache__/records.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/memories/__pycache__/records.cpython-311.pyc rename to owl/camel/memories/__pycache__/records.cpython-311.pyc diff --git a/deep-swarm/camel/memories/agent_memories.py b/owl/camel/memories/agent_memories.py similarity index 100% rename from deep-swarm/camel/memories/agent_memories.py rename to owl/camel/memories/agent_memories.py diff --git a/deep-swarm/camel/memories/base.py b/owl/camel/memories/base.py similarity index 100% rename from deep-swarm/camel/memories/base.py rename to owl/camel/memories/base.py diff --git a/deep-swarm/camel/memories/blocks/__init__.py b/owl/camel/memories/blocks/__init__.py similarity index 100% rename from deep-swarm/camel/memories/blocks/__init__.py rename to owl/camel/memories/blocks/__init__.py diff --git a/deep-swarm/camel/memories/blocks/__pycache__/__init__.cpython-311.pyc b/owl/camel/memories/blocks/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/memories/blocks/__pycache__/__init__.cpython-311.pyc rename to owl/camel/memories/blocks/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/memories/blocks/__pycache__/chat_history_block.cpython-311.pyc b/owl/camel/memories/blocks/__pycache__/chat_history_block.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/memories/blocks/__pycache__/chat_history_block.cpython-311.pyc rename to owl/camel/memories/blocks/__pycache__/chat_history_block.cpython-311.pyc diff --git a/deep-swarm/camel/memories/blocks/__pycache__/vectordb_block.cpython-311.pyc b/owl/camel/memories/blocks/__pycache__/vectordb_block.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/memories/blocks/__pycache__/vectordb_block.cpython-311.pyc rename to owl/camel/memories/blocks/__pycache__/vectordb_block.cpython-311.pyc diff --git a/deep-swarm/camel/memories/blocks/chat_history_block.py b/owl/camel/memories/blocks/chat_history_block.py similarity index 100% rename from deep-swarm/camel/memories/blocks/chat_history_block.py rename to owl/camel/memories/blocks/chat_history_block.py diff --git a/deep-swarm/camel/memories/blocks/vectordb_block.py b/owl/camel/memories/blocks/vectordb_block.py similarity index 100% rename from deep-swarm/camel/memories/blocks/vectordb_block.py rename to owl/camel/memories/blocks/vectordb_block.py diff --git a/deep-swarm/camel/memories/context_creators/__init__.py b/owl/camel/memories/context_creators/__init__.py similarity index 100% rename from deep-swarm/camel/memories/context_creators/__init__.py rename to owl/camel/memories/context_creators/__init__.py diff --git a/deep-swarm/camel/memories/context_creators/__pycache__/__init__.cpython-311.pyc b/owl/camel/memories/context_creators/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/memories/context_creators/__pycache__/__init__.cpython-311.pyc rename to owl/camel/memories/context_creators/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/memories/context_creators/__pycache__/score_based.cpython-311.pyc b/owl/camel/memories/context_creators/__pycache__/score_based.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/memories/context_creators/__pycache__/score_based.cpython-311.pyc rename to owl/camel/memories/context_creators/__pycache__/score_based.cpython-311.pyc diff --git a/deep-swarm/camel/memories/context_creators/score_based.py b/owl/camel/memories/context_creators/score_based.py similarity index 100% rename from deep-swarm/camel/memories/context_creators/score_based.py rename to owl/camel/memories/context_creators/score_based.py diff --git a/deep-swarm/camel/memories/records.py b/owl/camel/memories/records.py similarity index 100% rename from deep-swarm/camel/memories/records.py rename to owl/camel/memories/records.py diff --git a/deep-swarm/camel/messages/__init__.py b/owl/camel/messages/__init__.py similarity index 100% rename from deep-swarm/camel/messages/__init__.py rename to owl/camel/messages/__init__.py diff --git a/deep-swarm/camel/messages/__pycache__/__init__.cpython-311.pyc b/owl/camel/messages/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/messages/__pycache__/__init__.cpython-311.pyc rename to owl/camel/messages/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/messages/__pycache__/base.cpython-311.pyc b/owl/camel/messages/__pycache__/base.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/messages/__pycache__/base.cpython-311.pyc rename to owl/camel/messages/__pycache__/base.cpython-311.pyc diff --git a/deep-swarm/camel/messages/__pycache__/func_message.cpython-311.pyc b/owl/camel/messages/__pycache__/func_message.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/messages/__pycache__/func_message.cpython-311.pyc rename to owl/camel/messages/__pycache__/func_message.cpython-311.pyc diff --git a/deep-swarm/camel/messages/base.py b/owl/camel/messages/base.py similarity index 100% rename from deep-swarm/camel/messages/base.py rename to owl/camel/messages/base.py diff --git a/deep-swarm/camel/messages/conversion/__init__.py b/owl/camel/messages/conversion/__init__.py similarity index 100% rename from deep-swarm/camel/messages/conversion/__init__.py rename to owl/camel/messages/conversion/__init__.py diff --git a/deep-swarm/camel/messages/conversion/__pycache__/__init__.cpython-311.pyc b/owl/camel/messages/conversion/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/messages/conversion/__pycache__/__init__.cpython-311.pyc rename to owl/camel/messages/conversion/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/messages/conversion/__pycache__/alpaca.cpython-311.pyc b/owl/camel/messages/conversion/__pycache__/alpaca.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/messages/conversion/__pycache__/alpaca.cpython-311.pyc rename to owl/camel/messages/conversion/__pycache__/alpaca.cpython-311.pyc diff --git a/deep-swarm/camel/messages/conversion/__pycache__/conversation_models.cpython-311.pyc b/owl/camel/messages/conversion/__pycache__/conversation_models.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/messages/conversion/__pycache__/conversation_models.cpython-311.pyc rename to owl/camel/messages/conversion/__pycache__/conversation_models.cpython-311.pyc diff --git a/deep-swarm/camel/messages/conversion/alpaca.py b/owl/camel/messages/conversion/alpaca.py similarity index 100% rename from deep-swarm/camel/messages/conversion/alpaca.py rename to owl/camel/messages/conversion/alpaca.py diff --git a/deep-swarm/camel/messages/conversion/conversation_models.py b/owl/camel/messages/conversion/conversation_models.py similarity index 100% rename from deep-swarm/camel/messages/conversion/conversation_models.py rename to owl/camel/messages/conversion/conversation_models.py diff --git a/deep-swarm/camel/messages/conversion/sharegpt/__init__.py b/owl/camel/messages/conversion/sharegpt/__init__.py similarity index 100% rename from deep-swarm/camel/messages/conversion/sharegpt/__init__.py rename to owl/camel/messages/conversion/sharegpt/__init__.py diff --git a/deep-swarm/camel/messages/conversion/sharegpt/__pycache__/__init__.cpython-311.pyc b/owl/camel/messages/conversion/sharegpt/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/messages/conversion/sharegpt/__pycache__/__init__.cpython-311.pyc rename to owl/camel/messages/conversion/sharegpt/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/messages/conversion/sharegpt/__pycache__/function_call_formatter.cpython-311.pyc b/owl/camel/messages/conversion/sharegpt/__pycache__/function_call_formatter.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/messages/conversion/sharegpt/__pycache__/function_call_formatter.cpython-311.pyc rename to owl/camel/messages/conversion/sharegpt/__pycache__/function_call_formatter.cpython-311.pyc diff --git a/deep-swarm/camel/messages/conversion/sharegpt/function_call_formatter.py b/owl/camel/messages/conversion/sharegpt/function_call_formatter.py similarity index 100% rename from deep-swarm/camel/messages/conversion/sharegpt/function_call_formatter.py rename to owl/camel/messages/conversion/sharegpt/function_call_formatter.py diff --git a/deep-swarm/camel/messages/conversion/sharegpt/hermes/__init__.py b/owl/camel/messages/conversion/sharegpt/hermes/__init__.py similarity index 100% rename from deep-swarm/camel/messages/conversion/sharegpt/hermes/__init__.py rename to owl/camel/messages/conversion/sharegpt/hermes/__init__.py diff --git a/deep-swarm/camel/messages/conversion/sharegpt/hermes/__pycache__/__init__.cpython-311.pyc b/owl/camel/messages/conversion/sharegpt/hermes/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/messages/conversion/sharegpt/hermes/__pycache__/__init__.cpython-311.pyc rename to owl/camel/messages/conversion/sharegpt/hermes/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/messages/conversion/sharegpt/hermes/__pycache__/hermes_function_formatter.cpython-311.pyc b/owl/camel/messages/conversion/sharegpt/hermes/__pycache__/hermes_function_formatter.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/messages/conversion/sharegpt/hermes/__pycache__/hermes_function_formatter.cpython-311.pyc rename to owl/camel/messages/conversion/sharegpt/hermes/__pycache__/hermes_function_formatter.cpython-311.pyc diff --git a/deep-swarm/camel/messages/conversion/sharegpt/hermes/hermes_function_formatter.py b/owl/camel/messages/conversion/sharegpt/hermes/hermes_function_formatter.py similarity index 100% rename from deep-swarm/camel/messages/conversion/sharegpt/hermes/hermes_function_formatter.py rename to owl/camel/messages/conversion/sharegpt/hermes/hermes_function_formatter.py diff --git a/deep-swarm/camel/messages/func_message.py b/owl/camel/messages/func_message.py similarity index 100% rename from deep-swarm/camel/messages/func_message.py rename to owl/camel/messages/func_message.py diff --git a/deep-swarm/camel/models/__init__.py b/owl/camel/models/__init__.py similarity index 100% rename from deep-swarm/camel/models/__init__.py rename to owl/camel/models/__init__.py diff --git a/deep-swarm/camel/models/__pycache__/__init__.cpython-311.pyc b/owl/camel/models/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/__init__.cpython-311.pyc rename to owl/camel/models/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/anthropic_model.cpython-311.pyc b/owl/camel/models/__pycache__/anthropic_model.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/anthropic_model.cpython-311.pyc rename to owl/camel/models/__pycache__/anthropic_model.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/azure_openai_model.cpython-311.pyc b/owl/camel/models/__pycache__/azure_openai_model.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/azure_openai_model.cpython-311.pyc rename to owl/camel/models/__pycache__/azure_openai_model.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/base_model.cpython-311.pyc b/owl/camel/models/__pycache__/base_model.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/base_model.cpython-311.pyc rename to owl/camel/models/__pycache__/base_model.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/cohere_model.cpython-311.pyc b/owl/camel/models/__pycache__/cohere_model.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/cohere_model.cpython-311.pyc rename to owl/camel/models/__pycache__/cohere_model.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/deepseek_model.cpython-311.pyc b/owl/camel/models/__pycache__/deepseek_model.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/deepseek_model.cpython-311.pyc rename to owl/camel/models/__pycache__/deepseek_model.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/fish_audio_model.cpython-311.pyc b/owl/camel/models/__pycache__/fish_audio_model.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/fish_audio_model.cpython-311.pyc rename to owl/camel/models/__pycache__/fish_audio_model.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/gemini_model.cpython-311.pyc b/owl/camel/models/__pycache__/gemini_model.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/gemini_model.cpython-311.pyc rename to owl/camel/models/__pycache__/gemini_model.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/groq_model.cpython-311.pyc b/owl/camel/models/__pycache__/groq_model.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/groq_model.cpython-311.pyc rename to owl/camel/models/__pycache__/groq_model.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/litellm_model.cpython-311.pyc b/owl/camel/models/__pycache__/litellm_model.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/litellm_model.cpython-311.pyc rename to owl/camel/models/__pycache__/litellm_model.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/mistral_model.cpython-311.pyc b/owl/camel/models/__pycache__/mistral_model.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/mistral_model.cpython-311.pyc rename to owl/camel/models/__pycache__/mistral_model.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/model_factory.cpython-311.pyc b/owl/camel/models/__pycache__/model_factory.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/model_factory.cpython-311.pyc rename to owl/camel/models/__pycache__/model_factory.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/model_manager.cpython-311.pyc b/owl/camel/models/__pycache__/model_manager.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/model_manager.cpython-311.pyc rename to owl/camel/models/__pycache__/model_manager.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/nemotron_model.cpython-311.pyc b/owl/camel/models/__pycache__/nemotron_model.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/nemotron_model.cpython-311.pyc rename to owl/camel/models/__pycache__/nemotron_model.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/nvidia_model.cpython-311.pyc b/owl/camel/models/__pycache__/nvidia_model.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/nvidia_model.cpython-311.pyc rename to owl/camel/models/__pycache__/nvidia_model.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/ollama_model.cpython-311.pyc b/owl/camel/models/__pycache__/ollama_model.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/ollama_model.cpython-311.pyc rename to owl/camel/models/__pycache__/ollama_model.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/openai_audio_models.cpython-311.pyc b/owl/camel/models/__pycache__/openai_audio_models.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/openai_audio_models.cpython-311.pyc rename to owl/camel/models/__pycache__/openai_audio_models.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/openai_compatible_model.cpython-311.pyc b/owl/camel/models/__pycache__/openai_compatible_model.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/openai_compatible_model.cpython-311.pyc rename to owl/camel/models/__pycache__/openai_compatible_model.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/openai_model.cpython-311.pyc b/owl/camel/models/__pycache__/openai_model.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/openai_model.cpython-311.pyc rename to owl/camel/models/__pycache__/openai_model.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/qwen_model.cpython-311.pyc b/owl/camel/models/__pycache__/qwen_model.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/qwen_model.cpython-311.pyc rename to owl/camel/models/__pycache__/qwen_model.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/reka_model.cpython-311.pyc b/owl/camel/models/__pycache__/reka_model.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/reka_model.cpython-311.pyc rename to owl/camel/models/__pycache__/reka_model.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/samba_model.cpython-311.pyc b/owl/camel/models/__pycache__/samba_model.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/samba_model.cpython-311.pyc rename to owl/camel/models/__pycache__/samba_model.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/stub_model.cpython-311.pyc b/owl/camel/models/__pycache__/stub_model.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/stub_model.cpython-311.pyc rename to owl/camel/models/__pycache__/stub_model.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/togetherai_model.cpython-311.pyc b/owl/camel/models/__pycache__/togetherai_model.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/togetherai_model.cpython-311.pyc rename to owl/camel/models/__pycache__/togetherai_model.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/vllm_model.cpython-311.pyc b/owl/camel/models/__pycache__/vllm_model.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/vllm_model.cpython-311.pyc rename to owl/camel/models/__pycache__/vllm_model.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/yi_model.cpython-311.pyc b/owl/camel/models/__pycache__/yi_model.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/yi_model.cpython-311.pyc rename to owl/camel/models/__pycache__/yi_model.cpython-311.pyc diff --git a/deep-swarm/camel/models/__pycache__/zhipuai_model.cpython-311.pyc b/owl/camel/models/__pycache__/zhipuai_model.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/models/__pycache__/zhipuai_model.cpython-311.pyc rename to owl/camel/models/__pycache__/zhipuai_model.cpython-311.pyc diff --git a/deep-swarm/camel/models/anthropic_model.py b/owl/camel/models/anthropic_model.py similarity index 100% rename from deep-swarm/camel/models/anthropic_model.py rename to owl/camel/models/anthropic_model.py diff --git a/deep-swarm/camel/models/azure_openai_model.py b/owl/camel/models/azure_openai_model.py similarity index 100% rename from deep-swarm/camel/models/azure_openai_model.py rename to owl/camel/models/azure_openai_model.py diff --git a/deep-swarm/camel/models/base_model.py b/owl/camel/models/base_model.py similarity index 100% rename from deep-swarm/camel/models/base_model.py rename to owl/camel/models/base_model.py diff --git a/deep-swarm/camel/models/cohere_model.py b/owl/camel/models/cohere_model.py similarity index 100% rename from deep-swarm/camel/models/cohere_model.py rename to owl/camel/models/cohere_model.py diff --git a/deep-swarm/camel/models/deepseek_model.py b/owl/camel/models/deepseek_model.py similarity index 100% rename from deep-swarm/camel/models/deepseek_model.py rename to owl/camel/models/deepseek_model.py diff --git a/deep-swarm/camel/models/fish_audio_model.py b/owl/camel/models/fish_audio_model.py similarity index 100% rename from deep-swarm/camel/models/fish_audio_model.py rename to owl/camel/models/fish_audio_model.py diff --git a/deep-swarm/camel/models/gemini_model.py b/owl/camel/models/gemini_model.py similarity index 100% rename from deep-swarm/camel/models/gemini_model.py rename to owl/camel/models/gemini_model.py diff --git a/deep-swarm/camel/models/groq_model.py b/owl/camel/models/groq_model.py similarity index 100% rename from deep-swarm/camel/models/groq_model.py rename to owl/camel/models/groq_model.py diff --git a/deep-swarm/camel/models/litellm_model.py b/owl/camel/models/litellm_model.py similarity index 100% rename from deep-swarm/camel/models/litellm_model.py rename to owl/camel/models/litellm_model.py diff --git a/deep-swarm/camel/models/mistral_model.py b/owl/camel/models/mistral_model.py similarity index 100% rename from deep-swarm/camel/models/mistral_model.py rename to owl/camel/models/mistral_model.py diff --git a/deep-swarm/camel/models/model_factory.py b/owl/camel/models/model_factory.py similarity index 100% rename from deep-swarm/camel/models/model_factory.py rename to owl/camel/models/model_factory.py diff --git a/deep-swarm/camel/models/model_manager.py b/owl/camel/models/model_manager.py similarity index 100% rename from deep-swarm/camel/models/model_manager.py rename to owl/camel/models/model_manager.py diff --git a/deep-swarm/camel/models/nemotron_model.py b/owl/camel/models/nemotron_model.py similarity index 100% rename from deep-swarm/camel/models/nemotron_model.py rename to owl/camel/models/nemotron_model.py diff --git a/deep-swarm/camel/models/nvidia_model.py b/owl/camel/models/nvidia_model.py similarity index 100% rename from deep-swarm/camel/models/nvidia_model.py rename to owl/camel/models/nvidia_model.py diff --git a/deep-swarm/camel/models/ollama_model.py b/owl/camel/models/ollama_model.py similarity index 100% rename from deep-swarm/camel/models/ollama_model.py rename to owl/camel/models/ollama_model.py diff --git a/deep-swarm/camel/models/openai_audio_models.py b/owl/camel/models/openai_audio_models.py similarity index 100% rename from deep-swarm/camel/models/openai_audio_models.py rename to owl/camel/models/openai_audio_models.py diff --git a/deep-swarm/camel/models/openai_compatible_model.py b/owl/camel/models/openai_compatible_model.py similarity index 100% rename from deep-swarm/camel/models/openai_compatible_model.py rename to owl/camel/models/openai_compatible_model.py diff --git a/deep-swarm/camel/models/openai_model.py b/owl/camel/models/openai_model.py similarity index 100% rename from deep-swarm/camel/models/openai_model.py rename to owl/camel/models/openai_model.py diff --git a/deep-swarm/camel/models/qwen_model.py b/owl/camel/models/qwen_model.py similarity index 100% rename from deep-swarm/camel/models/qwen_model.py rename to owl/camel/models/qwen_model.py diff --git a/deep-swarm/camel/models/reka_model.py b/owl/camel/models/reka_model.py similarity index 100% rename from deep-swarm/camel/models/reka_model.py rename to owl/camel/models/reka_model.py diff --git a/deep-swarm/camel/models/samba_model.py b/owl/camel/models/samba_model.py similarity index 100% rename from deep-swarm/camel/models/samba_model.py rename to owl/camel/models/samba_model.py diff --git a/deep-swarm/camel/models/stub_model.py b/owl/camel/models/stub_model.py similarity index 100% rename from deep-swarm/camel/models/stub_model.py rename to owl/camel/models/stub_model.py diff --git a/deep-swarm/camel/models/togetherai_model.py b/owl/camel/models/togetherai_model.py similarity index 100% rename from deep-swarm/camel/models/togetherai_model.py rename to owl/camel/models/togetherai_model.py diff --git a/deep-swarm/camel/models/vllm_model.py b/owl/camel/models/vllm_model.py similarity index 100% rename from deep-swarm/camel/models/vllm_model.py rename to owl/camel/models/vllm_model.py diff --git a/deep-swarm/camel/models/yi_model.py b/owl/camel/models/yi_model.py similarity index 100% rename from deep-swarm/camel/models/yi_model.py rename to owl/camel/models/yi_model.py diff --git a/deep-swarm/camel/models/zhipuai_model.py b/owl/camel/models/zhipuai_model.py similarity index 100% rename from deep-swarm/camel/models/zhipuai_model.py rename to owl/camel/models/zhipuai_model.py diff --git a/deep-swarm/camel/personas/__init__.py b/owl/camel/personas/__init__.py similarity index 100% rename from deep-swarm/camel/personas/__init__.py rename to owl/camel/personas/__init__.py diff --git a/deep-swarm/camel/personas/persona.py b/owl/camel/personas/persona.py similarity index 100% rename from deep-swarm/camel/personas/persona.py rename to owl/camel/personas/persona.py diff --git a/deep-swarm/camel/personas/persona_hub.py b/owl/camel/personas/persona_hub.py similarity index 100% rename from deep-swarm/camel/personas/persona_hub.py rename to owl/camel/personas/persona_hub.py diff --git a/deep-swarm/camel/prompts/__init__.py b/owl/camel/prompts/__init__.py similarity index 100% rename from deep-swarm/camel/prompts/__init__.py rename to owl/camel/prompts/__init__.py diff --git a/deep-swarm/camel/prompts/__pycache__/__init__.cpython-311.pyc b/owl/camel/prompts/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/prompts/__pycache__/__init__.cpython-311.pyc rename to owl/camel/prompts/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/prompts/__pycache__/ai_society.cpython-311.pyc b/owl/camel/prompts/__pycache__/ai_society.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/prompts/__pycache__/ai_society.cpython-311.pyc rename to owl/camel/prompts/__pycache__/ai_society.cpython-311.pyc diff --git a/deep-swarm/camel/prompts/__pycache__/base.cpython-311.pyc b/owl/camel/prompts/__pycache__/base.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/prompts/__pycache__/base.cpython-311.pyc rename to owl/camel/prompts/__pycache__/base.cpython-311.pyc diff --git a/deep-swarm/camel/prompts/__pycache__/code.cpython-311.pyc b/owl/camel/prompts/__pycache__/code.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/prompts/__pycache__/code.cpython-311.pyc rename to owl/camel/prompts/__pycache__/code.cpython-311.pyc diff --git a/deep-swarm/camel/prompts/__pycache__/evaluation.cpython-311.pyc b/owl/camel/prompts/__pycache__/evaluation.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/prompts/__pycache__/evaluation.cpython-311.pyc rename to owl/camel/prompts/__pycache__/evaluation.cpython-311.pyc diff --git a/deep-swarm/camel/prompts/__pycache__/generate_text_embedding_data.cpython-311.pyc b/owl/camel/prompts/__pycache__/generate_text_embedding_data.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/prompts/__pycache__/generate_text_embedding_data.cpython-311.pyc rename to owl/camel/prompts/__pycache__/generate_text_embedding_data.cpython-311.pyc diff --git a/deep-swarm/camel/prompts/__pycache__/image_craft.cpython-311.pyc b/owl/camel/prompts/__pycache__/image_craft.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/prompts/__pycache__/image_craft.cpython-311.pyc rename to owl/camel/prompts/__pycache__/image_craft.cpython-311.pyc diff --git a/deep-swarm/camel/prompts/__pycache__/misalignment.cpython-311.pyc b/owl/camel/prompts/__pycache__/misalignment.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/prompts/__pycache__/misalignment.cpython-311.pyc rename to owl/camel/prompts/__pycache__/misalignment.cpython-311.pyc diff --git a/deep-swarm/camel/prompts/__pycache__/multi_condition_image_craft.cpython-311.pyc b/owl/camel/prompts/__pycache__/multi_condition_image_craft.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/prompts/__pycache__/multi_condition_image_craft.cpython-311.pyc rename to owl/camel/prompts/__pycache__/multi_condition_image_craft.cpython-311.pyc diff --git a/deep-swarm/camel/prompts/__pycache__/object_recognition.cpython-311.pyc b/owl/camel/prompts/__pycache__/object_recognition.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/prompts/__pycache__/object_recognition.cpython-311.pyc rename to owl/camel/prompts/__pycache__/object_recognition.cpython-311.pyc diff --git a/deep-swarm/camel/prompts/__pycache__/persona_hub.cpython-311.pyc b/owl/camel/prompts/__pycache__/persona_hub.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/prompts/__pycache__/persona_hub.cpython-311.pyc rename to owl/camel/prompts/__pycache__/persona_hub.cpython-311.pyc diff --git a/deep-swarm/camel/prompts/__pycache__/prompt_templates.cpython-311.pyc b/owl/camel/prompts/__pycache__/prompt_templates.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/prompts/__pycache__/prompt_templates.cpython-311.pyc rename to owl/camel/prompts/__pycache__/prompt_templates.cpython-311.pyc diff --git a/deep-swarm/camel/prompts/__pycache__/role_description_prompt_template.cpython-311.pyc b/owl/camel/prompts/__pycache__/role_description_prompt_template.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/prompts/__pycache__/role_description_prompt_template.cpython-311.pyc rename to owl/camel/prompts/__pycache__/role_description_prompt_template.cpython-311.pyc diff --git a/deep-swarm/camel/prompts/__pycache__/solution_extraction.cpython-311.pyc b/owl/camel/prompts/__pycache__/solution_extraction.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/prompts/__pycache__/solution_extraction.cpython-311.pyc rename to owl/camel/prompts/__pycache__/solution_extraction.cpython-311.pyc diff --git a/deep-swarm/camel/prompts/__pycache__/task_prompt_template.cpython-311.pyc b/owl/camel/prompts/__pycache__/task_prompt_template.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/prompts/__pycache__/task_prompt_template.cpython-311.pyc rename to owl/camel/prompts/__pycache__/task_prompt_template.cpython-311.pyc diff --git a/deep-swarm/camel/prompts/__pycache__/translation.cpython-311.pyc b/owl/camel/prompts/__pycache__/translation.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/prompts/__pycache__/translation.cpython-311.pyc rename to owl/camel/prompts/__pycache__/translation.cpython-311.pyc diff --git a/deep-swarm/camel/prompts/__pycache__/video_description_prompt.cpython-311.pyc b/owl/camel/prompts/__pycache__/video_description_prompt.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/prompts/__pycache__/video_description_prompt.cpython-311.pyc rename to owl/camel/prompts/__pycache__/video_description_prompt.cpython-311.pyc diff --git a/deep-swarm/camel/prompts/ai_society.py b/owl/camel/prompts/ai_society.py similarity index 100% rename from deep-swarm/camel/prompts/ai_society.py rename to owl/camel/prompts/ai_society.py diff --git a/deep-swarm/camel/prompts/base.py b/owl/camel/prompts/base.py similarity index 100% rename from deep-swarm/camel/prompts/base.py rename to owl/camel/prompts/base.py diff --git a/deep-swarm/camel/prompts/code.py b/owl/camel/prompts/code.py similarity index 100% rename from deep-swarm/camel/prompts/code.py rename to owl/camel/prompts/code.py diff --git a/deep-swarm/camel/prompts/evaluation.py b/owl/camel/prompts/evaluation.py similarity index 100% rename from deep-swarm/camel/prompts/evaluation.py rename to owl/camel/prompts/evaluation.py diff --git a/deep-swarm/camel/prompts/generate_text_embedding_data.py b/owl/camel/prompts/generate_text_embedding_data.py similarity index 100% rename from deep-swarm/camel/prompts/generate_text_embedding_data.py rename to owl/camel/prompts/generate_text_embedding_data.py diff --git a/deep-swarm/camel/prompts/image_craft.py b/owl/camel/prompts/image_craft.py similarity index 100% rename from deep-swarm/camel/prompts/image_craft.py rename to owl/camel/prompts/image_craft.py diff --git a/deep-swarm/camel/prompts/misalignment.py b/owl/camel/prompts/misalignment.py similarity index 100% rename from deep-swarm/camel/prompts/misalignment.py rename to owl/camel/prompts/misalignment.py diff --git a/deep-swarm/camel/prompts/multi_condition_image_craft.py b/owl/camel/prompts/multi_condition_image_craft.py similarity index 100% rename from deep-swarm/camel/prompts/multi_condition_image_craft.py rename to owl/camel/prompts/multi_condition_image_craft.py diff --git a/deep-swarm/camel/prompts/object_recognition.py b/owl/camel/prompts/object_recognition.py similarity index 100% rename from deep-swarm/camel/prompts/object_recognition.py rename to owl/camel/prompts/object_recognition.py diff --git a/deep-swarm/camel/prompts/persona_hub.py b/owl/camel/prompts/persona_hub.py similarity index 100% rename from deep-swarm/camel/prompts/persona_hub.py rename to owl/camel/prompts/persona_hub.py diff --git a/deep-swarm/camel/prompts/prompt_templates.py b/owl/camel/prompts/prompt_templates.py similarity index 100% rename from deep-swarm/camel/prompts/prompt_templates.py rename to owl/camel/prompts/prompt_templates.py diff --git a/deep-swarm/camel/prompts/role_description_prompt_template.py b/owl/camel/prompts/role_description_prompt_template.py similarity index 100% rename from deep-swarm/camel/prompts/role_description_prompt_template.py rename to owl/camel/prompts/role_description_prompt_template.py diff --git a/deep-swarm/camel/prompts/solution_extraction.py b/owl/camel/prompts/solution_extraction.py similarity index 100% rename from deep-swarm/camel/prompts/solution_extraction.py rename to owl/camel/prompts/solution_extraction.py diff --git a/deep-swarm/camel/prompts/task_prompt_template.py b/owl/camel/prompts/task_prompt_template.py similarity index 100% rename from deep-swarm/camel/prompts/task_prompt_template.py rename to owl/camel/prompts/task_prompt_template.py diff --git a/deep-swarm/camel/prompts/translation.py b/owl/camel/prompts/translation.py similarity index 100% rename from deep-swarm/camel/prompts/translation.py rename to owl/camel/prompts/translation.py diff --git a/deep-swarm/camel/prompts/video_description_prompt.py b/owl/camel/prompts/video_description_prompt.py similarity index 100% rename from deep-swarm/camel/prompts/video_description_prompt.py rename to owl/camel/prompts/video_description_prompt.py diff --git a/deep-swarm/camel/responses/__init__.py b/owl/camel/responses/__init__.py similarity index 100% rename from deep-swarm/camel/responses/__init__.py rename to owl/camel/responses/__init__.py diff --git a/deep-swarm/camel/responses/__pycache__/__init__.cpython-311.pyc b/owl/camel/responses/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/responses/__pycache__/__init__.cpython-311.pyc rename to owl/camel/responses/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/responses/__pycache__/agent_responses.cpython-311.pyc b/owl/camel/responses/__pycache__/agent_responses.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/responses/__pycache__/agent_responses.cpython-311.pyc rename to owl/camel/responses/__pycache__/agent_responses.cpython-311.pyc diff --git a/deep-swarm/camel/responses/agent_responses.py b/owl/camel/responses/agent_responses.py similarity index 100% rename from deep-swarm/camel/responses/agent_responses.py rename to owl/camel/responses/agent_responses.py diff --git a/deep-swarm/camel/retrievers/__init__.py b/owl/camel/retrievers/__init__.py similarity index 100% rename from deep-swarm/camel/retrievers/__init__.py rename to owl/camel/retrievers/__init__.py diff --git a/deep-swarm/camel/retrievers/__pycache__/__init__.cpython-311.pyc b/owl/camel/retrievers/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/retrievers/__pycache__/__init__.cpython-311.pyc rename to owl/camel/retrievers/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/retrievers/__pycache__/auto_retriever.cpython-311.pyc b/owl/camel/retrievers/__pycache__/auto_retriever.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/retrievers/__pycache__/auto_retriever.cpython-311.pyc rename to owl/camel/retrievers/__pycache__/auto_retriever.cpython-311.pyc diff --git a/deep-swarm/camel/retrievers/__pycache__/base.cpython-311.pyc b/owl/camel/retrievers/__pycache__/base.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/retrievers/__pycache__/base.cpython-311.pyc rename to owl/camel/retrievers/__pycache__/base.cpython-311.pyc diff --git a/deep-swarm/camel/retrievers/__pycache__/bm25_retriever.cpython-311.pyc b/owl/camel/retrievers/__pycache__/bm25_retriever.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/retrievers/__pycache__/bm25_retriever.cpython-311.pyc rename to owl/camel/retrievers/__pycache__/bm25_retriever.cpython-311.pyc diff --git a/deep-swarm/camel/retrievers/__pycache__/cohere_rerank_retriever.cpython-311.pyc b/owl/camel/retrievers/__pycache__/cohere_rerank_retriever.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/retrievers/__pycache__/cohere_rerank_retriever.cpython-311.pyc rename to owl/camel/retrievers/__pycache__/cohere_rerank_retriever.cpython-311.pyc diff --git a/deep-swarm/camel/retrievers/__pycache__/vector_retriever.cpython-311.pyc b/owl/camel/retrievers/__pycache__/vector_retriever.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/retrievers/__pycache__/vector_retriever.cpython-311.pyc rename to owl/camel/retrievers/__pycache__/vector_retriever.cpython-311.pyc diff --git a/deep-swarm/camel/retrievers/auto_retriever.py b/owl/camel/retrievers/auto_retriever.py similarity index 100% rename from deep-swarm/camel/retrievers/auto_retriever.py rename to owl/camel/retrievers/auto_retriever.py diff --git a/deep-swarm/camel/retrievers/base.py b/owl/camel/retrievers/base.py similarity index 100% rename from deep-swarm/camel/retrievers/base.py rename to owl/camel/retrievers/base.py diff --git a/deep-swarm/camel/retrievers/bm25_retriever.py b/owl/camel/retrievers/bm25_retriever.py similarity index 100% rename from deep-swarm/camel/retrievers/bm25_retriever.py rename to owl/camel/retrievers/bm25_retriever.py diff --git a/deep-swarm/camel/retrievers/cohere_rerank_retriever.py b/owl/camel/retrievers/cohere_rerank_retriever.py similarity index 100% rename from deep-swarm/camel/retrievers/cohere_rerank_retriever.py rename to owl/camel/retrievers/cohere_rerank_retriever.py diff --git a/deep-swarm/camel/retrievers/graph_auto_retriever.py b/owl/camel/retrievers/graph_auto_retriever.py similarity index 100% rename from deep-swarm/camel/retrievers/graph_auto_retriever.py rename to owl/camel/retrievers/graph_auto_retriever.py diff --git a/deep-swarm/camel/retrievers/vector_retriever.py b/owl/camel/retrievers/vector_retriever.py similarity index 100% rename from deep-swarm/camel/retrievers/vector_retriever.py rename to owl/camel/retrievers/vector_retriever.py diff --git a/deep-swarm/camel/runtime/__init__.py b/owl/camel/runtime/__init__.py similarity index 100% rename from deep-swarm/camel/runtime/__init__.py rename to owl/camel/runtime/__init__.py diff --git a/deep-swarm/camel/runtime/__pycache__/__init__.cpython-311.pyc b/owl/camel/runtime/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/runtime/__pycache__/__init__.cpython-311.pyc rename to owl/camel/runtime/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/runtime/__pycache__/base.cpython-311.pyc b/owl/camel/runtime/__pycache__/base.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/runtime/__pycache__/base.cpython-311.pyc rename to owl/camel/runtime/__pycache__/base.cpython-311.pyc diff --git a/deep-swarm/camel/runtime/__pycache__/configs.cpython-311.pyc b/owl/camel/runtime/__pycache__/configs.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/runtime/__pycache__/configs.cpython-311.pyc rename to owl/camel/runtime/__pycache__/configs.cpython-311.pyc diff --git a/deep-swarm/camel/runtime/__pycache__/docker_runtime.cpython-311.pyc b/owl/camel/runtime/__pycache__/docker_runtime.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/runtime/__pycache__/docker_runtime.cpython-311.pyc rename to owl/camel/runtime/__pycache__/docker_runtime.cpython-311.pyc diff --git a/deep-swarm/camel/runtime/__pycache__/llm_guard_runtime.cpython-311.pyc b/owl/camel/runtime/__pycache__/llm_guard_runtime.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/runtime/__pycache__/llm_guard_runtime.cpython-311.pyc rename to owl/camel/runtime/__pycache__/llm_guard_runtime.cpython-311.pyc diff --git a/deep-swarm/camel/runtime/__pycache__/remote_http_runtime.cpython-311.pyc b/owl/camel/runtime/__pycache__/remote_http_runtime.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/runtime/__pycache__/remote_http_runtime.cpython-311.pyc rename to owl/camel/runtime/__pycache__/remote_http_runtime.cpython-311.pyc diff --git a/deep-swarm/camel/runtime/api.py b/owl/camel/runtime/api.py similarity index 100% rename from deep-swarm/camel/runtime/api.py rename to owl/camel/runtime/api.py diff --git a/deep-swarm/camel/runtime/base.py b/owl/camel/runtime/base.py similarity index 100% rename from deep-swarm/camel/runtime/base.py rename to owl/camel/runtime/base.py diff --git a/deep-swarm/camel/runtime/configs.py b/owl/camel/runtime/configs.py similarity index 100% rename from deep-swarm/camel/runtime/configs.py rename to owl/camel/runtime/configs.py diff --git a/deep-swarm/camel/runtime/docker_runtime.py b/owl/camel/runtime/docker_runtime.py similarity index 100% rename from deep-swarm/camel/runtime/docker_runtime.py rename to owl/camel/runtime/docker_runtime.py diff --git a/deep-swarm/camel/runtime/llm_guard_runtime.py b/owl/camel/runtime/llm_guard_runtime.py similarity index 100% rename from deep-swarm/camel/runtime/llm_guard_runtime.py rename to owl/camel/runtime/llm_guard_runtime.py diff --git a/deep-swarm/camel/runtime/remote_http_runtime.py b/owl/camel/runtime/remote_http_runtime.py similarity index 100% rename from deep-swarm/camel/runtime/remote_http_runtime.py rename to owl/camel/runtime/remote_http_runtime.py diff --git a/deep-swarm/camel/runtime/utils/__init__.py b/owl/camel/runtime/utils/__init__.py similarity index 100% rename from deep-swarm/camel/runtime/utils/__init__.py rename to owl/camel/runtime/utils/__init__.py diff --git a/deep-swarm/camel/runtime/utils/__pycache__/__init__.cpython-311.pyc b/owl/camel/runtime/utils/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/runtime/utils/__pycache__/__init__.cpython-311.pyc rename to owl/camel/runtime/utils/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/runtime/utils/__pycache__/function_risk_toolkit.cpython-311.pyc b/owl/camel/runtime/utils/__pycache__/function_risk_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/runtime/utils/__pycache__/function_risk_toolkit.cpython-311.pyc rename to owl/camel/runtime/utils/__pycache__/function_risk_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/runtime/utils/__pycache__/ignore_risk_toolkit.cpython-311.pyc b/owl/camel/runtime/utils/__pycache__/ignore_risk_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/runtime/utils/__pycache__/ignore_risk_toolkit.cpython-311.pyc rename to owl/camel/runtime/utils/__pycache__/ignore_risk_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/runtime/utils/function_risk_toolkit.py b/owl/camel/runtime/utils/function_risk_toolkit.py similarity index 100% rename from deep-swarm/camel/runtime/utils/function_risk_toolkit.py rename to owl/camel/runtime/utils/function_risk_toolkit.py diff --git a/deep-swarm/camel/runtime/utils/ignore_risk_toolkit.py b/owl/camel/runtime/utils/ignore_risk_toolkit.py similarity index 100% rename from deep-swarm/camel/runtime/utils/ignore_risk_toolkit.py rename to owl/camel/runtime/utils/ignore_risk_toolkit.py diff --git a/deep-swarm/camel/schemas/__init__.py b/owl/camel/schemas/__init__.py similarity index 100% rename from deep-swarm/camel/schemas/__init__.py rename to owl/camel/schemas/__init__.py diff --git a/deep-swarm/camel/schemas/base.py b/owl/camel/schemas/base.py similarity index 100% rename from deep-swarm/camel/schemas/base.py rename to owl/camel/schemas/base.py diff --git a/deep-swarm/camel/schemas/openai_converter.py b/owl/camel/schemas/openai_converter.py similarity index 100% rename from deep-swarm/camel/schemas/openai_converter.py rename to owl/camel/schemas/openai_converter.py diff --git a/deep-swarm/camel/societies/__init__.py b/owl/camel/societies/__init__.py similarity index 100% rename from deep-swarm/camel/societies/__init__.py rename to owl/camel/societies/__init__.py diff --git a/deep-swarm/camel/societies/__pycache__/__init__.cpython-311.pyc b/owl/camel/societies/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/societies/__pycache__/__init__.cpython-311.pyc rename to owl/camel/societies/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/societies/__pycache__/babyagi_playing.cpython-311.pyc b/owl/camel/societies/__pycache__/babyagi_playing.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/societies/__pycache__/babyagi_playing.cpython-311.pyc rename to owl/camel/societies/__pycache__/babyagi_playing.cpython-311.pyc diff --git a/deep-swarm/camel/societies/__pycache__/role_playing.cpython-311.pyc b/owl/camel/societies/__pycache__/role_playing.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/societies/__pycache__/role_playing.cpython-311.pyc rename to owl/camel/societies/__pycache__/role_playing.cpython-311.pyc diff --git a/deep-swarm/camel/societies/babyagi_playing.py b/owl/camel/societies/babyagi_playing.py similarity index 100% rename from deep-swarm/camel/societies/babyagi_playing.py rename to owl/camel/societies/babyagi_playing.py diff --git a/deep-swarm/camel/societies/role_playing.py b/owl/camel/societies/role_playing.py similarity index 100% rename from deep-swarm/camel/societies/role_playing.py rename to owl/camel/societies/role_playing.py diff --git a/deep-swarm/camel/societies/workforce/__init__.py b/owl/camel/societies/workforce/__init__.py similarity index 100% rename from deep-swarm/camel/societies/workforce/__init__.py rename to owl/camel/societies/workforce/__init__.py diff --git a/deep-swarm/camel/societies/workforce/__pycache__/__init__.cpython-311.pyc b/owl/camel/societies/workforce/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/societies/workforce/__pycache__/__init__.cpython-311.pyc rename to owl/camel/societies/workforce/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/societies/workforce/__pycache__/base.cpython-311.pyc b/owl/camel/societies/workforce/__pycache__/base.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/societies/workforce/__pycache__/base.cpython-311.pyc rename to owl/camel/societies/workforce/__pycache__/base.cpython-311.pyc diff --git a/deep-swarm/camel/societies/workforce/__pycache__/prompts.cpython-311.pyc b/owl/camel/societies/workforce/__pycache__/prompts.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/societies/workforce/__pycache__/prompts.cpython-311.pyc rename to owl/camel/societies/workforce/__pycache__/prompts.cpython-311.pyc diff --git a/deep-swarm/camel/societies/workforce/__pycache__/role_playing_worker.cpython-311.pyc b/owl/camel/societies/workforce/__pycache__/role_playing_worker.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/societies/workforce/__pycache__/role_playing_worker.cpython-311.pyc rename to owl/camel/societies/workforce/__pycache__/role_playing_worker.cpython-311.pyc diff --git a/deep-swarm/camel/societies/workforce/__pycache__/single_agent_worker.cpython-311.pyc b/owl/camel/societies/workforce/__pycache__/single_agent_worker.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/societies/workforce/__pycache__/single_agent_worker.cpython-311.pyc rename to owl/camel/societies/workforce/__pycache__/single_agent_worker.cpython-311.pyc diff --git a/deep-swarm/camel/societies/workforce/__pycache__/task_channel.cpython-311.pyc b/owl/camel/societies/workforce/__pycache__/task_channel.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/societies/workforce/__pycache__/task_channel.cpython-311.pyc rename to owl/camel/societies/workforce/__pycache__/task_channel.cpython-311.pyc diff --git a/deep-swarm/camel/societies/workforce/__pycache__/utils.cpython-311.pyc b/owl/camel/societies/workforce/__pycache__/utils.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/societies/workforce/__pycache__/utils.cpython-311.pyc rename to owl/camel/societies/workforce/__pycache__/utils.cpython-311.pyc diff --git a/deep-swarm/camel/societies/workforce/__pycache__/worker.cpython-311.pyc b/owl/camel/societies/workforce/__pycache__/worker.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/societies/workforce/__pycache__/worker.cpython-311.pyc rename to owl/camel/societies/workforce/__pycache__/worker.cpython-311.pyc diff --git a/deep-swarm/camel/societies/workforce/__pycache__/workforce.cpython-311.pyc b/owl/camel/societies/workforce/__pycache__/workforce.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/societies/workforce/__pycache__/workforce.cpython-311.pyc rename to owl/camel/societies/workforce/__pycache__/workforce.cpython-311.pyc diff --git a/deep-swarm/camel/societies/workforce/base.py b/owl/camel/societies/workforce/base.py similarity index 100% rename from deep-swarm/camel/societies/workforce/base.py rename to owl/camel/societies/workforce/base.py diff --git a/deep-swarm/camel/societies/workforce/prompts.py b/owl/camel/societies/workforce/prompts.py similarity index 100% rename from deep-swarm/camel/societies/workforce/prompts.py rename to owl/camel/societies/workforce/prompts.py diff --git a/deep-swarm/camel/societies/workforce/role_playing_worker.py b/owl/camel/societies/workforce/role_playing_worker.py similarity index 100% rename from deep-swarm/camel/societies/workforce/role_playing_worker.py rename to owl/camel/societies/workforce/role_playing_worker.py diff --git a/deep-swarm/camel/societies/workforce/single_agent_worker.py b/owl/camel/societies/workforce/single_agent_worker.py similarity index 100% rename from deep-swarm/camel/societies/workforce/single_agent_worker.py rename to owl/camel/societies/workforce/single_agent_worker.py diff --git a/deep-swarm/camel/societies/workforce/task_channel.py b/owl/camel/societies/workforce/task_channel.py similarity index 100% rename from deep-swarm/camel/societies/workforce/task_channel.py rename to owl/camel/societies/workforce/task_channel.py diff --git a/deep-swarm/camel/societies/workforce/utils.py b/owl/camel/societies/workforce/utils.py similarity index 100% rename from deep-swarm/camel/societies/workforce/utils.py rename to owl/camel/societies/workforce/utils.py diff --git a/deep-swarm/camel/societies/workforce/worker.py b/owl/camel/societies/workforce/worker.py similarity index 100% rename from deep-swarm/camel/societies/workforce/worker.py rename to owl/camel/societies/workforce/worker.py diff --git a/deep-swarm/camel/societies/workforce/workforce.py b/owl/camel/societies/workforce/workforce.py similarity index 100% rename from deep-swarm/camel/societies/workforce/workforce.py rename to owl/camel/societies/workforce/workforce.py diff --git a/deep-swarm/camel/storages/__init__.py b/owl/camel/storages/__init__.py similarity index 100% rename from deep-swarm/camel/storages/__init__.py rename to owl/camel/storages/__init__.py diff --git a/deep-swarm/camel/storages/__pycache__/__init__.cpython-311.pyc b/owl/camel/storages/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/storages/__pycache__/__init__.cpython-311.pyc rename to owl/camel/storages/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/storages/graph_storages/__init__.py b/owl/camel/storages/graph_storages/__init__.py similarity index 100% rename from deep-swarm/camel/storages/graph_storages/__init__.py rename to owl/camel/storages/graph_storages/__init__.py diff --git a/deep-swarm/camel/storages/graph_storages/__pycache__/__init__.cpython-311.pyc b/owl/camel/storages/graph_storages/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/storages/graph_storages/__pycache__/__init__.cpython-311.pyc rename to owl/camel/storages/graph_storages/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/storages/graph_storages/__pycache__/base.cpython-311.pyc b/owl/camel/storages/graph_storages/__pycache__/base.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/storages/graph_storages/__pycache__/base.cpython-311.pyc rename to owl/camel/storages/graph_storages/__pycache__/base.cpython-311.pyc diff --git a/deep-swarm/camel/storages/graph_storages/__pycache__/graph_element.cpython-311.pyc b/owl/camel/storages/graph_storages/__pycache__/graph_element.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/storages/graph_storages/__pycache__/graph_element.cpython-311.pyc rename to owl/camel/storages/graph_storages/__pycache__/graph_element.cpython-311.pyc diff --git a/deep-swarm/camel/storages/graph_storages/__pycache__/nebula_graph.cpython-311.pyc b/owl/camel/storages/graph_storages/__pycache__/nebula_graph.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/storages/graph_storages/__pycache__/nebula_graph.cpython-311.pyc rename to owl/camel/storages/graph_storages/__pycache__/nebula_graph.cpython-311.pyc diff --git a/deep-swarm/camel/storages/graph_storages/__pycache__/neo4j_graph.cpython-311.pyc b/owl/camel/storages/graph_storages/__pycache__/neo4j_graph.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/storages/graph_storages/__pycache__/neo4j_graph.cpython-311.pyc rename to owl/camel/storages/graph_storages/__pycache__/neo4j_graph.cpython-311.pyc diff --git a/deep-swarm/camel/storages/graph_storages/base.py b/owl/camel/storages/graph_storages/base.py similarity index 100% rename from deep-swarm/camel/storages/graph_storages/base.py rename to owl/camel/storages/graph_storages/base.py diff --git a/deep-swarm/camel/storages/graph_storages/graph_element.py b/owl/camel/storages/graph_storages/graph_element.py similarity index 100% rename from deep-swarm/camel/storages/graph_storages/graph_element.py rename to owl/camel/storages/graph_storages/graph_element.py diff --git a/deep-swarm/camel/storages/graph_storages/nebula_graph.py b/owl/camel/storages/graph_storages/nebula_graph.py similarity index 100% rename from deep-swarm/camel/storages/graph_storages/nebula_graph.py rename to owl/camel/storages/graph_storages/nebula_graph.py diff --git a/deep-swarm/camel/storages/graph_storages/neo4j_graph.py b/owl/camel/storages/graph_storages/neo4j_graph.py similarity index 100% rename from deep-swarm/camel/storages/graph_storages/neo4j_graph.py rename to owl/camel/storages/graph_storages/neo4j_graph.py diff --git a/deep-swarm/camel/storages/key_value_storages/__init__.py b/owl/camel/storages/key_value_storages/__init__.py similarity index 100% rename from deep-swarm/camel/storages/key_value_storages/__init__.py rename to owl/camel/storages/key_value_storages/__init__.py diff --git a/deep-swarm/camel/storages/key_value_storages/__pycache__/__init__.cpython-311.pyc b/owl/camel/storages/key_value_storages/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/storages/key_value_storages/__pycache__/__init__.cpython-311.pyc rename to owl/camel/storages/key_value_storages/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/storages/key_value_storages/__pycache__/base.cpython-311.pyc b/owl/camel/storages/key_value_storages/__pycache__/base.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/storages/key_value_storages/__pycache__/base.cpython-311.pyc rename to owl/camel/storages/key_value_storages/__pycache__/base.cpython-311.pyc diff --git a/deep-swarm/camel/storages/key_value_storages/__pycache__/in_memory.cpython-311.pyc b/owl/camel/storages/key_value_storages/__pycache__/in_memory.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/storages/key_value_storages/__pycache__/in_memory.cpython-311.pyc rename to owl/camel/storages/key_value_storages/__pycache__/in_memory.cpython-311.pyc diff --git a/deep-swarm/camel/storages/key_value_storages/__pycache__/json.cpython-311.pyc b/owl/camel/storages/key_value_storages/__pycache__/json.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/storages/key_value_storages/__pycache__/json.cpython-311.pyc rename to owl/camel/storages/key_value_storages/__pycache__/json.cpython-311.pyc diff --git a/deep-swarm/camel/storages/key_value_storages/__pycache__/redis.cpython-311.pyc b/owl/camel/storages/key_value_storages/__pycache__/redis.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/storages/key_value_storages/__pycache__/redis.cpython-311.pyc rename to owl/camel/storages/key_value_storages/__pycache__/redis.cpython-311.pyc diff --git a/deep-swarm/camel/storages/key_value_storages/base.py b/owl/camel/storages/key_value_storages/base.py similarity index 100% rename from deep-swarm/camel/storages/key_value_storages/base.py rename to owl/camel/storages/key_value_storages/base.py diff --git a/deep-swarm/camel/storages/key_value_storages/in_memory.py b/owl/camel/storages/key_value_storages/in_memory.py similarity index 100% rename from deep-swarm/camel/storages/key_value_storages/in_memory.py rename to owl/camel/storages/key_value_storages/in_memory.py diff --git a/deep-swarm/camel/storages/key_value_storages/json.py b/owl/camel/storages/key_value_storages/json.py similarity index 100% rename from deep-swarm/camel/storages/key_value_storages/json.py rename to owl/camel/storages/key_value_storages/json.py diff --git a/deep-swarm/camel/storages/key_value_storages/redis.py b/owl/camel/storages/key_value_storages/redis.py similarity index 100% rename from deep-swarm/camel/storages/key_value_storages/redis.py rename to owl/camel/storages/key_value_storages/redis.py diff --git a/deep-swarm/camel/storages/object_storages/__init__.py b/owl/camel/storages/object_storages/__init__.py similarity index 100% rename from deep-swarm/camel/storages/object_storages/__init__.py rename to owl/camel/storages/object_storages/__init__.py diff --git a/deep-swarm/camel/storages/object_storages/amazon_s3.py b/owl/camel/storages/object_storages/amazon_s3.py similarity index 100% rename from deep-swarm/camel/storages/object_storages/amazon_s3.py rename to owl/camel/storages/object_storages/amazon_s3.py diff --git a/deep-swarm/camel/storages/object_storages/azure_blob.py b/owl/camel/storages/object_storages/azure_blob.py similarity index 100% rename from deep-swarm/camel/storages/object_storages/azure_blob.py rename to owl/camel/storages/object_storages/azure_blob.py diff --git a/deep-swarm/camel/storages/object_storages/base.py b/owl/camel/storages/object_storages/base.py similarity index 100% rename from deep-swarm/camel/storages/object_storages/base.py rename to owl/camel/storages/object_storages/base.py diff --git a/deep-swarm/camel/storages/object_storages/google_cloud.py b/owl/camel/storages/object_storages/google_cloud.py similarity index 100% rename from deep-swarm/camel/storages/object_storages/google_cloud.py rename to owl/camel/storages/object_storages/google_cloud.py diff --git a/deep-swarm/camel/storages/vectordb_storages/__init__.py b/owl/camel/storages/vectordb_storages/__init__.py similarity index 100% rename from deep-swarm/camel/storages/vectordb_storages/__init__.py rename to owl/camel/storages/vectordb_storages/__init__.py diff --git a/deep-swarm/camel/storages/vectordb_storages/__pycache__/__init__.cpython-311.pyc b/owl/camel/storages/vectordb_storages/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/storages/vectordb_storages/__pycache__/__init__.cpython-311.pyc rename to owl/camel/storages/vectordb_storages/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/storages/vectordb_storages/__pycache__/base.cpython-311.pyc b/owl/camel/storages/vectordb_storages/__pycache__/base.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/storages/vectordb_storages/__pycache__/base.cpython-311.pyc rename to owl/camel/storages/vectordb_storages/__pycache__/base.cpython-311.pyc diff --git a/deep-swarm/camel/storages/vectordb_storages/__pycache__/milvus.cpython-311.pyc b/owl/camel/storages/vectordb_storages/__pycache__/milvus.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/storages/vectordb_storages/__pycache__/milvus.cpython-311.pyc rename to owl/camel/storages/vectordb_storages/__pycache__/milvus.cpython-311.pyc diff --git a/deep-swarm/camel/storages/vectordb_storages/__pycache__/qdrant.cpython-311.pyc b/owl/camel/storages/vectordb_storages/__pycache__/qdrant.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/storages/vectordb_storages/__pycache__/qdrant.cpython-311.pyc rename to owl/camel/storages/vectordb_storages/__pycache__/qdrant.cpython-311.pyc diff --git a/deep-swarm/camel/storages/vectordb_storages/base.py b/owl/camel/storages/vectordb_storages/base.py similarity index 100% rename from deep-swarm/camel/storages/vectordb_storages/base.py rename to owl/camel/storages/vectordb_storages/base.py diff --git a/deep-swarm/camel/storages/vectordb_storages/milvus.py b/owl/camel/storages/vectordb_storages/milvus.py similarity index 100% rename from deep-swarm/camel/storages/vectordb_storages/milvus.py rename to owl/camel/storages/vectordb_storages/milvus.py diff --git a/deep-swarm/camel/storages/vectordb_storages/qdrant.py b/owl/camel/storages/vectordb_storages/qdrant.py similarity index 100% rename from deep-swarm/camel/storages/vectordb_storages/qdrant.py rename to owl/camel/storages/vectordb_storages/qdrant.py diff --git a/deep-swarm/camel/tasks/__init__.py b/owl/camel/tasks/__init__.py similarity index 100% rename from deep-swarm/camel/tasks/__init__.py rename to owl/camel/tasks/__init__.py diff --git a/deep-swarm/camel/tasks/__pycache__/__init__.cpython-311.pyc b/owl/camel/tasks/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/tasks/__pycache__/__init__.cpython-311.pyc rename to owl/camel/tasks/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/tasks/__pycache__/task.cpython-311.pyc b/owl/camel/tasks/__pycache__/task.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/tasks/__pycache__/task.cpython-311.pyc rename to owl/camel/tasks/__pycache__/task.cpython-311.pyc diff --git a/deep-swarm/camel/tasks/__pycache__/task_prompt.cpython-311.pyc b/owl/camel/tasks/__pycache__/task_prompt.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/tasks/__pycache__/task_prompt.cpython-311.pyc rename to owl/camel/tasks/__pycache__/task_prompt.cpython-311.pyc diff --git a/deep-swarm/camel/tasks/task.py b/owl/camel/tasks/task.py similarity index 100% rename from deep-swarm/camel/tasks/task.py rename to owl/camel/tasks/task.py diff --git a/deep-swarm/camel/tasks/task_prompt.py b/owl/camel/tasks/task_prompt.py similarity index 100% rename from deep-swarm/camel/tasks/task_prompt.py rename to owl/camel/tasks/task_prompt.py diff --git a/deep-swarm/camel/terminators/__init__.py b/owl/camel/terminators/__init__.py similarity index 100% rename from deep-swarm/camel/terminators/__init__.py rename to owl/camel/terminators/__init__.py diff --git a/deep-swarm/camel/terminators/base.py b/owl/camel/terminators/base.py similarity index 100% rename from deep-swarm/camel/terminators/base.py rename to owl/camel/terminators/base.py diff --git a/deep-swarm/camel/terminators/response_terminator.py b/owl/camel/terminators/response_terminator.py similarity index 100% rename from deep-swarm/camel/terminators/response_terminator.py rename to owl/camel/terminators/response_terminator.py diff --git a/deep-swarm/camel/terminators/token_limit_terminator.py b/owl/camel/terminators/token_limit_terminator.py similarity index 100% rename from deep-swarm/camel/terminators/token_limit_terminator.py rename to owl/camel/terminators/token_limit_terminator.py diff --git a/deep-swarm/camel/toolkits/__init__.py b/owl/camel/toolkits/__init__.py similarity index 100% rename from deep-swarm/camel/toolkits/__init__.py rename to owl/camel/toolkits/__init__.py diff --git a/deep-swarm/camel/toolkits/__pycache__/__init__.cpython-311.pyc b/owl/camel/toolkits/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/__init__.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/arxiv_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/arxiv_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/arxiv_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/arxiv_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/ask_news_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/ask_news_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/ask_news_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/ask_news_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/audio_analysis_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/audio_analysis_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/audio_analysis_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/audio_analysis_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/base.cpython-311.pyc b/owl/camel/toolkits/__pycache__/base.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/base.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/base.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/code_execution.cpython-311.pyc b/owl/camel/toolkits/__pycache__/code_execution.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/code_execution.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/code_execution.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/dalle_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/dalle_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/dalle_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/dalle_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/document_processing_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/document_processing_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/document_processing_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/document_processing_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/excel_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/excel_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/excel_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/excel_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/function_tool.cpython-311.pyc b/owl/camel/toolkits/__pycache__/function_tool.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/function_tool.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/function_tool.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/github_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/github_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/github_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/github_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/google_maps_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/google_maps_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/google_maps_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/google_maps_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/google_scholar_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/google_scholar_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/google_scholar_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/google_scholar_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/human_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/human_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/human_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/human_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/image_analysis_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/image_analysis_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/image_analysis_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/image_analysis_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/linkedin_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/linkedin_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/linkedin_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/linkedin_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/math_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/math_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/math_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/math_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/meshy_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/meshy_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/meshy_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/meshy_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/notion_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/notion_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/notion_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/notion_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/open_api_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/open_api_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/open_api_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/open_api_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/reddit_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/reddit_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/reddit_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/reddit_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/retrieval_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/retrieval_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/retrieval_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/retrieval_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/search_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/search_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/search_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/search_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/slack_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/slack_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/slack_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/slack_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/sympy_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/sympy_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/sympy_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/sympy_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/twitter_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/twitter_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/twitter_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/twitter_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/video_analysis_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/video_analysis_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/video_analysis_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/video_analysis_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/video_downloader_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/video_downloader_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/video_downloader_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/video_downloader_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/weather_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/weather_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/weather_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/weather_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/__pycache__/web_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/web_toolkit.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/__pycache__/web_toolkit.cpython-311.pyc rename to owl/camel/toolkits/__pycache__/web_toolkit.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/arxiv_toolkit.py b/owl/camel/toolkits/arxiv_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/arxiv_toolkit.py rename to owl/camel/toolkits/arxiv_toolkit.py diff --git a/deep-swarm/camel/toolkits/ask_news_toolkit.py b/owl/camel/toolkits/ask_news_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/ask_news_toolkit.py rename to owl/camel/toolkits/ask_news_toolkit.py diff --git a/deep-swarm/camel/toolkits/audio_analysis_toolkit.py b/owl/camel/toolkits/audio_analysis_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/audio_analysis_toolkit.py rename to owl/camel/toolkits/audio_analysis_toolkit.py diff --git a/deep-swarm/camel/toolkits/base.py b/owl/camel/toolkits/base.py similarity index 100% rename from deep-swarm/camel/toolkits/base.py rename to owl/camel/toolkits/base.py diff --git a/deep-swarm/camel/toolkits/code_execution.py b/owl/camel/toolkits/code_execution.py similarity index 100% rename from deep-swarm/camel/toolkits/code_execution.py rename to owl/camel/toolkits/code_execution.py diff --git a/deep-swarm/camel/toolkits/dalle_toolkit.py b/owl/camel/toolkits/dalle_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/dalle_toolkit.py rename to owl/camel/toolkits/dalle_toolkit.py diff --git a/deep-swarm/camel/toolkits/data_commons_toolkit.py b/owl/camel/toolkits/data_commons_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/data_commons_toolkit.py rename to owl/camel/toolkits/data_commons_toolkit.py diff --git a/deep-swarm/camel/toolkits/document_processing_toolkit.py b/owl/camel/toolkits/document_processing_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/document_processing_toolkit.py rename to owl/camel/toolkits/document_processing_toolkit.py diff --git a/deep-swarm/camel/toolkits/excel_toolkit.py b/owl/camel/toolkits/excel_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/excel_toolkit.py rename to owl/camel/toolkits/excel_toolkit.py diff --git a/deep-swarm/camel/toolkits/function_tool.py b/owl/camel/toolkits/function_tool.py similarity index 100% rename from deep-swarm/camel/toolkits/function_tool.py rename to owl/camel/toolkits/function_tool.py diff --git a/deep-swarm/camel/toolkits/github_toolkit.py b/owl/camel/toolkits/github_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/github_toolkit.py rename to owl/camel/toolkits/github_toolkit.py diff --git a/deep-swarm/camel/toolkits/google_maps_toolkit.py b/owl/camel/toolkits/google_maps_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/google_maps_toolkit.py rename to owl/camel/toolkits/google_maps_toolkit.py diff --git a/deep-swarm/camel/toolkits/google_scholar_toolkit.py b/owl/camel/toolkits/google_scholar_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/google_scholar_toolkit.py rename to owl/camel/toolkits/google_scholar_toolkit.py diff --git a/deep-swarm/camel/toolkits/human_toolkit.py b/owl/camel/toolkits/human_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/human_toolkit.py rename to owl/camel/toolkits/human_toolkit.py diff --git a/deep-swarm/camel/toolkits/image_analysis_toolkit.py b/owl/camel/toolkits/image_analysis_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/image_analysis_toolkit.py rename to owl/camel/toolkits/image_analysis_toolkit.py diff --git a/deep-swarm/camel/toolkits/linkedin_toolkit.py b/owl/camel/toolkits/linkedin_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/linkedin_toolkit.py rename to owl/camel/toolkits/linkedin_toolkit.py diff --git a/deep-swarm/camel/toolkits/math_toolkit.py b/owl/camel/toolkits/math_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/math_toolkit.py rename to owl/camel/toolkits/math_toolkit.py diff --git a/deep-swarm/camel/toolkits/meshy_toolkit.py b/owl/camel/toolkits/meshy_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/meshy_toolkit.py rename to owl/camel/toolkits/meshy_toolkit.py diff --git a/deep-swarm/camel/toolkits/notion_toolkit.py b/owl/camel/toolkits/notion_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/notion_toolkit.py rename to owl/camel/toolkits/notion_toolkit.py diff --git a/deep-swarm/camel/toolkits/open_api_specs/__pycache__/security_config.cpython-311.pyc b/owl/camel/toolkits/open_api_specs/__pycache__/security_config.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/__pycache__/security_config.cpython-311.pyc rename to owl/camel/toolkits/open_api_specs/__pycache__/security_config.cpython-311.pyc diff --git a/deep-swarm/camel/toolkits/open_api_specs/biztoc/__init__.py b/owl/camel/toolkits/open_api_specs/biztoc/__init__.py similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/biztoc/__init__.py rename to owl/camel/toolkits/open_api_specs/biztoc/__init__.py diff --git a/deep-swarm/camel/toolkits/open_api_specs/biztoc/ai-plugin.json b/owl/camel/toolkits/open_api_specs/biztoc/ai-plugin.json similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/biztoc/ai-plugin.json rename to owl/camel/toolkits/open_api_specs/biztoc/ai-plugin.json diff --git a/deep-swarm/camel/toolkits/open_api_specs/biztoc/openapi.yaml b/owl/camel/toolkits/open_api_specs/biztoc/openapi.yaml similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/biztoc/openapi.yaml rename to owl/camel/toolkits/open_api_specs/biztoc/openapi.yaml diff --git a/deep-swarm/camel/toolkits/open_api_specs/coursera/__init__.py b/owl/camel/toolkits/open_api_specs/coursera/__init__.py similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/coursera/__init__.py rename to owl/camel/toolkits/open_api_specs/coursera/__init__.py diff --git a/deep-swarm/camel/toolkits/open_api_specs/coursera/openapi.yaml b/owl/camel/toolkits/open_api_specs/coursera/openapi.yaml similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/coursera/openapi.yaml rename to owl/camel/toolkits/open_api_specs/coursera/openapi.yaml diff --git a/deep-swarm/camel/toolkits/open_api_specs/create_qr_code/__init__.py b/owl/camel/toolkits/open_api_specs/create_qr_code/__init__.py similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/create_qr_code/__init__.py rename to owl/camel/toolkits/open_api_specs/create_qr_code/__init__.py diff --git a/deep-swarm/camel/toolkits/open_api_specs/create_qr_code/openapi.yaml b/owl/camel/toolkits/open_api_specs/create_qr_code/openapi.yaml similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/create_qr_code/openapi.yaml rename to owl/camel/toolkits/open_api_specs/create_qr_code/openapi.yaml diff --git a/deep-swarm/camel/toolkits/open_api_specs/klarna/__init__.py b/owl/camel/toolkits/open_api_specs/klarna/__init__.py similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/klarna/__init__.py rename to owl/camel/toolkits/open_api_specs/klarna/__init__.py diff --git a/deep-swarm/camel/toolkits/open_api_specs/klarna/openapi.yaml b/owl/camel/toolkits/open_api_specs/klarna/openapi.yaml similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/klarna/openapi.yaml rename to owl/camel/toolkits/open_api_specs/klarna/openapi.yaml diff --git a/deep-swarm/camel/toolkits/open_api_specs/nasa_apod/__init__.py b/owl/camel/toolkits/open_api_specs/nasa_apod/__init__.py similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/nasa_apod/__init__.py rename to owl/camel/toolkits/open_api_specs/nasa_apod/__init__.py diff --git a/deep-swarm/camel/toolkits/open_api_specs/nasa_apod/openapi.yaml b/owl/camel/toolkits/open_api_specs/nasa_apod/openapi.yaml similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/nasa_apod/openapi.yaml rename to owl/camel/toolkits/open_api_specs/nasa_apod/openapi.yaml diff --git a/deep-swarm/camel/toolkits/open_api_specs/outschool/__init__.py b/owl/camel/toolkits/open_api_specs/outschool/__init__.py similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/outschool/__init__.py rename to owl/camel/toolkits/open_api_specs/outschool/__init__.py diff --git a/deep-swarm/camel/toolkits/open_api_specs/outschool/ai-plugin.json b/owl/camel/toolkits/open_api_specs/outschool/ai-plugin.json similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/outschool/ai-plugin.json rename to owl/camel/toolkits/open_api_specs/outschool/ai-plugin.json diff --git a/deep-swarm/camel/toolkits/open_api_specs/outschool/openapi.yaml b/owl/camel/toolkits/open_api_specs/outschool/openapi.yaml similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/outschool/openapi.yaml rename to owl/camel/toolkits/open_api_specs/outschool/openapi.yaml diff --git a/deep-swarm/camel/toolkits/open_api_specs/outschool/paths/__init__.py b/owl/camel/toolkits/open_api_specs/outschool/paths/__init__.py similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/outschool/paths/__init__.py rename to owl/camel/toolkits/open_api_specs/outschool/paths/__init__.py diff --git a/deep-swarm/camel/toolkits/open_api_specs/outschool/paths/get_classes.py b/owl/camel/toolkits/open_api_specs/outschool/paths/get_classes.py similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/outschool/paths/get_classes.py rename to owl/camel/toolkits/open_api_specs/outschool/paths/get_classes.py diff --git a/deep-swarm/camel/toolkits/open_api_specs/outschool/paths/search_teachers.py b/owl/camel/toolkits/open_api_specs/outschool/paths/search_teachers.py similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/outschool/paths/search_teachers.py rename to owl/camel/toolkits/open_api_specs/outschool/paths/search_teachers.py diff --git a/deep-swarm/camel/toolkits/open_api_specs/security_config.py b/owl/camel/toolkits/open_api_specs/security_config.py similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/security_config.py rename to owl/camel/toolkits/open_api_specs/security_config.py diff --git a/deep-swarm/camel/toolkits/open_api_specs/speak/__init__.py b/owl/camel/toolkits/open_api_specs/speak/__init__.py similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/speak/__init__.py rename to owl/camel/toolkits/open_api_specs/speak/__init__.py diff --git a/deep-swarm/camel/toolkits/open_api_specs/speak/openapi.yaml b/owl/camel/toolkits/open_api_specs/speak/openapi.yaml similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/speak/openapi.yaml rename to owl/camel/toolkits/open_api_specs/speak/openapi.yaml diff --git a/deep-swarm/camel/toolkits/open_api_specs/web_scraper/__init__.py b/owl/camel/toolkits/open_api_specs/web_scraper/__init__.py similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/web_scraper/__init__.py rename to owl/camel/toolkits/open_api_specs/web_scraper/__init__.py diff --git a/deep-swarm/camel/toolkits/open_api_specs/web_scraper/ai-plugin.json b/owl/camel/toolkits/open_api_specs/web_scraper/ai-plugin.json similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/web_scraper/ai-plugin.json rename to owl/camel/toolkits/open_api_specs/web_scraper/ai-plugin.json diff --git a/deep-swarm/camel/toolkits/open_api_specs/web_scraper/openapi.yaml b/owl/camel/toolkits/open_api_specs/web_scraper/openapi.yaml similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/web_scraper/openapi.yaml rename to owl/camel/toolkits/open_api_specs/web_scraper/openapi.yaml diff --git a/deep-swarm/camel/toolkits/open_api_specs/web_scraper/paths/__init__.py b/owl/camel/toolkits/open_api_specs/web_scraper/paths/__init__.py similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/web_scraper/paths/__init__.py rename to owl/camel/toolkits/open_api_specs/web_scraper/paths/__init__.py diff --git a/deep-swarm/camel/toolkits/open_api_specs/web_scraper/paths/scraper.py b/owl/camel/toolkits/open_api_specs/web_scraper/paths/scraper.py similarity index 100% rename from deep-swarm/camel/toolkits/open_api_specs/web_scraper/paths/scraper.py rename to owl/camel/toolkits/open_api_specs/web_scraper/paths/scraper.py diff --git a/deep-swarm/camel/toolkits/open_api_toolkit.py b/owl/camel/toolkits/open_api_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/open_api_toolkit.py rename to owl/camel/toolkits/open_api_toolkit.py diff --git a/deep-swarm/camel/toolkits/page_script.js b/owl/camel/toolkits/page_script.js similarity index 100% rename from deep-swarm/camel/toolkits/page_script.js rename to owl/camel/toolkits/page_script.js diff --git a/deep-swarm/camel/toolkits/reddit_toolkit.py b/owl/camel/toolkits/reddit_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/reddit_toolkit.py rename to owl/camel/toolkits/reddit_toolkit.py diff --git a/deep-swarm/camel/toolkits/retrieval_toolkit.py b/owl/camel/toolkits/retrieval_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/retrieval_toolkit.py rename to owl/camel/toolkits/retrieval_toolkit.py diff --git a/deep-swarm/camel/toolkits/search_toolkit.py b/owl/camel/toolkits/search_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/search_toolkit.py rename to owl/camel/toolkits/search_toolkit.py diff --git a/deep-swarm/camel/toolkits/slack_toolkit.py b/owl/camel/toolkits/slack_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/slack_toolkit.py rename to owl/camel/toolkits/slack_toolkit.py diff --git a/deep-swarm/camel/toolkits/sympy_toolkit.py b/owl/camel/toolkits/sympy_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/sympy_toolkit.py rename to owl/camel/toolkits/sympy_toolkit.py diff --git a/deep-swarm/camel/toolkits/twitter_toolkit.py b/owl/camel/toolkits/twitter_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/twitter_toolkit.py rename to owl/camel/toolkits/twitter_toolkit.py diff --git a/deep-swarm/camel/toolkits/video_analysis_toolkit.py b/owl/camel/toolkits/video_analysis_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/video_analysis_toolkit.py rename to owl/camel/toolkits/video_analysis_toolkit.py diff --git a/deep-swarm/camel/toolkits/video_downloader_toolkit.py b/owl/camel/toolkits/video_downloader_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/video_downloader_toolkit.py rename to owl/camel/toolkits/video_downloader_toolkit.py diff --git a/deep-swarm/camel/toolkits/weather_toolkit.py b/owl/camel/toolkits/weather_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/weather_toolkit.py rename to owl/camel/toolkits/weather_toolkit.py diff --git a/deep-swarm/camel/toolkits/web_toolkit.py b/owl/camel/toolkits/web_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/web_toolkit.py rename to owl/camel/toolkits/web_toolkit.py diff --git a/deep-swarm/camel/toolkits/whatsapp_toolkit.py b/owl/camel/toolkits/whatsapp_toolkit.py similarity index 100% rename from deep-swarm/camel/toolkits/whatsapp_toolkit.py rename to owl/camel/toolkits/whatsapp_toolkit.py diff --git a/deep-swarm/camel/types/__init__.py b/owl/camel/types/__init__.py similarity index 100% rename from deep-swarm/camel/types/__init__.py rename to owl/camel/types/__init__.py diff --git a/deep-swarm/camel/types/__pycache__/__init__.cpython-311.pyc b/owl/camel/types/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/types/__pycache__/__init__.cpython-311.pyc rename to owl/camel/types/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/types/__pycache__/enums.cpython-311.pyc b/owl/camel/types/__pycache__/enums.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/types/__pycache__/enums.cpython-311.pyc rename to owl/camel/types/__pycache__/enums.cpython-311.pyc diff --git a/deep-swarm/camel/types/__pycache__/openai_types.cpython-311.pyc b/owl/camel/types/__pycache__/openai_types.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/types/__pycache__/openai_types.cpython-311.pyc rename to owl/camel/types/__pycache__/openai_types.cpython-311.pyc diff --git a/deep-swarm/camel/types/__pycache__/unified_model_type.cpython-311.pyc b/owl/camel/types/__pycache__/unified_model_type.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/types/__pycache__/unified_model_type.cpython-311.pyc rename to owl/camel/types/__pycache__/unified_model_type.cpython-311.pyc diff --git a/deep-swarm/camel/types/enums.py b/owl/camel/types/enums.py similarity index 100% rename from deep-swarm/camel/types/enums.py rename to owl/camel/types/enums.py diff --git a/deep-swarm/camel/types/openai_types.py b/owl/camel/types/openai_types.py similarity index 100% rename from deep-swarm/camel/types/openai_types.py rename to owl/camel/types/openai_types.py diff --git a/deep-swarm/camel/types/unified_model_type.py b/owl/camel/types/unified_model_type.py similarity index 100% rename from deep-swarm/camel/types/unified_model_type.py rename to owl/camel/types/unified_model_type.py diff --git a/deep-swarm/camel/utils/__init__.py b/owl/camel/utils/__init__.py similarity index 100% rename from deep-swarm/camel/utils/__init__.py rename to owl/camel/utils/__init__.py diff --git a/deep-swarm/camel/utils/__pycache__/__init__.cpython-311.pyc b/owl/camel/utils/__pycache__/__init__.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/utils/__pycache__/__init__.cpython-311.pyc rename to owl/camel/utils/__pycache__/__init__.cpython-311.pyc diff --git a/deep-swarm/camel/utils/__pycache__/commons.cpython-311.pyc b/owl/camel/utils/__pycache__/commons.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/utils/__pycache__/commons.cpython-311.pyc rename to owl/camel/utils/__pycache__/commons.cpython-311.pyc diff --git a/deep-swarm/camel/utils/__pycache__/constants.cpython-311.pyc b/owl/camel/utils/__pycache__/constants.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/utils/__pycache__/constants.cpython-311.pyc rename to owl/camel/utils/__pycache__/constants.cpython-311.pyc diff --git a/deep-swarm/camel/utils/__pycache__/response_format.cpython-311.pyc b/owl/camel/utils/__pycache__/response_format.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/utils/__pycache__/response_format.cpython-311.pyc rename to owl/camel/utils/__pycache__/response_format.cpython-311.pyc diff --git a/deep-swarm/camel/utils/__pycache__/token_counting.cpython-311.pyc b/owl/camel/utils/__pycache__/token_counting.cpython-311.pyc similarity index 100% rename from deep-swarm/camel/utils/__pycache__/token_counting.cpython-311.pyc rename to owl/camel/utils/__pycache__/token_counting.cpython-311.pyc diff --git a/deep-swarm/camel/utils/async_func.py b/owl/camel/utils/async_func.py similarity index 100% rename from deep-swarm/camel/utils/async_func.py rename to owl/camel/utils/async_func.py diff --git a/deep-swarm/camel/utils/commons.py b/owl/camel/utils/commons.py similarity index 100% rename from deep-swarm/camel/utils/commons.py rename to owl/camel/utils/commons.py diff --git a/deep-swarm/camel/utils/constants.py b/owl/camel/utils/constants.py similarity index 100% rename from deep-swarm/camel/utils/constants.py rename to owl/camel/utils/constants.py diff --git a/deep-swarm/camel/utils/response_format.py b/owl/camel/utils/response_format.py similarity index 100% rename from deep-swarm/camel/utils/response_format.py rename to owl/camel/utils/response_format.py diff --git a/deep-swarm/camel/utils/token_counting.py b/owl/camel/utils/token_counting.py similarity index 100% rename from deep-swarm/camel/utils/token_counting.py rename to owl/camel/utils/token_counting.py diff --git a/deep-swarm/run.py b/owl/run.py similarity index 100% rename from deep-swarm/run.py rename to owl/run.py diff --git a/deep-swarm/run_gaia_roleplaying.py b/owl/run_gaia_roleplaying.py similarity index 100% rename from deep-swarm/run_gaia_roleplaying.py rename to owl/run_gaia_roleplaying.py diff --git a/deep-swarm/utils/__init__.py b/owl/utils/__init__.py similarity index 100% rename from deep-swarm/utils/__init__.py rename to owl/utils/__init__.py diff --git a/deep-swarm/utils/common.py b/owl/utils/common.py similarity index 100% rename from deep-swarm/utils/common.py rename to owl/utils/common.py diff --git a/deep-swarm/utils/enhanced_role_playing.py b/owl/utils/enhanced_role_playing.py similarity index 100% rename from deep-swarm/utils/enhanced_role_playing.py rename to owl/utils/enhanced_role_playing.py diff --git a/deep-swarm/utils/gaia.py b/owl/utils/gaia.py similarity index 100% rename from deep-swarm/utils/gaia.py rename to owl/utils/gaia.py