diff --git a/owl/camel/__pycache__/__init__.cpython-311.pyc b/owl/camel/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index deeedd23b3b22eef266e0af6afcb8159410505eb..0000000000000000000000000000000000000000 Binary files a/owl/camel/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/__pycache__/generators.cpython-311.pyc b/owl/camel/__pycache__/generators.cpython-311.pyc deleted file mode 100644 index d139f226974f3788f23c936dd446fa8e6e642e95..0000000000000000000000000000000000000000 Binary files a/owl/camel/__pycache__/generators.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/__pycache__/human.cpython-311.pyc b/owl/camel/__pycache__/human.cpython-311.pyc deleted file mode 100644 index 4df3ecc9e16686c2171f22ca90a6ed48f4597cb6..0000000000000000000000000000000000000000 Binary files a/owl/camel/__pycache__/human.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/__pycache__/logger.cpython-311.pyc b/owl/camel/__pycache__/logger.cpython-311.pyc deleted file mode 100644 index 6f027bd5e3190db5447a90006feb31af6c386f82..0000000000000000000000000000000000000000 Binary files a/owl/camel/__pycache__/logger.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/agents/__pycache__/__init__.cpython-311.pyc b/owl/camel/agents/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index ad74987715e72ef56f2a6b517e55f3f328d56c32..0000000000000000000000000000000000000000 Binary files a/owl/camel/agents/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/agents/__pycache__/base.cpython-311.pyc b/owl/camel/agents/__pycache__/base.cpython-311.pyc deleted file mode 100644 index 12d059763a46bd58153076546c1fe3db4cc7f16e..0000000000000000000000000000000000000000 Binary files a/owl/camel/agents/__pycache__/base.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/agents/__pycache__/chat_agent.cpython-311.pyc b/owl/camel/agents/__pycache__/chat_agent.cpython-311.pyc deleted file mode 100644 index 72bd038b9025cfabcbcbe3e357042745918066e6..0000000000000000000000000000000000000000 Binary files a/owl/camel/agents/__pycache__/chat_agent.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/agents/__pycache__/critic_agent.cpython-311.pyc b/owl/camel/agents/__pycache__/critic_agent.cpython-311.pyc deleted file mode 100644 index dfb2cc741c7ff66392e7232c936d94cf78edefbd..0000000000000000000000000000000000000000 Binary files a/owl/camel/agents/__pycache__/critic_agent.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/agents/__pycache__/embodied_agent.cpython-311.pyc b/owl/camel/agents/__pycache__/embodied_agent.cpython-311.pyc deleted file mode 100644 index 74323642348e4cd294dbe605e980ad7376f0f74a..0000000000000000000000000000000000000000 Binary files a/owl/camel/agents/__pycache__/embodied_agent.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/agents/__pycache__/knowledge_graph_agent.cpython-311.pyc b/owl/camel/agents/__pycache__/knowledge_graph_agent.cpython-311.pyc deleted file mode 100644 index 1c9c1f2da8670e798f2c1f5250bb7ca4cf9dc14c..0000000000000000000000000000000000000000 Binary files a/owl/camel/agents/__pycache__/knowledge_graph_agent.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/agents/__pycache__/role_assignment_agent.cpython-311.pyc b/owl/camel/agents/__pycache__/role_assignment_agent.cpython-311.pyc deleted file mode 100644 index 69cf8174835ed1ce92b7aa01d05d6b563ba57467..0000000000000000000000000000000000000000 Binary files a/owl/camel/agents/__pycache__/role_assignment_agent.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/agents/__pycache__/search_agent.cpython-311.pyc b/owl/camel/agents/__pycache__/search_agent.cpython-311.pyc deleted file mode 100644 index 2d57bfbfba6ca6c0df42749b14354f3058ea816d..0000000000000000000000000000000000000000 Binary files a/owl/camel/agents/__pycache__/search_agent.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/agents/__pycache__/task_agent.cpython-311.pyc b/owl/camel/agents/__pycache__/task_agent.cpython-311.pyc deleted file mode 100644 index 94d8b1665b958037a35aeab43ac830bc3cfa3de0..0000000000000000000000000000000000000000 Binary files a/owl/camel/agents/__pycache__/task_agent.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/agents/chat_agent.py b/owl/camel/agents/chat_agent.py index c77f209e0aee7c76f216bea8885a0f9227e17f3f..431ff37a384b68e7d5f052ae8a9e315c783cc18d 100644 --- a/owl/camel/agents/chat_agent.py +++ b/owl/camel/agents/chat_agent.py @@ -1291,18 +1291,6 @@ class ChatAgent(BaseAgent): args = json.loads(choice.message.tool_calls[0].function.arguments) tool = self.tool_dict[func_name] - # ! Here, if the agent calls advanced reasoning, provide the chat history - if func_name == "make_advanced_reasoning": - reformed_question = f""" - Please help an assistant to solve reasoning tasks. - Here are the chat history between the assistant and the user, which may help you understand the intention of the user and the question: - {self.memory.get_context()} - - Now please answer the following question: - {args['question']} - """ - args["question"] = reformed_question - result = tool(**args) assist_msg = FunctionCallingMessage( diff --git a/owl/camel/agents/tool_agents/__pycache__/__init__.cpython-311.pyc b/owl/camel/agents/tool_agents/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 9e88e87a0ce7e12c2c0f59bddcdda85818a461a5..0000000000000000000000000000000000000000 Binary files a/owl/camel/agents/tool_agents/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/agents/tool_agents/__pycache__/base.cpython-311.pyc b/owl/camel/agents/tool_agents/__pycache__/base.cpython-311.pyc deleted file mode 100644 index 178a89c5a41117f2beea668906b064b4957d723b..0000000000000000000000000000000000000000 Binary files a/owl/camel/agents/tool_agents/__pycache__/base.cpython-311.pyc and /dev/null differ diff --git a/owl/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 deleted file mode 100644 index ea2a77c62ff1374782f59d0e7a2bfe8390acecea..0000000000000000000000000000000000000000 Binary files a/owl/camel/agents/tool_agents/__pycache__/hugging_face_tool_agent.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/benchmarks/__pycache__/__init__.cpython-311.pyc b/owl/camel/benchmarks/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 08baa3e394f4e38bf4d0dc3825adc3e419039a6e..0000000000000000000000000000000000000000 Binary files a/owl/camel/benchmarks/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/benchmarks/__pycache__/base.cpython-311.pyc b/owl/camel/benchmarks/__pycache__/base.cpython-311.pyc deleted file mode 100644 index 4653573c6aed2d3bb51ecd3eff5640e4f6c52abf..0000000000000000000000000000000000000000 Binary files a/owl/camel/benchmarks/__pycache__/base.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/configs/__pycache__/__init__.cpython-311.pyc b/owl/camel/configs/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index e44acf43b5a919b009b6dac8e9640c9d60811456..0000000000000000000000000000000000000000 Binary files a/owl/camel/configs/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/configs/__pycache__/anthropic_config.cpython-311.pyc b/owl/camel/configs/__pycache__/anthropic_config.cpython-311.pyc deleted file mode 100644 index 135d70d3fe8240ff660a0dee8b585db35b0a4311..0000000000000000000000000000000000000000 Binary files a/owl/camel/configs/__pycache__/anthropic_config.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/configs/__pycache__/base_config.cpython-311.pyc b/owl/camel/configs/__pycache__/base_config.cpython-311.pyc deleted file mode 100644 index 638f9203cad9695479c4e65179df3396e9cf7813..0000000000000000000000000000000000000000 Binary files a/owl/camel/configs/__pycache__/base_config.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/configs/__pycache__/cohere_config.cpython-311.pyc b/owl/camel/configs/__pycache__/cohere_config.cpython-311.pyc deleted file mode 100644 index a6f70e3087cce192d1c4cd93071692ae777b01e5..0000000000000000000000000000000000000000 Binary files a/owl/camel/configs/__pycache__/cohere_config.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/configs/__pycache__/deepseek_config.cpython-311.pyc b/owl/camel/configs/__pycache__/deepseek_config.cpython-311.pyc deleted file mode 100644 index dd69bbc318e6b93b5f3bfe80341f2943bd130790..0000000000000000000000000000000000000000 Binary files a/owl/camel/configs/__pycache__/deepseek_config.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/configs/__pycache__/gemini_config.cpython-311.pyc b/owl/camel/configs/__pycache__/gemini_config.cpython-311.pyc deleted file mode 100644 index d331e4e8d8681d9e483bd96e394c9838bd562835..0000000000000000000000000000000000000000 Binary files a/owl/camel/configs/__pycache__/gemini_config.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/configs/__pycache__/groq_config.cpython-311.pyc b/owl/camel/configs/__pycache__/groq_config.cpython-311.pyc deleted file mode 100644 index 9f06ce99a16fc951f690880de45e4a6830dcb54c..0000000000000000000000000000000000000000 Binary files a/owl/camel/configs/__pycache__/groq_config.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/configs/__pycache__/litellm_config.cpython-311.pyc b/owl/camel/configs/__pycache__/litellm_config.cpython-311.pyc deleted file mode 100644 index bbd290ff4e41033bc54a4cf7c92479b42ef235fa..0000000000000000000000000000000000000000 Binary files a/owl/camel/configs/__pycache__/litellm_config.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/configs/__pycache__/mistral_config.cpython-311.pyc b/owl/camel/configs/__pycache__/mistral_config.cpython-311.pyc deleted file mode 100644 index 3e7f46f90e5f1dd96132f99dd0d95386ef16b21e..0000000000000000000000000000000000000000 Binary files a/owl/camel/configs/__pycache__/mistral_config.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/configs/__pycache__/nvidia_config.cpython-311.pyc b/owl/camel/configs/__pycache__/nvidia_config.cpython-311.pyc deleted file mode 100644 index 81675f6e00bbde5644b9eb7777e97ef23ea50813..0000000000000000000000000000000000000000 Binary files a/owl/camel/configs/__pycache__/nvidia_config.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/configs/__pycache__/ollama_config.cpython-311.pyc b/owl/camel/configs/__pycache__/ollama_config.cpython-311.pyc deleted file mode 100644 index ed34aad004b1b585b5c29ad46c18071cad93ae6f..0000000000000000000000000000000000000000 Binary files a/owl/camel/configs/__pycache__/ollama_config.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/configs/__pycache__/openai_config.cpython-311.pyc b/owl/camel/configs/__pycache__/openai_config.cpython-311.pyc deleted file mode 100644 index 5a1761c8bc9a39da9b1931510467d9ce6a9c99a6..0000000000000000000000000000000000000000 Binary files a/owl/camel/configs/__pycache__/openai_config.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/configs/__pycache__/qwen_config.cpython-311.pyc b/owl/camel/configs/__pycache__/qwen_config.cpython-311.pyc deleted file mode 100644 index 88de78cfdccfa4a019fec86ba6b24f4d6df7fc7c..0000000000000000000000000000000000000000 Binary files a/owl/camel/configs/__pycache__/qwen_config.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/configs/__pycache__/reka_config.cpython-311.pyc b/owl/camel/configs/__pycache__/reka_config.cpython-311.pyc deleted file mode 100644 index 34efe177e4d5d27a6ed00e8e6970002cc89d60bc..0000000000000000000000000000000000000000 Binary files a/owl/camel/configs/__pycache__/reka_config.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/configs/__pycache__/samba_config.cpython-311.pyc b/owl/camel/configs/__pycache__/samba_config.cpython-311.pyc deleted file mode 100644 index e1d3c68398593ef9ceace8041f1e086b13acaab6..0000000000000000000000000000000000000000 Binary files a/owl/camel/configs/__pycache__/samba_config.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/configs/__pycache__/togetherai_config.cpython-311.pyc b/owl/camel/configs/__pycache__/togetherai_config.cpython-311.pyc deleted file mode 100644 index c921341aa8ed29936604d737cf7f9111dbed2dc4..0000000000000000000000000000000000000000 Binary files a/owl/camel/configs/__pycache__/togetherai_config.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/configs/__pycache__/vllm_config.cpython-311.pyc b/owl/camel/configs/__pycache__/vllm_config.cpython-311.pyc deleted file mode 100644 index 0288b4ce30bf40876802df353b20f26fd8e2753b..0000000000000000000000000000000000000000 Binary files a/owl/camel/configs/__pycache__/vllm_config.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/configs/__pycache__/yi_config.cpython-311.pyc b/owl/camel/configs/__pycache__/yi_config.cpython-311.pyc deleted file mode 100644 index c1cf0ce73cea1bb2bf974d879372ddbaa32b8d76..0000000000000000000000000000000000000000 Binary files a/owl/camel/configs/__pycache__/yi_config.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/configs/__pycache__/zhipuai_config.cpython-311.pyc b/owl/camel/configs/__pycache__/zhipuai_config.cpython-311.pyc deleted file mode 100644 index ae1718a9fd133973bccedee6f14aa69e4a8111b8..0000000000000000000000000000000000000000 Binary files a/owl/camel/configs/__pycache__/zhipuai_config.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/embeddings/__pycache__/__init__.cpython-311.pyc b/owl/camel/embeddings/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index a9739513422fc5cb856babf2f90012f1e35f1577..0000000000000000000000000000000000000000 Binary files a/owl/camel/embeddings/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/embeddings/__pycache__/base.cpython-311.pyc b/owl/camel/embeddings/__pycache__/base.cpython-311.pyc deleted file mode 100644 index 06428bea10fa5d9a129c9800991d0408d1e4d829..0000000000000000000000000000000000000000 Binary files a/owl/camel/embeddings/__pycache__/base.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/embeddings/__pycache__/mistral_embedding.cpython-311.pyc b/owl/camel/embeddings/__pycache__/mistral_embedding.cpython-311.pyc deleted file mode 100644 index 4390014d8fa781d336a7e36ddb7febe264b6c3c7..0000000000000000000000000000000000000000 Binary files a/owl/camel/embeddings/__pycache__/mistral_embedding.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/embeddings/__pycache__/openai_compatible_embedding.cpython-311.pyc b/owl/camel/embeddings/__pycache__/openai_compatible_embedding.cpython-311.pyc deleted file mode 100644 index 37386425fb1dfb9d3ab2619078784a978e30d7d4..0000000000000000000000000000000000000000 Binary files a/owl/camel/embeddings/__pycache__/openai_compatible_embedding.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/embeddings/__pycache__/openai_embedding.cpython-311.pyc b/owl/camel/embeddings/__pycache__/openai_embedding.cpython-311.pyc deleted file mode 100644 index af10164c6cab8b314a15ecedb10d939d2f014187..0000000000000000000000000000000000000000 Binary files a/owl/camel/embeddings/__pycache__/openai_embedding.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/embeddings/__pycache__/sentence_transformers_embeddings.cpython-311.pyc b/owl/camel/embeddings/__pycache__/sentence_transformers_embeddings.cpython-311.pyc deleted file mode 100644 index 9f3a91446e51218d8e39ad03003905ba751c7abb..0000000000000000000000000000000000000000 Binary files a/owl/camel/embeddings/__pycache__/sentence_transformers_embeddings.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/embeddings/__pycache__/vlm_embedding.cpython-311.pyc b/owl/camel/embeddings/__pycache__/vlm_embedding.cpython-311.pyc deleted file mode 100644 index 20d241eebfd39185e8cae01e430ba0438aa53421..0000000000000000000000000000000000000000 Binary files a/owl/camel/embeddings/__pycache__/vlm_embedding.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/interpreters/__pycache__/__init__.cpython-311.pyc b/owl/camel/interpreters/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 7db1f8dcd13ebab3cdeb926016a83d60912c57ac..0000000000000000000000000000000000000000 Binary files a/owl/camel/interpreters/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/interpreters/__pycache__/base.cpython-311.pyc b/owl/camel/interpreters/__pycache__/base.cpython-311.pyc deleted file mode 100644 index b1c850680275548c181f2343a952cc542114869d..0000000000000000000000000000000000000000 Binary files a/owl/camel/interpreters/__pycache__/base.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/interpreters/__pycache__/docker_interpreter.cpython-311.pyc b/owl/camel/interpreters/__pycache__/docker_interpreter.cpython-311.pyc deleted file mode 100644 index 73ec620433360ddcbeb264a548e9b49ce1208cab..0000000000000000000000000000000000000000 Binary files a/owl/camel/interpreters/__pycache__/docker_interpreter.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/interpreters/__pycache__/internal_python_interpreter.cpython-311.pyc b/owl/camel/interpreters/__pycache__/internal_python_interpreter.cpython-311.pyc deleted file mode 100644 index f33aa126950b79b01cb7030f2d55a649113691cd..0000000000000000000000000000000000000000 Binary files a/owl/camel/interpreters/__pycache__/internal_python_interpreter.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/interpreters/__pycache__/interpreter_error.cpython-311.pyc b/owl/camel/interpreters/__pycache__/interpreter_error.cpython-311.pyc deleted file mode 100644 index c1dcf1d790654276ad37098b8e986af8aee49c3f..0000000000000000000000000000000000000000 Binary files a/owl/camel/interpreters/__pycache__/interpreter_error.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/interpreters/__pycache__/ipython_interpreter.cpython-311.pyc b/owl/camel/interpreters/__pycache__/ipython_interpreter.cpython-311.pyc deleted file mode 100644 index 998cfa9a3876140c3440dfe06b84f09f99c360be..0000000000000000000000000000000000000000 Binary files a/owl/camel/interpreters/__pycache__/ipython_interpreter.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/interpreters/__pycache__/subprocess_interpreter.cpython-311.pyc b/owl/camel/interpreters/__pycache__/subprocess_interpreter.cpython-311.pyc deleted file mode 100644 index 69684fc829a5cec9d750821a641577bf4c226ccf..0000000000000000000000000000000000000000 Binary files a/owl/camel/interpreters/__pycache__/subprocess_interpreter.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/loaders/__pycache__/__init__.cpython-311.pyc b/owl/camel/loaders/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 9361aa69746fee413268b84adc015f2bf57b7d17..0000000000000000000000000000000000000000 Binary files a/owl/camel/loaders/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/loaders/__pycache__/apify_reader.cpython-311.pyc b/owl/camel/loaders/__pycache__/apify_reader.cpython-311.pyc deleted file mode 100644 index 010830380e3e5be4db0e68173b891ddd3cd8945a..0000000000000000000000000000000000000000 Binary files a/owl/camel/loaders/__pycache__/apify_reader.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/loaders/__pycache__/base_io.cpython-311.pyc b/owl/camel/loaders/__pycache__/base_io.cpython-311.pyc deleted file mode 100644 index f3841c70681a8ad8349ccc165fe8f820dc722ee1..0000000000000000000000000000000000000000 Binary files a/owl/camel/loaders/__pycache__/base_io.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/loaders/__pycache__/chunkr_reader.cpython-311.pyc b/owl/camel/loaders/__pycache__/chunkr_reader.cpython-311.pyc deleted file mode 100644 index deecd153495fcc863a07834128f3b6589d1b3e22..0000000000000000000000000000000000000000 Binary files a/owl/camel/loaders/__pycache__/chunkr_reader.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/loaders/__pycache__/firecrawl_reader.cpython-311.pyc b/owl/camel/loaders/__pycache__/firecrawl_reader.cpython-311.pyc deleted file mode 100644 index 3e346253712db70bab5bb7decfbb606ce7a674d6..0000000000000000000000000000000000000000 Binary files a/owl/camel/loaders/__pycache__/firecrawl_reader.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/loaders/__pycache__/jina_url_reader.cpython-311.pyc b/owl/camel/loaders/__pycache__/jina_url_reader.cpython-311.pyc deleted file mode 100644 index cbc6c7559399c5ece5c2474804aef2a49305c852..0000000000000000000000000000000000000000 Binary files a/owl/camel/loaders/__pycache__/jina_url_reader.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/loaders/__pycache__/unstructured_io.cpython-311.pyc b/owl/camel/loaders/__pycache__/unstructured_io.cpython-311.pyc deleted file mode 100644 index 28b4741c70d932c26e32f20a439bf2901774aa41..0000000000000000000000000000000000000000 Binary files a/owl/camel/loaders/__pycache__/unstructured_io.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/memories/__pycache__/__init__.cpython-311.pyc b/owl/camel/memories/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index fa7b63763284418f0d9966ef99465a505f16501b..0000000000000000000000000000000000000000 Binary files a/owl/camel/memories/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/memories/__pycache__/agent_memories.cpython-311.pyc b/owl/camel/memories/__pycache__/agent_memories.cpython-311.pyc deleted file mode 100644 index 4d7bef0f67204ed1233b2f24aac0d495eac9a27d..0000000000000000000000000000000000000000 Binary files a/owl/camel/memories/__pycache__/agent_memories.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/memories/__pycache__/base.cpython-311.pyc b/owl/camel/memories/__pycache__/base.cpython-311.pyc deleted file mode 100644 index 40f57f12ce9870adeaf34ac997392721ab864b64..0000000000000000000000000000000000000000 Binary files a/owl/camel/memories/__pycache__/base.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/memories/__pycache__/records.cpython-311.pyc b/owl/camel/memories/__pycache__/records.cpython-311.pyc deleted file mode 100644 index 7c4c3148f94c3b49d278fa9baa5829bae7b5abbe..0000000000000000000000000000000000000000 Binary files a/owl/camel/memories/__pycache__/records.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/memories/blocks/__pycache__/__init__.cpython-311.pyc b/owl/camel/memories/blocks/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 68409eabaf93037d9d0556eb31b81affdac5b12a..0000000000000000000000000000000000000000 Binary files a/owl/camel/memories/blocks/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/memories/blocks/__pycache__/chat_history_block.cpython-311.pyc b/owl/camel/memories/blocks/__pycache__/chat_history_block.cpython-311.pyc deleted file mode 100644 index 54047994a1fd1921ea06f14a1012d5e20c7f9af5..0000000000000000000000000000000000000000 Binary files a/owl/camel/memories/blocks/__pycache__/chat_history_block.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/memories/blocks/__pycache__/vectordb_block.cpython-311.pyc b/owl/camel/memories/blocks/__pycache__/vectordb_block.cpython-311.pyc deleted file mode 100644 index 760e3d63e5ef119b92e5c1609d3af1039d2df7db..0000000000000000000000000000000000000000 Binary files a/owl/camel/memories/blocks/__pycache__/vectordb_block.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/memories/context_creators/__pycache__/__init__.cpython-311.pyc b/owl/camel/memories/context_creators/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 705d28df511901433c2a53b2a48b656facb14512..0000000000000000000000000000000000000000 Binary files a/owl/camel/memories/context_creators/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/memories/context_creators/__pycache__/score_based.cpython-311.pyc b/owl/camel/memories/context_creators/__pycache__/score_based.cpython-311.pyc deleted file mode 100644 index e63bdfee7062729254de1ebddd8719668b9f731c..0000000000000000000000000000000000000000 Binary files a/owl/camel/memories/context_creators/__pycache__/score_based.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/messages/__pycache__/__init__.cpython-311.pyc b/owl/camel/messages/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 4e2f6e32aad15674aad939c09b6808e4cc08337f..0000000000000000000000000000000000000000 Binary files a/owl/camel/messages/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/messages/__pycache__/base.cpython-311.pyc b/owl/camel/messages/__pycache__/base.cpython-311.pyc deleted file mode 100644 index 9992b4f1659a6430b72a32fcca78074952911867..0000000000000000000000000000000000000000 Binary files a/owl/camel/messages/__pycache__/base.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/messages/__pycache__/func_message.cpython-311.pyc b/owl/camel/messages/__pycache__/func_message.cpython-311.pyc deleted file mode 100644 index 6dec7e2bcafa28f529789ba1f1824353073a64bd..0000000000000000000000000000000000000000 Binary files a/owl/camel/messages/__pycache__/func_message.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/messages/conversion/__pycache__/__init__.cpython-311.pyc b/owl/camel/messages/conversion/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 6be800521718231f40b5c9e8c005d9ceda107fae..0000000000000000000000000000000000000000 Binary files a/owl/camel/messages/conversion/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/messages/conversion/__pycache__/alpaca.cpython-311.pyc b/owl/camel/messages/conversion/__pycache__/alpaca.cpython-311.pyc deleted file mode 100644 index 36324ee369e39b3e3f0b6012bebc92b1b88fc607..0000000000000000000000000000000000000000 Binary files a/owl/camel/messages/conversion/__pycache__/alpaca.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/messages/conversion/__pycache__/conversation_models.cpython-311.pyc b/owl/camel/messages/conversion/__pycache__/conversation_models.cpython-311.pyc deleted file mode 100644 index ddb9e59798d0fec50b901abec69a7cf9b64f3b32..0000000000000000000000000000000000000000 Binary files a/owl/camel/messages/conversion/__pycache__/conversation_models.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/messages/conversion/sharegpt/__pycache__/__init__.cpython-311.pyc b/owl/camel/messages/conversion/sharegpt/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 77318c2f868cd81cecf658d3fc7b8886d970e65e..0000000000000000000000000000000000000000 Binary files a/owl/camel/messages/conversion/sharegpt/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/messages/conversion/sharegpt/__pycache__/function_call_formatter.cpython-311.pyc b/owl/camel/messages/conversion/sharegpt/__pycache__/function_call_formatter.cpython-311.pyc deleted file mode 100644 index 863633d13715bb83b2eeea6edda81854dbfda2af..0000000000000000000000000000000000000000 Binary files a/owl/camel/messages/conversion/sharegpt/__pycache__/function_call_formatter.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/messages/conversion/sharegpt/hermes/__pycache__/__init__.cpython-311.pyc b/owl/camel/messages/conversion/sharegpt/hermes/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index eccf186b65fefc302e7dba035b2a3ee637be404e..0000000000000000000000000000000000000000 Binary files a/owl/camel/messages/conversion/sharegpt/hermes/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/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 deleted file mode 100644 index 43a6ab3067af084cd41969b7e597e5ea2fcacff5..0000000000000000000000000000000000000000 Binary files a/owl/camel/messages/conversion/sharegpt/hermes/__pycache__/hermes_function_formatter.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/__init__.cpython-311.pyc b/owl/camel/models/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index b8e1e263ce74eedfedbaa33af63c1378d1ecff2a..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/anthropic_model.cpython-311.pyc b/owl/camel/models/__pycache__/anthropic_model.cpython-311.pyc deleted file mode 100644 index 3d55f4a7ab6eb01d8515875b2878fbab00af0553..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/anthropic_model.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/azure_openai_model.cpython-311.pyc b/owl/camel/models/__pycache__/azure_openai_model.cpython-311.pyc deleted file mode 100644 index 4ccf9927c85a829e47e22d9cf6b288acec09fc50..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/azure_openai_model.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/base_model.cpython-311.pyc b/owl/camel/models/__pycache__/base_model.cpython-311.pyc deleted file mode 100644 index d7d13c27e10babaad8afdd22df8c50d4252ad364..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/base_model.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/cohere_model.cpython-311.pyc b/owl/camel/models/__pycache__/cohere_model.cpython-311.pyc deleted file mode 100644 index 4f1302600084c810a80f43ce063ca6de93bdda04..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/cohere_model.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/deepseek_model.cpython-311.pyc b/owl/camel/models/__pycache__/deepseek_model.cpython-311.pyc deleted file mode 100644 index aa17bbd4447313b3a0bd0a3ae06806c7b051ec7f..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/deepseek_model.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/fish_audio_model.cpython-311.pyc b/owl/camel/models/__pycache__/fish_audio_model.cpython-311.pyc deleted file mode 100644 index 9bc785cef23d4c114a5fab1097cfd398e8086728..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/fish_audio_model.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/gemini_model.cpython-311.pyc b/owl/camel/models/__pycache__/gemini_model.cpython-311.pyc deleted file mode 100644 index e5b0d6c001e5108beab0bf7308de7657034466fe..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/gemini_model.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/groq_model.cpython-311.pyc b/owl/camel/models/__pycache__/groq_model.cpython-311.pyc deleted file mode 100644 index 7b6ca0048908105d3471e10f078be733d888a61b..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/groq_model.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/litellm_model.cpython-311.pyc b/owl/camel/models/__pycache__/litellm_model.cpython-311.pyc deleted file mode 100644 index afff3b45364cbe405da1f726067db849a6222cc6..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/litellm_model.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/mistral_model.cpython-311.pyc b/owl/camel/models/__pycache__/mistral_model.cpython-311.pyc deleted file mode 100644 index 043cbaf65fab99db2a3a04b51365d27522233ab7..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/mistral_model.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/model_factory.cpython-311.pyc b/owl/camel/models/__pycache__/model_factory.cpython-311.pyc deleted file mode 100644 index 8094d1845a26ef787ebec0a0d2b7f89a633cf4f0..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/model_factory.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/model_manager.cpython-311.pyc b/owl/camel/models/__pycache__/model_manager.cpython-311.pyc deleted file mode 100644 index 05c6d9ec937e33d92cef222f00615319060786f9..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/model_manager.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/nemotron_model.cpython-311.pyc b/owl/camel/models/__pycache__/nemotron_model.cpython-311.pyc deleted file mode 100644 index 60160a6702059a7fcad835e6847c935af8e247e1..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/nemotron_model.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/nvidia_model.cpython-311.pyc b/owl/camel/models/__pycache__/nvidia_model.cpython-311.pyc deleted file mode 100644 index 687cdb5a435ffe44401fed154956a7301cd10bcd..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/nvidia_model.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/ollama_model.cpython-311.pyc b/owl/camel/models/__pycache__/ollama_model.cpython-311.pyc deleted file mode 100644 index 4ba0e0f4cfd12f37747ee85355c8f3561fa0111b..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/ollama_model.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/openai_audio_models.cpython-311.pyc b/owl/camel/models/__pycache__/openai_audio_models.cpython-311.pyc deleted file mode 100644 index bf629e16f736b346858c116838df3d3c1b4a1eea..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/openai_audio_models.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/openai_compatible_model.cpython-311.pyc b/owl/camel/models/__pycache__/openai_compatible_model.cpython-311.pyc deleted file mode 100644 index a9c0cf9225cc6905729859e85562731448ada990..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/openai_compatible_model.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/openai_model.cpython-311.pyc b/owl/camel/models/__pycache__/openai_model.cpython-311.pyc deleted file mode 100644 index dd3d81bb1bfc06b0f7228d8d6d7f02746b61b720..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/openai_model.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/qwen_model.cpython-311.pyc b/owl/camel/models/__pycache__/qwen_model.cpython-311.pyc deleted file mode 100644 index e8c370fb355a4dd9c477d75b34afa33295f683a2..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/qwen_model.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/reka_model.cpython-311.pyc b/owl/camel/models/__pycache__/reka_model.cpython-311.pyc deleted file mode 100644 index 64e54c33a4ac5b0a09f1b811fefe39129c3c5dba..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/reka_model.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/samba_model.cpython-311.pyc b/owl/camel/models/__pycache__/samba_model.cpython-311.pyc deleted file mode 100644 index df1dcd25702656d4b68de70896283ba88303b22b..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/samba_model.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/stub_model.cpython-311.pyc b/owl/camel/models/__pycache__/stub_model.cpython-311.pyc deleted file mode 100644 index f5b2893ef663e81a6b25e04bfc65b5a7eb0ce48b..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/stub_model.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/togetherai_model.cpython-311.pyc b/owl/camel/models/__pycache__/togetherai_model.cpython-311.pyc deleted file mode 100644 index 3f85c3eb406503b6030294f799ff9939b1718818..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/togetherai_model.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/vllm_model.cpython-311.pyc b/owl/camel/models/__pycache__/vllm_model.cpython-311.pyc deleted file mode 100644 index 279f42fc239e9996ca3f05e9d5a3e1192081e5a3..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/vllm_model.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/yi_model.cpython-311.pyc b/owl/camel/models/__pycache__/yi_model.cpython-311.pyc deleted file mode 100644 index a2634c410b351b324fa6e496f3d6c152db621e22..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/yi_model.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/models/__pycache__/zhipuai_model.cpython-311.pyc b/owl/camel/models/__pycache__/zhipuai_model.cpython-311.pyc deleted file mode 100644 index 34d8126588a8866e739a2560b6bf5ef7eb1e0f81..0000000000000000000000000000000000000000 Binary files a/owl/camel/models/__pycache__/zhipuai_model.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/prompts/__pycache__/__init__.cpython-311.pyc b/owl/camel/prompts/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index fd1d4d85f41876336d665fa7e5ab18e00db9efea..0000000000000000000000000000000000000000 Binary files a/owl/camel/prompts/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/prompts/__pycache__/ai_society.cpython-311.pyc b/owl/camel/prompts/__pycache__/ai_society.cpython-311.pyc deleted file mode 100644 index e2934569adc18ad3a31ee8ab4cbe436c92e0fa03..0000000000000000000000000000000000000000 Binary files a/owl/camel/prompts/__pycache__/ai_society.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/prompts/__pycache__/base.cpython-311.pyc b/owl/camel/prompts/__pycache__/base.cpython-311.pyc deleted file mode 100644 index d270f8b136818b75fae2dc240525d69c896f322f..0000000000000000000000000000000000000000 Binary files a/owl/camel/prompts/__pycache__/base.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/prompts/__pycache__/code.cpython-311.pyc b/owl/camel/prompts/__pycache__/code.cpython-311.pyc deleted file mode 100644 index eb193a76b3a93ef6c0ed4a63e09a45ab86b7a4fc..0000000000000000000000000000000000000000 Binary files a/owl/camel/prompts/__pycache__/code.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/prompts/__pycache__/evaluation.cpython-311.pyc b/owl/camel/prompts/__pycache__/evaluation.cpython-311.pyc deleted file mode 100644 index b3b85532339204e0fd54294749e0b3b0b4fcf3de..0000000000000000000000000000000000000000 Binary files a/owl/camel/prompts/__pycache__/evaluation.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/prompts/__pycache__/generate_text_embedding_data.cpython-311.pyc b/owl/camel/prompts/__pycache__/generate_text_embedding_data.cpython-311.pyc deleted file mode 100644 index 0584bd381dd38cbccc3f55b52752a825c2be7542..0000000000000000000000000000000000000000 Binary files a/owl/camel/prompts/__pycache__/generate_text_embedding_data.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/prompts/__pycache__/image_craft.cpython-311.pyc b/owl/camel/prompts/__pycache__/image_craft.cpython-311.pyc deleted file mode 100644 index c5370211ae378a7b123f00cecd8393409bce9c95..0000000000000000000000000000000000000000 Binary files a/owl/camel/prompts/__pycache__/image_craft.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/prompts/__pycache__/misalignment.cpython-311.pyc b/owl/camel/prompts/__pycache__/misalignment.cpython-311.pyc deleted file mode 100644 index e113ab946f1279ffbc2efcf0366fd6304784cefd..0000000000000000000000000000000000000000 Binary files a/owl/camel/prompts/__pycache__/misalignment.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/prompts/__pycache__/multi_condition_image_craft.cpython-311.pyc b/owl/camel/prompts/__pycache__/multi_condition_image_craft.cpython-311.pyc deleted file mode 100644 index 8f93cd6e1b2e3192bccaa35d859d7bb8c18ad607..0000000000000000000000000000000000000000 Binary files a/owl/camel/prompts/__pycache__/multi_condition_image_craft.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/prompts/__pycache__/object_recognition.cpython-311.pyc b/owl/camel/prompts/__pycache__/object_recognition.cpython-311.pyc deleted file mode 100644 index 14c2dbb7a0376bc29406beef5b79e56cae2a0b1c..0000000000000000000000000000000000000000 Binary files a/owl/camel/prompts/__pycache__/object_recognition.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/prompts/__pycache__/persona_hub.cpython-311.pyc b/owl/camel/prompts/__pycache__/persona_hub.cpython-311.pyc deleted file mode 100644 index 3f6dab80b30b973574d0283b154fba2b70136e11..0000000000000000000000000000000000000000 Binary files a/owl/camel/prompts/__pycache__/persona_hub.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/prompts/__pycache__/prompt_templates.cpython-311.pyc b/owl/camel/prompts/__pycache__/prompt_templates.cpython-311.pyc deleted file mode 100644 index 5fa014382427e48fe22be384198b7474a74e398b..0000000000000000000000000000000000000000 Binary files a/owl/camel/prompts/__pycache__/prompt_templates.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/prompts/__pycache__/role_description_prompt_template.cpython-311.pyc b/owl/camel/prompts/__pycache__/role_description_prompt_template.cpython-311.pyc deleted file mode 100644 index 44112094aa7e0e60b7572cfccb6b021d1ab2e152..0000000000000000000000000000000000000000 Binary files a/owl/camel/prompts/__pycache__/role_description_prompt_template.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/prompts/__pycache__/solution_extraction.cpython-311.pyc b/owl/camel/prompts/__pycache__/solution_extraction.cpython-311.pyc deleted file mode 100644 index c8565c4e1ca70244b0a3e03ef3c238f3caf3b929..0000000000000000000000000000000000000000 Binary files a/owl/camel/prompts/__pycache__/solution_extraction.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/prompts/__pycache__/task_prompt_template.cpython-311.pyc b/owl/camel/prompts/__pycache__/task_prompt_template.cpython-311.pyc deleted file mode 100644 index 9ec2f61977733d3e4b1aa6e9796e67b060d1ec08..0000000000000000000000000000000000000000 Binary files a/owl/camel/prompts/__pycache__/task_prompt_template.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/prompts/__pycache__/translation.cpython-311.pyc b/owl/camel/prompts/__pycache__/translation.cpython-311.pyc deleted file mode 100644 index a7171af777f671f7e71fa5bca78f39b1c0a11793..0000000000000000000000000000000000000000 Binary files a/owl/camel/prompts/__pycache__/translation.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/prompts/__pycache__/video_description_prompt.cpython-311.pyc b/owl/camel/prompts/__pycache__/video_description_prompt.cpython-311.pyc deleted file mode 100644 index c67dd9709bac910672e1dc67cd19bfef97f72389..0000000000000000000000000000000000000000 Binary files a/owl/camel/prompts/__pycache__/video_description_prompt.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/responses/__pycache__/__init__.cpython-311.pyc b/owl/camel/responses/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index c4a3442bdfe948a1459f2ec0c56e76c4418ec8b0..0000000000000000000000000000000000000000 Binary files a/owl/camel/responses/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/responses/__pycache__/agent_responses.cpython-311.pyc b/owl/camel/responses/__pycache__/agent_responses.cpython-311.pyc deleted file mode 100644 index 472ad01067b1d7dd3ee0f9294ea249cdcd4a007a..0000000000000000000000000000000000000000 Binary files a/owl/camel/responses/__pycache__/agent_responses.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/retrievers/__pycache__/__init__.cpython-311.pyc b/owl/camel/retrievers/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 24e82934218cf99f6ce8256ce42a811f472c9dea..0000000000000000000000000000000000000000 Binary files a/owl/camel/retrievers/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/retrievers/__pycache__/auto_retriever.cpython-311.pyc b/owl/camel/retrievers/__pycache__/auto_retriever.cpython-311.pyc deleted file mode 100644 index 4dcf86ae0fac96e630d94ddd6b84d34016a31274..0000000000000000000000000000000000000000 Binary files a/owl/camel/retrievers/__pycache__/auto_retriever.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/retrievers/__pycache__/base.cpython-311.pyc b/owl/camel/retrievers/__pycache__/base.cpython-311.pyc deleted file mode 100644 index 8ebb5075c963bae59fe74b50c579feeebada0887..0000000000000000000000000000000000000000 Binary files a/owl/camel/retrievers/__pycache__/base.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/retrievers/__pycache__/bm25_retriever.cpython-311.pyc b/owl/camel/retrievers/__pycache__/bm25_retriever.cpython-311.pyc deleted file mode 100644 index a646a502eca97a24bb6e70bfc7e413970eba1369..0000000000000000000000000000000000000000 Binary files a/owl/camel/retrievers/__pycache__/bm25_retriever.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/retrievers/__pycache__/cohere_rerank_retriever.cpython-311.pyc b/owl/camel/retrievers/__pycache__/cohere_rerank_retriever.cpython-311.pyc deleted file mode 100644 index a31bc2da89ff1a8a142e08961adade5b5eaa8b2b..0000000000000000000000000000000000000000 Binary files a/owl/camel/retrievers/__pycache__/cohere_rerank_retriever.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/retrievers/__pycache__/vector_retriever.cpython-311.pyc b/owl/camel/retrievers/__pycache__/vector_retriever.cpython-311.pyc deleted file mode 100644 index 45bc0b28cc5dd58c821ab48ce9ca09585fe45082..0000000000000000000000000000000000000000 Binary files a/owl/camel/retrievers/__pycache__/vector_retriever.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/runtime/__pycache__/__init__.cpython-311.pyc b/owl/camel/runtime/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 1d17f78f22be513f402e106e76503eb14e98f437..0000000000000000000000000000000000000000 Binary files a/owl/camel/runtime/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/runtime/__pycache__/base.cpython-311.pyc b/owl/camel/runtime/__pycache__/base.cpython-311.pyc deleted file mode 100644 index e63c2b22f9f9a10b4f1fa2d9bbfdd4b9da261b20..0000000000000000000000000000000000000000 Binary files a/owl/camel/runtime/__pycache__/base.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/runtime/__pycache__/configs.cpython-311.pyc b/owl/camel/runtime/__pycache__/configs.cpython-311.pyc deleted file mode 100644 index dfc8c3554716e891610a16cd5da3b2690bcb4f04..0000000000000000000000000000000000000000 Binary files a/owl/camel/runtime/__pycache__/configs.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/runtime/__pycache__/docker_runtime.cpython-311.pyc b/owl/camel/runtime/__pycache__/docker_runtime.cpython-311.pyc deleted file mode 100644 index 3984a0507e51681eb73efc85ac3e9b92ad5bef11..0000000000000000000000000000000000000000 Binary files a/owl/camel/runtime/__pycache__/docker_runtime.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/runtime/__pycache__/llm_guard_runtime.cpython-311.pyc b/owl/camel/runtime/__pycache__/llm_guard_runtime.cpython-311.pyc deleted file mode 100644 index 1c2a1311153ef5dc83b29dab936d95b0a30ebffb..0000000000000000000000000000000000000000 Binary files a/owl/camel/runtime/__pycache__/llm_guard_runtime.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/runtime/__pycache__/remote_http_runtime.cpython-311.pyc b/owl/camel/runtime/__pycache__/remote_http_runtime.cpython-311.pyc deleted file mode 100644 index 55527f9cd081d59beb8ccef5e9e8b93d3816e3a1..0000000000000000000000000000000000000000 Binary files a/owl/camel/runtime/__pycache__/remote_http_runtime.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/runtime/utils/__pycache__/__init__.cpython-311.pyc b/owl/camel/runtime/utils/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index c844df598d136d2f367ea1c13ccd0ed5709924d7..0000000000000000000000000000000000000000 Binary files a/owl/camel/runtime/utils/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/runtime/utils/__pycache__/function_risk_toolkit.cpython-311.pyc b/owl/camel/runtime/utils/__pycache__/function_risk_toolkit.cpython-311.pyc deleted file mode 100644 index e05b0c50a1c6adff41d540acfac8022ec6c0c49e..0000000000000000000000000000000000000000 Binary files a/owl/camel/runtime/utils/__pycache__/function_risk_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/runtime/utils/__pycache__/ignore_risk_toolkit.cpython-311.pyc b/owl/camel/runtime/utils/__pycache__/ignore_risk_toolkit.cpython-311.pyc deleted file mode 100644 index 6fb25be6233de8671c481fed279e7e8ef21140df..0000000000000000000000000000000000000000 Binary files a/owl/camel/runtime/utils/__pycache__/ignore_risk_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/societies/__pycache__/__init__.cpython-311.pyc b/owl/camel/societies/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 5d4e38a3b8f32b9e0ce6b1bba76852ceefe5071f..0000000000000000000000000000000000000000 Binary files a/owl/camel/societies/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/societies/__pycache__/babyagi_playing.cpython-311.pyc b/owl/camel/societies/__pycache__/babyagi_playing.cpython-311.pyc deleted file mode 100644 index bc5c94fd791732b88313141c25ae21f61f5a79a2..0000000000000000000000000000000000000000 Binary files a/owl/camel/societies/__pycache__/babyagi_playing.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/societies/__pycache__/role_playing.cpython-311.pyc b/owl/camel/societies/__pycache__/role_playing.cpython-311.pyc deleted file mode 100644 index a1bece9a35b80c2d6c0cc41f1d15f8e8c02a2924..0000000000000000000000000000000000000000 Binary files a/owl/camel/societies/__pycache__/role_playing.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/societies/workforce/__pycache__/__init__.cpython-311.pyc b/owl/camel/societies/workforce/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index f393dc1f84cee49665408feeb7163bd632e9a073..0000000000000000000000000000000000000000 Binary files a/owl/camel/societies/workforce/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/societies/workforce/__pycache__/base.cpython-311.pyc b/owl/camel/societies/workforce/__pycache__/base.cpython-311.pyc deleted file mode 100644 index f82ef22464f17927884a558c430de91c9597e568..0000000000000000000000000000000000000000 Binary files a/owl/camel/societies/workforce/__pycache__/base.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/societies/workforce/__pycache__/prompts.cpython-311.pyc b/owl/camel/societies/workforce/__pycache__/prompts.cpython-311.pyc deleted file mode 100644 index a18c2d097250eba782329499f52937792e2ec1df..0000000000000000000000000000000000000000 Binary files a/owl/camel/societies/workforce/__pycache__/prompts.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/societies/workforce/__pycache__/role_playing_worker.cpython-311.pyc b/owl/camel/societies/workforce/__pycache__/role_playing_worker.cpython-311.pyc deleted file mode 100644 index e841e1bc27b397e707c04c50c210a709a18e18f4..0000000000000000000000000000000000000000 Binary files a/owl/camel/societies/workforce/__pycache__/role_playing_worker.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/societies/workforce/__pycache__/single_agent_worker.cpython-311.pyc b/owl/camel/societies/workforce/__pycache__/single_agent_worker.cpython-311.pyc deleted file mode 100644 index 26222a5ae3b8d127e1a4e9ab4314c93a8ec94c16..0000000000000000000000000000000000000000 Binary files a/owl/camel/societies/workforce/__pycache__/single_agent_worker.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/societies/workforce/__pycache__/task_channel.cpython-311.pyc b/owl/camel/societies/workforce/__pycache__/task_channel.cpython-311.pyc deleted file mode 100644 index b704f0fc284f29db1e437f863ddf8c88a88586df..0000000000000000000000000000000000000000 Binary files a/owl/camel/societies/workforce/__pycache__/task_channel.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/societies/workforce/__pycache__/utils.cpython-311.pyc b/owl/camel/societies/workforce/__pycache__/utils.cpython-311.pyc deleted file mode 100644 index d9317c8e88bbabb52911737974b331156a303d0a..0000000000000000000000000000000000000000 Binary files a/owl/camel/societies/workforce/__pycache__/utils.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/societies/workforce/__pycache__/worker.cpython-311.pyc b/owl/camel/societies/workforce/__pycache__/worker.cpython-311.pyc deleted file mode 100644 index d4eb019741148899a05336f03a8a1e80d6dee7df..0000000000000000000000000000000000000000 Binary files a/owl/camel/societies/workforce/__pycache__/worker.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/societies/workforce/__pycache__/workforce.cpython-311.pyc b/owl/camel/societies/workforce/__pycache__/workforce.cpython-311.pyc deleted file mode 100644 index 5651cce4b13996d2a48352474b9eb76fdbd978a5..0000000000000000000000000000000000000000 Binary files a/owl/camel/societies/workforce/__pycache__/workforce.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/storages/__pycache__/__init__.cpython-311.pyc b/owl/camel/storages/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index d387e1bfc91e4f81db2df39a6e97f7b7b25fd3ae..0000000000000000000000000000000000000000 Binary files a/owl/camel/storages/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/storages/graph_storages/__pycache__/__init__.cpython-311.pyc b/owl/camel/storages/graph_storages/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 231fc1416f79af643f5fa96c133e10b3eb39c63c..0000000000000000000000000000000000000000 Binary files a/owl/camel/storages/graph_storages/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/storages/graph_storages/__pycache__/base.cpython-311.pyc b/owl/camel/storages/graph_storages/__pycache__/base.cpython-311.pyc deleted file mode 100644 index 1b01413200925e786fefc86857af8d110427913f..0000000000000000000000000000000000000000 Binary files a/owl/camel/storages/graph_storages/__pycache__/base.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/storages/graph_storages/__pycache__/graph_element.cpython-311.pyc b/owl/camel/storages/graph_storages/__pycache__/graph_element.cpython-311.pyc deleted file mode 100644 index d7a888cc577ff9325f4018c10f0c517bc4f718dd..0000000000000000000000000000000000000000 Binary files a/owl/camel/storages/graph_storages/__pycache__/graph_element.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/storages/graph_storages/__pycache__/nebula_graph.cpython-311.pyc b/owl/camel/storages/graph_storages/__pycache__/nebula_graph.cpython-311.pyc deleted file mode 100644 index 28142bb09fcaa253908fa2cd290b9de2f6f0e3d8..0000000000000000000000000000000000000000 Binary files a/owl/camel/storages/graph_storages/__pycache__/nebula_graph.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/storages/graph_storages/__pycache__/neo4j_graph.cpython-311.pyc b/owl/camel/storages/graph_storages/__pycache__/neo4j_graph.cpython-311.pyc deleted file mode 100644 index 3a0c7cc810ef3f91002176831a2fc9d30b2c4710..0000000000000000000000000000000000000000 Binary files a/owl/camel/storages/graph_storages/__pycache__/neo4j_graph.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/storages/key_value_storages/__pycache__/__init__.cpython-311.pyc b/owl/camel/storages/key_value_storages/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index f2912383f7c6b83ce6ed0c241e34206beaa3ec35..0000000000000000000000000000000000000000 Binary files a/owl/camel/storages/key_value_storages/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/storages/key_value_storages/__pycache__/base.cpython-311.pyc b/owl/camel/storages/key_value_storages/__pycache__/base.cpython-311.pyc deleted file mode 100644 index 92330e0223a422c9a2467b390735b3b3713f938b..0000000000000000000000000000000000000000 Binary files a/owl/camel/storages/key_value_storages/__pycache__/base.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/storages/key_value_storages/__pycache__/in_memory.cpython-311.pyc b/owl/camel/storages/key_value_storages/__pycache__/in_memory.cpython-311.pyc deleted file mode 100644 index 767cbc8474913ffb18458b372c81a460f785c9cf..0000000000000000000000000000000000000000 Binary files a/owl/camel/storages/key_value_storages/__pycache__/in_memory.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/storages/key_value_storages/__pycache__/json.cpython-311.pyc b/owl/camel/storages/key_value_storages/__pycache__/json.cpython-311.pyc deleted file mode 100644 index 2963eb41de934eefa88df2f229410281d4a8a8b6..0000000000000000000000000000000000000000 Binary files a/owl/camel/storages/key_value_storages/__pycache__/json.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/storages/key_value_storages/__pycache__/redis.cpython-311.pyc b/owl/camel/storages/key_value_storages/__pycache__/redis.cpython-311.pyc deleted file mode 100644 index 5a64c7bfac1689d6f94c056b6fe8777225bc325f..0000000000000000000000000000000000000000 Binary files a/owl/camel/storages/key_value_storages/__pycache__/redis.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/storages/vectordb_storages/__pycache__/__init__.cpython-311.pyc b/owl/camel/storages/vectordb_storages/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index ab1ab47e53aa6f0cd9fba49ebaf0108e845d6c4d..0000000000000000000000000000000000000000 Binary files a/owl/camel/storages/vectordb_storages/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/storages/vectordb_storages/__pycache__/base.cpython-311.pyc b/owl/camel/storages/vectordb_storages/__pycache__/base.cpython-311.pyc deleted file mode 100644 index f4837022fc528318f4b433ea0f6bd95717841d03..0000000000000000000000000000000000000000 Binary files a/owl/camel/storages/vectordb_storages/__pycache__/base.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/storages/vectordb_storages/__pycache__/milvus.cpython-311.pyc b/owl/camel/storages/vectordb_storages/__pycache__/milvus.cpython-311.pyc deleted file mode 100644 index acfaeea6f1bdf2995c0b9dd35e42baaee827ae66..0000000000000000000000000000000000000000 Binary files a/owl/camel/storages/vectordb_storages/__pycache__/milvus.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/storages/vectordb_storages/__pycache__/qdrant.cpython-311.pyc b/owl/camel/storages/vectordb_storages/__pycache__/qdrant.cpython-311.pyc deleted file mode 100644 index b526e6675210d6e7f36f3b499997e3af3d51a6e3..0000000000000000000000000000000000000000 Binary files a/owl/camel/storages/vectordb_storages/__pycache__/qdrant.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/tasks/__pycache__/__init__.cpython-311.pyc b/owl/camel/tasks/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index 3070dad16e2e65cfb4062c64cad5f06f28c85520..0000000000000000000000000000000000000000 Binary files a/owl/camel/tasks/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/tasks/__pycache__/task.cpython-311.pyc b/owl/camel/tasks/__pycache__/task.cpython-311.pyc deleted file mode 100644 index ad66275bb8ef4e5d619d90cf8d3e90de137e4d8c..0000000000000000000000000000000000000000 Binary files a/owl/camel/tasks/__pycache__/task.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/tasks/__pycache__/task_prompt.cpython-311.pyc b/owl/camel/tasks/__pycache__/task_prompt.cpython-311.pyc deleted file mode 100644 index 3b3707968b3a983d49c62a3be40fbb7856cb5b45..0000000000000000000000000000000000000000 Binary files a/owl/camel/tasks/__pycache__/task_prompt.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/__init__.cpython-311.pyc b/owl/camel/toolkits/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index e33e04744351721185c607d751bfa396a9cdef3d..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/arxiv_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/arxiv_toolkit.cpython-311.pyc deleted file mode 100644 index 463cc0915bdef43a47d083abdd984b2d8cafed2c..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/arxiv_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/ask_news_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/ask_news_toolkit.cpython-311.pyc deleted file mode 100644 index 3ad08357d8bfdf84ca72d5e424a94fa5780f9241..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/ask_news_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/audio_analysis_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/audio_analysis_toolkit.cpython-311.pyc deleted file mode 100644 index 728e32677517711a2a0d9fde9689aa94b10a18ae..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/audio_analysis_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/base.cpython-311.pyc b/owl/camel/toolkits/__pycache__/base.cpython-311.pyc deleted file mode 100644 index d70e9d4a9a511ad70ea5efe0c3f363dabbf475ed..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/base.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/code_execution.cpython-311.pyc b/owl/camel/toolkits/__pycache__/code_execution.cpython-311.pyc deleted file mode 100644 index 92b6c7b388f06b6e1285af53f9e903a672f2c16f..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/code_execution.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/dalle_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/dalle_toolkit.cpython-311.pyc deleted file mode 100644 index 0b457c7a2a011a7274dbbfe73385febdec7bbbc4..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/dalle_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/document_processing_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/document_processing_toolkit.cpython-311.pyc deleted file mode 100644 index aba5217cfa39dfc5de286cdfb85679d8f0936e20..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/document_processing_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/excel_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/excel_toolkit.cpython-311.pyc deleted file mode 100644 index 4dcbea334c4cd077a4b90ccaf46bc70548066093..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/excel_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/function_tool.cpython-311.pyc b/owl/camel/toolkits/__pycache__/function_tool.cpython-311.pyc deleted file mode 100644 index 154357a1c8eccbc83b4c235233dcb731e366c152..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/function_tool.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/github_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/github_toolkit.cpython-311.pyc deleted file mode 100644 index d4e8a5bc4bbed4561c3e4ac8a502ebdf4064fee9..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/github_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/google_maps_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/google_maps_toolkit.cpython-311.pyc deleted file mode 100644 index 20ae0933a6280c5664522f66536b1faa559fa28e..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/google_maps_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/google_scholar_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/google_scholar_toolkit.cpython-311.pyc deleted file mode 100644 index b0532c62dbd8aa30afe3304666a26437b5045e6d..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/google_scholar_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/human_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/human_toolkit.cpython-311.pyc deleted file mode 100644 index ceada67d1003b99da324d488d8c641997f206714..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/human_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/image_analysis_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/image_analysis_toolkit.cpython-311.pyc deleted file mode 100644 index 410ddc34c7fbcc39a8af90a80bcb19b413d37d9d..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/image_analysis_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/linkedin_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/linkedin_toolkit.cpython-311.pyc deleted file mode 100644 index be872e3046517770432102d849835864249d5465..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/linkedin_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/math_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/math_toolkit.cpython-311.pyc deleted file mode 100644 index a867c2fc00ffc7268783e5c8d2c951c789c865c7..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/math_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/meshy_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/meshy_toolkit.cpython-311.pyc deleted file mode 100644 index eae4809fcb441ab8d31ec4d3d1f1263f27654f37..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/meshy_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/notion_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/notion_toolkit.cpython-311.pyc deleted file mode 100644 index d1355b960eb42f37fd1884f4c157d94753b04b17..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/notion_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/open_api_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/open_api_toolkit.cpython-311.pyc deleted file mode 100644 index 51e3bb5e30a4a1c3fce5fc0cdd4466277b26adb4..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/open_api_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/reddit_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/reddit_toolkit.cpython-311.pyc deleted file mode 100644 index 1ef991a47ef0a5a90583b573292c28b5187f4eb4..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/reddit_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/retrieval_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/retrieval_toolkit.cpython-311.pyc deleted file mode 100644 index adddd4121fde4f5efc5cd26465c681ab784cf7ff..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/retrieval_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/search_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/search_toolkit.cpython-311.pyc deleted file mode 100644 index 7c69d41565f98d7f0d23b010539ad448ad4fcf06..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/search_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/slack_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/slack_toolkit.cpython-311.pyc deleted file mode 100644 index cc8b96860a693d17028507cdadcea084085687c3..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/slack_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/sympy_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/sympy_toolkit.cpython-311.pyc deleted file mode 100644 index 76305514f23198168c139652f8ed6c80f3df0505..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/sympy_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/twitter_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/twitter_toolkit.cpython-311.pyc deleted file mode 100644 index ce02c435af8abd5206577627c9c0fc23fe47d8a2..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/twitter_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/video_analysis_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/video_analysis_toolkit.cpython-311.pyc deleted file mode 100644 index cb92b29d41b95f06bcbe98a92a0253528e0f6982..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/video_analysis_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/video_downloader_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/video_downloader_toolkit.cpython-311.pyc deleted file mode 100644 index b469d5f58d721c942f527bb21ebfa7b317c469dd..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/video_downloader_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/weather_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/weather_toolkit.cpython-311.pyc deleted file mode 100644 index 79b2f2d19bef27875b40eedbd144afe8b5b79a77..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/weather_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/__pycache__/web_toolkit.cpython-311.pyc b/owl/camel/toolkits/__pycache__/web_toolkit.cpython-311.pyc deleted file mode 100644 index 3ba9c506801530400bd9ac847a818cec0fb56969..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/__pycache__/web_toolkit.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/open_api_specs/__pycache__/security_config.cpython-311.pyc b/owl/camel/toolkits/open_api_specs/__pycache__/security_config.cpython-311.pyc deleted file mode 100644 index 79676e23362d5e6245aaf93733d228ee32569209..0000000000000000000000000000000000000000 Binary files a/owl/camel/toolkits/open_api_specs/__pycache__/security_config.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/toolkits/web_toolkit.py b/owl/camel/toolkits/web_toolkit.py index 09f0bf2144aa879e79b7873af2f5ead49cc5ac4b..585d1b2dc0a34bb665e7aee21f38b7c4228afc56 100644 --- a/owl/camel/toolkits/web_toolkit.py +++ b/owl/camel/toolkits/web_toolkit.py @@ -267,11 +267,13 @@ class BaseBrowser: """ self.history = [] + self.headless = headless self.playwright = sync_playwright().start() - self.browser: Browser = self.playwright.chromium.launch(headless=headless) - - self.context: BrowserContext = self.browser.new_context(accept_downloads=True) - self.page: Page = self.context.new_page() + + self.browser: Browser = None + self.context: BrowserContext = None + self.page: Page = None + self.page_url: str = None # stores the current page URL self.page_script: str = None # self.page_content: str = None # stores the current page content @@ -297,8 +299,12 @@ class BaseBrowser: except FileNotFoundError: logger.warning(f"Page script file not found: {page_script_path}") - # initialize the page into google search - # self.visit_page("https://www.google.com") + + def init(self): + r"""Initialize the browser.""" + self.browser = self.playwright.chromium.launch(headless=self.headless) # launch the browser, if the headless is False, the browser will be displayed + self.context = self.browser.new_context(accept_downloads=True) # create a new context + self.page = self.context.new_page() # create a new page def clean_cache(self): @@ -1036,9 +1042,11 @@ Your output should be in json format, including the following fields: self._reset() task_completed = False + detailed_plan = self._task_planning(task_prompt, start_url) logger.debug(f"Detailed plan: {detailed_plan}") + self.browser.init() self.browser.visit_page(start_url) for i in range(ROUND_LIMIT): @@ -1094,6 +1102,7 @@ Your output should be in json format, including the following fields: else: simulation_result = self._get_final_answer(task_prompt) + self.browser.close() return simulation_result diff --git a/owl/camel/types/__pycache__/__init__.cpython-311.pyc b/owl/camel/types/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index d0771b4e20b10bf5dec268599ec1b6a5a32e8d7d..0000000000000000000000000000000000000000 Binary files a/owl/camel/types/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/types/__pycache__/enums.cpython-311.pyc b/owl/camel/types/__pycache__/enums.cpython-311.pyc deleted file mode 100644 index 81a08515edf999bd9240b13d270339ffb01a103d..0000000000000000000000000000000000000000 Binary files a/owl/camel/types/__pycache__/enums.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/types/__pycache__/openai_types.cpython-311.pyc b/owl/camel/types/__pycache__/openai_types.cpython-311.pyc deleted file mode 100644 index d9202a0ee5fa0fa4478e5982fadede2433e8a50e..0000000000000000000000000000000000000000 Binary files a/owl/camel/types/__pycache__/openai_types.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/types/__pycache__/unified_model_type.cpython-311.pyc b/owl/camel/types/__pycache__/unified_model_type.cpython-311.pyc deleted file mode 100644 index 5db3b9d8b316327ef528c7c85254b68d682148a7..0000000000000000000000000000000000000000 Binary files a/owl/camel/types/__pycache__/unified_model_type.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/utils/__pycache__/__init__.cpython-311.pyc b/owl/camel/utils/__pycache__/__init__.cpython-311.pyc deleted file mode 100644 index c7e21fa676bb2f378c6b5be86ffef3f9bfd03efb..0000000000000000000000000000000000000000 Binary files a/owl/camel/utils/__pycache__/__init__.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/utils/__pycache__/commons.cpython-311.pyc b/owl/camel/utils/__pycache__/commons.cpython-311.pyc deleted file mode 100644 index 484ac06931d9cb7c23b81306b14a01f4a0fb802d..0000000000000000000000000000000000000000 Binary files a/owl/camel/utils/__pycache__/commons.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/utils/__pycache__/constants.cpython-311.pyc b/owl/camel/utils/__pycache__/constants.cpython-311.pyc deleted file mode 100644 index 79361f901997759d42fdf013ee419258aa6d65f5..0000000000000000000000000000000000000000 Binary files a/owl/camel/utils/__pycache__/constants.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/utils/__pycache__/response_format.cpython-311.pyc b/owl/camel/utils/__pycache__/response_format.cpython-311.pyc deleted file mode 100644 index cc822d010cd2f34d15eafe67ab7982d8eeb56156..0000000000000000000000000000000000000000 Binary files a/owl/camel/utils/__pycache__/response_format.cpython-311.pyc and /dev/null differ diff --git a/owl/camel/utils/__pycache__/token_counting.cpython-311.pyc b/owl/camel/utils/__pycache__/token_counting.cpython-311.pyc deleted file mode 100644 index f7477d71ea40a870dcf0074610bf48120e0b02c8..0000000000000000000000000000000000000000 Binary files a/owl/camel/utils/__pycache__/token_counting.cpython-311.pyc and /dev/null differ diff --git a/owl/run.py b/owl/run.py index 9455c1a9bb879ea87a3cc5943e61207dca88640a..4c3abd66fc854b861a8b1d8a50a70401418dbad3 100644 --- a/owl/run.py +++ b/owl/run.py @@ -16,7 +16,6 @@ import os - def construct_society(question: str) -> OwlRolePlaying: r"""Construct the society based on the question.""" @@ -37,14 +36,14 @@ def construct_society(question: str) -> OwlRolePlaying: tools_list = [ *WebToolkit( - headless=False, + headless=False, # Set to True if you want to run in headless mode (e.g. on a remote server) web_agent_model=assistant_model, planning_agent_model=assistant_model ).get_tools(), *DocumentProcessingToolkit().get_tools(), *VideoAnalysisToolkit(model=assistant_model).get_tools(), # This requires OpenAI Key *AudioAnalysisToolkit().get_tools(), # This requires OpenAI Key - *CodeExecutionToolkit().get_tools(), + *CodeExecutionToolkit(sandbox="subprocess", verbose=True).get_tools(), *ImageAnalysisToolkit(model=assistant_model).get_tools(), *SearchToolkit(model=assistant_model).get_tools(), *ExcelToolkit().get_tools() diff --git a/owl/run_deepseek_example.py b/owl/run_deepseek_example.py index da14d9e57db07c8a8a8adc4485236fa8554086e1..eed141689dd3aba8fa4a0c2e7fe3b77c17f83260 100644 --- a/owl/run_deepseek_example.py +++ b/owl/run_deepseek_example.py @@ -41,7 +41,7 @@ def construct_society(question: str) -> OwlRolePlaying: ).get_tools(), *DocumentProcessingToolkit().get_tools(), *VideoAnalysisToolkit().get_tools(), # This requires OpenAI and Qwen Key - *CodeExecutionToolkit().get_tools(), + *CodeExecutionToolkit(sandbox="subprocess", verbose=True).get_tools(), *ImageAnalysisToolkit(model=assistant_model).get_tools(), *AudioAnalysisToolkit().get_tools(), # This requires OpenAI Key *SearchToolkit(model=assistant_model).get_tools(), diff --git a/owl/run_gaia_roleplaying.py b/owl/run_gaia_roleplaying.py index 8464af6181c591bd7f80a98617c4b1c7887fe76b..cdd1018c47fa5133c7f5f1fef9e36660bcd69869 100644 --- a/owl/run_gaia_roleplaying.py +++ b/owl/run_gaia_roleplaying.py @@ -38,15 +38,15 @@ def main(): tools_list = [ *WebToolkit( - headless=False, + headless=False, # Set to True if you want to run in headless mode (e.g. on a remote server) web_agent_model=assistant_model, planning_agent_model=assistant_model ).get_tools(), *DocumentProcessingToolkit().get_tools(), *VideoAnalysisToolkit(model=assistant_model).get_tools(), # This requires OpenAI Key - *CodeExecutionToolkit().get_tools(), - *ImageAnalysisToolkit(model=assistant_model).get_tools(), *AudioAnalysisToolkit().get_tools(), # This requires OpenAI Key + *CodeExecutionToolkit(sandbox="subprocess", verbose=True).get_tools(), + *ImageAnalysisToolkit(model=assistant_model).get_tools(), *SearchToolkit(model=assistant_model).get_tools(), *ExcelToolkit().get_tools() ]