camel-ai 0.2.4__tar.gz → 0.2.5__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of camel-ai might be problematic. Click here for more details.
- {camel_ai-0.2.4 → camel_ai-0.2.5}/PKG-INFO +2 -2
- {camel_ai-0.2.4 → camel_ai-0.2.5}/README.md +1 -1
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/__init__.py +1 -1
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/retrievers/vector_retriever.py +4 -0
- {camel_ai-0.2.4/camel → camel_ai-0.2.5/camel/societies}/workforce/base.py +2 -2
- {camel_ai-0.2.4/camel → camel_ai-0.2.5/camel/societies}/workforce/role_playing_worker.py +5 -5
- {camel_ai-0.2.4/camel → camel_ai-0.2.5/camel/societies}/workforce/single_agent_worker.py +3 -3
- {camel_ai-0.2.4/camel → camel_ai-0.2.5/camel/societies}/workforce/worker.py +3 -3
- {camel_ai-0.2.4/camel → camel_ai-0.2.5/camel/societies}/workforce/workforce.py +10 -10
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/dalle_toolkit.py +2 -3
- {camel_ai-0.2.4 → camel_ai-0.2.5}/pyproject.toml +1 -1
- {camel_ai-0.2.4 → camel_ai-0.2.5}/LICENSE +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/agents/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/agents/base.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/agents/chat_agent.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/agents/critic_agent.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/agents/deductive_reasoner_agent.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/agents/embodied_agent.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/agents/knowledge_graph_agent.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/agents/role_assignment_agent.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/agents/search_agent.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/agents/task_agent.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/agents/tool_agents/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/agents/tool_agents/base.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/agents/tool_agents/hugging_face_tool_agent.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/bots/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/bots/discord_app.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/bots/slack/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/bots/slack/models.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/bots/slack/slack_app.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/bots/telegram_bot.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/configs/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/configs/anthropic_config.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/configs/base_config.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/configs/gemini_config.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/configs/groq_config.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/configs/litellm_config.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/configs/mistral_config.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/configs/ollama_config.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/configs/openai_config.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/configs/reka_config.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/configs/samba_config.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/configs/togetherai_config.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/configs/vllm_config.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/configs/zhipuai_config.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/embeddings/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/embeddings/base.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/embeddings/mistral_embedding.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/embeddings/openai_embedding.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/embeddings/sentence_transformers_embeddings.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/embeddings/vlm_embedding.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/generators.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/human.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/interpreters/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/interpreters/base.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/interpreters/docker_interpreter.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/interpreters/internal_python_interpreter.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/interpreters/interpreter_error.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/interpreters/ipython_interpreter.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/interpreters/subprocess_interpreter.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/loaders/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/loaders/base_io.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/loaders/chunkr_reader.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/loaders/firecrawl_reader.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/loaders/jina_url_reader.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/loaders/unstructured_io.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/memories/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/memories/agent_memories.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/memories/base.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/memories/blocks/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/memories/blocks/chat_history_block.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/memories/blocks/vectordb_block.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/memories/context_creators/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/memories/context_creators/score_based.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/memories/records.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/messages/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/messages/base.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/messages/func_message.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/models/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/models/anthropic_model.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/models/azure_openai_model.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/models/base_model.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/models/gemini_model.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/models/groq_model.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/models/litellm_model.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/models/mistral_model.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/models/model_factory.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/models/nemotron_model.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/models/ollama_model.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/models/openai_audio_models.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/models/openai_compatible_model.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/models/openai_model.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/models/reka_model.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/models/samba_model.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/models/stub_model.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/models/togetherai_model.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/models/vllm_model.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/models/zhipuai_model.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/prompts/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/prompts/ai_society.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/prompts/base.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/prompts/code.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/prompts/evaluation.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/prompts/generate_text_embedding_data.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/prompts/image_craft.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/prompts/misalignment.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/prompts/multi_condition_image_craft.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/prompts/object_recognition.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/prompts/prompt_templates.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/prompts/role_description_prompt_template.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/prompts/solution_extraction.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/prompts/task_prompt_template.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/prompts/translation.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/prompts/video_description_prompt.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/responses/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/responses/agent_responses.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/retrievers/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/retrievers/auto_retriever.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/retrievers/base.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/retrievers/bm25_retriever.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/retrievers/cohere_rerank_retriever.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/societies/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/societies/babyagi_playing.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/societies/role_playing.py +0 -0
- {camel_ai-0.2.4/camel → camel_ai-0.2.5/camel/societies}/workforce/__init__.py +0 -0
- {camel_ai-0.2.4/camel → camel_ai-0.2.5/camel/societies}/workforce/prompts.py +0 -0
- {camel_ai-0.2.4/camel → camel_ai-0.2.5/camel/societies}/workforce/task_channel.py +0 -0
- {camel_ai-0.2.4/camel → camel_ai-0.2.5/camel/societies}/workforce/utils.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/storages/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/storages/graph_storages/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/storages/graph_storages/base.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/storages/graph_storages/graph_element.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/storages/graph_storages/nebula_graph.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/storages/graph_storages/neo4j_graph.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/storages/key_value_storages/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/storages/key_value_storages/base.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/storages/key_value_storages/in_memory.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/storages/key_value_storages/json.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/storages/key_value_storages/redis.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/storages/object_storages/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/storages/object_storages/amazon_s3.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/storages/object_storages/azure_blob.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/storages/object_storages/base.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/storages/object_storages/google_cloud.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/storages/vectordb_storages/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/storages/vectordb_storages/base.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/storages/vectordb_storages/milvus.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/storages/vectordb_storages/qdrant.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/tasks/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/tasks/task.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/tasks/task_prompt.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/terminators/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/terminators/base.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/terminators/response_terminator.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/terminators/token_limit_terminator.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/arxiv_toolkit.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/ask_news_toolkit.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/base.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/code_execution.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/function_tool.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/github_toolkit.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/google_maps_toolkit.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/google_scholar_toolkit.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/linkedin_toolkit.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/math_toolkit.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/biztoc/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/biztoc/ai-plugin.json +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/biztoc/openapi.yaml +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/coursera/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/coursera/openapi.yaml +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/create_qr_code/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/create_qr_code/openapi.yaml +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/klarna/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/klarna/openapi.yaml +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/nasa_apod/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/nasa_apod/openapi.yaml +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/outschool/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/outschool/ai-plugin.json +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/outschool/openapi.yaml +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/outschool/paths/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/outschool/paths/get_classes.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/outschool/paths/search_teachers.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/security_config.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/speak/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/speak/openapi.yaml +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/web_scraper/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/web_scraper/ai-plugin.json +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/web_scraper/openapi.yaml +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/web_scraper/paths/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/web_scraper/paths/scraper.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_toolkit.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/reddit_toolkit.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/retrieval_toolkit.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/search_toolkit.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/slack_toolkit.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/twitter_toolkit.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/weather_toolkit.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/whatsapp_toolkit.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/types/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/types/enums.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/types/openai_types.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/types/unified_model_type.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/utils/__init__.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/utils/async_func.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/utils/commons.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/utils/constants.py +0 -0
- {camel_ai-0.2.4 → camel_ai-0.2.5}/camel/utils/token_counting.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: camel-ai
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.5
|
|
4
4
|
Summary: Communicative Agents for AI Society Study
|
|
5
5
|
Home-page: https://www.camel-ai.org/
|
|
6
6
|
License: Apache-2.0
|
|
@@ -221,7 +221,7 @@ conda create --name camel python=3.10
|
|
|
221
221
|
conda activate camel
|
|
222
222
|
|
|
223
223
|
# Clone github repo
|
|
224
|
-
git clone -b v0.2.
|
|
224
|
+
git clone -b v0.2.5 https://github.com/camel-ai/camel.git
|
|
225
225
|
|
|
226
226
|
# Change directory into project directory
|
|
227
227
|
cd camel
|
|
@@ -116,7 +116,7 @@ conda create --name camel python=3.10
|
|
|
116
116
|
conda activate camel
|
|
117
117
|
|
|
118
118
|
# Clone github repo
|
|
119
|
-
git clone -b v0.2.
|
|
119
|
+
git clone -b v0.2.5 https://github.com/camel-ai/camel.git
|
|
120
120
|
|
|
121
121
|
# Change directory into project directory
|
|
122
122
|
cd camel
|
|
@@ -149,7 +149,11 @@ class VectorRetriever(BaseRetriever):
|
|
|
149
149
|
"content path": content.metadata.file_directory
|
|
150
150
|
or ""
|
|
151
151
|
}
|
|
152
|
+
|
|
152
153
|
chunk_metadata = {"metadata": chunk.metadata.to_dict()}
|
|
154
|
+
# Remove the 'orig_elements' key if it exists
|
|
155
|
+
chunk_metadata["metadata"].pop("orig_elements", "")
|
|
156
|
+
|
|
153
157
|
chunk_text = {"text": str(chunk)}
|
|
154
158
|
combined_dict = {
|
|
155
159
|
**content_path_info,
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
from abc import ABC, abstractmethod
|
|
15
15
|
from typing import Any
|
|
16
16
|
|
|
17
|
-
from camel.workforce.task_channel import TaskChannel
|
|
18
|
-
from camel.workforce.utils import check_if_running
|
|
17
|
+
from camel.societies.workforce.task_channel import TaskChannel
|
|
18
|
+
from camel.societies.workforce.utils import check_if_running
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
class BaseNode(ABC):
|
|
@@ -21,14 +21,14 @@ from colorama import Fore
|
|
|
21
21
|
from camel.agents.chat_agent import ChatAgent
|
|
22
22
|
from camel.messages.base import BaseMessage
|
|
23
23
|
from camel.societies import RolePlaying
|
|
24
|
-
from camel.
|
|
25
|
-
from camel.utils import print_text_animated
|
|
26
|
-
from camel.workforce.prompts import (
|
|
24
|
+
from camel.societies.workforce.prompts import (
|
|
27
25
|
ROLEPLAY_PROCESS_TASK_PROMPT,
|
|
28
26
|
ROLEPLAY_SUMMARIZE_PROMPT,
|
|
29
27
|
)
|
|
30
|
-
from camel.workforce.utils import TaskResult
|
|
31
|
-
from camel.workforce.worker import Worker
|
|
28
|
+
from camel.societies.workforce.utils import TaskResult
|
|
29
|
+
from camel.societies.workforce.worker import Worker
|
|
30
|
+
from camel.tasks.task import Task, TaskState
|
|
31
|
+
from camel.utils import print_text_animated
|
|
32
32
|
|
|
33
33
|
|
|
34
34
|
class RolePlayingWorker(Worker):
|
|
@@ -20,11 +20,11 @@ from colorama import Fore
|
|
|
20
20
|
|
|
21
21
|
from camel.agents import ChatAgent
|
|
22
22
|
from camel.messages.base import BaseMessage
|
|
23
|
+
from camel.societies.workforce.prompts import PROCESS_TASK_PROMPT
|
|
24
|
+
from camel.societies.workforce.utils import TaskResult
|
|
25
|
+
from camel.societies.workforce.worker import Worker
|
|
23
26
|
from camel.tasks.task import Task, TaskState
|
|
24
27
|
from camel.utils import print_text_animated
|
|
25
|
-
from camel.workforce.prompts import PROCESS_TASK_PROMPT
|
|
26
|
-
from camel.workforce.utils import TaskResult
|
|
27
|
-
from camel.workforce.worker import Worker
|
|
28
28
|
|
|
29
29
|
|
|
30
30
|
class SingleAgentWorker(Worker):
|
|
@@ -19,10 +19,10 @@ from typing import List
|
|
|
19
19
|
|
|
20
20
|
from colorama import Fore
|
|
21
21
|
|
|
22
|
+
from camel.societies.workforce.base import BaseNode
|
|
23
|
+
from camel.societies.workforce.task_channel import TaskChannel
|
|
24
|
+
from camel.societies.workforce.utils import check_if_running
|
|
22
25
|
from camel.tasks.task import Task, TaskState
|
|
23
|
-
from camel.workforce.base import BaseNode
|
|
24
|
-
from camel.workforce.task_channel import TaskChannel
|
|
25
|
-
from camel.workforce.utils import check_if_running
|
|
26
26
|
|
|
27
27
|
logger = logging.getLogger(__name__)
|
|
28
28
|
|
|
@@ -25,24 +25,24 @@ from camel.agents import ChatAgent
|
|
|
25
25
|
from camel.configs import ChatGPTConfig
|
|
26
26
|
from camel.messages.base import BaseMessage
|
|
27
27
|
from camel.models import ModelFactory
|
|
28
|
-
from camel.
|
|
29
|
-
from camel.
|
|
30
|
-
from camel.types import ModelPlatformType, ModelType
|
|
31
|
-
from camel.workforce.base import BaseNode
|
|
32
|
-
from camel.workforce.prompts import (
|
|
28
|
+
from camel.societies.workforce.base import BaseNode
|
|
29
|
+
from camel.societies.workforce.prompts import (
|
|
33
30
|
ASSIGN_TASK_PROMPT,
|
|
34
31
|
CREATE_NODE_PROMPT,
|
|
35
32
|
WF_TASK_DECOMPOSE_PROMPT,
|
|
36
33
|
)
|
|
37
|
-
from camel.workforce.role_playing_worker import RolePlayingWorker
|
|
38
|
-
from camel.workforce.single_agent_worker import SingleAgentWorker
|
|
39
|
-
from camel.workforce.task_channel import TaskChannel
|
|
40
|
-
from camel.workforce.utils import (
|
|
34
|
+
from camel.societies.workforce.role_playing_worker import RolePlayingWorker
|
|
35
|
+
from camel.societies.workforce.single_agent_worker import SingleAgentWorker
|
|
36
|
+
from camel.societies.workforce.task_channel import TaskChannel
|
|
37
|
+
from camel.societies.workforce.utils import (
|
|
41
38
|
TaskAssignResult,
|
|
42
39
|
WorkerConf,
|
|
43
40
|
check_if_running,
|
|
44
41
|
)
|
|
45
|
-
from camel.workforce.worker import Worker
|
|
42
|
+
from camel.societies.workforce.worker import Worker
|
|
43
|
+
from camel.tasks.task import Task, TaskState
|
|
44
|
+
from camel.toolkits import SEARCH_FUNCS, WEATHER_FUNCS, GoogleMapsToolkit
|
|
45
|
+
from camel.types import ModelPlatformType, ModelType
|
|
46
46
|
|
|
47
47
|
logger = logging.getLogger(__name__)
|
|
48
48
|
|
|
@@ -25,9 +25,8 @@ from camel.toolkits.base import BaseToolkit
|
|
|
25
25
|
|
|
26
26
|
|
|
27
27
|
class DalleToolkit(BaseToolkit):
|
|
28
|
-
r"""A class representing a toolkit for image generation using OpenAI's
|
|
29
|
-
|
|
30
|
-
This class provides methods handle image generation using OpenAI's DALL-E.
|
|
28
|
+
r"""A class representing a toolkit for image generation using OpenAI's
|
|
29
|
+
DALL-E model.
|
|
31
30
|
"""
|
|
32
31
|
|
|
33
32
|
def base64_to_image(self, base64_string: str) -> Optional[Image.Image]:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/outschool/paths/get_classes.py
RENAMED
|
File without changes
|
{camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/outschool/paths/search_teachers.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/web_scraper/paths/__init__.py
RENAMED
|
File without changes
|
{camel_ai-0.2.4 → camel_ai-0.2.5}/camel/toolkits/open_api_specs/web_scraper/paths/scraper.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|