camel-ai 0.2.4a0__tar.gz → 0.2.4a1__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.4a0 → camel_ai-0.2.4a1}/PKG-INFO +2 -2
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/README.md +1 -1
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/__init__.py +1 -1
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/retrievers/auto_retriever.py +1 -87
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/pyproject.toml +1 -1
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/LICENSE +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/agents/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/agents/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/agents/chat_agent.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/agents/critic_agent.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/agents/deductive_reasoner_agent.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/agents/embodied_agent.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/agents/knowledge_graph_agent.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/agents/role_assignment_agent.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/agents/search_agent.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/agents/task_agent.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/agents/tool_agents/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/agents/tool_agents/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/agents/tool_agents/hugging_face_tool_agent.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/bots/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/bots/discord_app.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/bots/slack/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/bots/slack/models.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/bots/slack/slack_app.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/bots/telegram_bot.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/configs/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/configs/anthropic_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/configs/base_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/configs/gemini_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/configs/groq_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/configs/litellm_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/configs/mistral_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/configs/ollama_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/configs/openai_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/configs/reka_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/configs/samba_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/configs/togetherai_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/configs/vllm_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/configs/zhipuai_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/embeddings/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/embeddings/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/embeddings/mistral_embedding.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/embeddings/openai_embedding.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/embeddings/sentence_transformers_embeddings.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/embeddings/vlm_embedding.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/generators.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/human.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/interpreters/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/interpreters/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/interpreters/docker_interpreter.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/interpreters/internal_python_interpreter.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/interpreters/interpreter_error.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/interpreters/ipython_interpreter.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/interpreters/subprocess_interpreter.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/loaders/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/loaders/base_io.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/loaders/chunkr_reader.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/loaders/firecrawl_reader.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/loaders/jina_url_reader.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/loaders/unstructured_io.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/memories/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/memories/agent_memories.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/memories/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/memories/blocks/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/memories/blocks/chat_history_block.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/memories/blocks/vectordb_block.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/memories/context_creators/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/memories/context_creators/score_based.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/memories/records.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/messages/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/messages/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/messages/func_message.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/models/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/models/anthropic_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/models/azure_openai_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/models/base_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/models/gemini_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/models/groq_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/models/litellm_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/models/mistral_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/models/model_factory.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/models/nemotron_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/models/ollama_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/models/openai_audio_models.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/models/openai_compatible_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/models/openai_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/models/reka_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/models/samba_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/models/stub_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/models/togetherai_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/models/vllm_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/models/zhipuai_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/prompts/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/prompts/ai_society.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/prompts/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/prompts/code.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/prompts/evaluation.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/prompts/generate_text_embedding_data.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/prompts/image_craft.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/prompts/misalignment.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/prompts/multi_condition_image_craft.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/prompts/object_recognition.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/prompts/prompt_templates.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/prompts/role_description_prompt_template.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/prompts/solution_extraction.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/prompts/task_prompt_template.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/prompts/translation.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/prompts/video_description_prompt.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/responses/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/responses/agent_responses.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/retrievers/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/retrievers/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/retrievers/bm25_retriever.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/retrievers/cohere_rerank_retriever.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/retrievers/vector_retriever.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/societies/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/societies/babyagi_playing.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/societies/role_playing.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/storages/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/storages/graph_storages/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/storages/graph_storages/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/storages/graph_storages/graph_element.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/storages/graph_storages/nebula_graph.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/storages/graph_storages/neo4j_graph.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/storages/key_value_storages/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/storages/key_value_storages/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/storages/key_value_storages/in_memory.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/storages/key_value_storages/json.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/storages/key_value_storages/redis.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/storages/object_storages/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/storages/object_storages/amazon_s3.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/storages/object_storages/azure_blob.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/storages/object_storages/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/storages/object_storages/google_cloud.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/storages/vectordb_storages/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/storages/vectordb_storages/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/storages/vectordb_storages/milvus.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/storages/vectordb_storages/qdrant.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/tasks/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/tasks/task.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/tasks/task_prompt.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/terminators/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/terminators/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/terminators/response_terminator.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/terminators/token_limit_terminator.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/arxiv_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/ask_news_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/code_execution.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/dalle_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/function_tool.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/github_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/google_maps_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/google_scholar_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/linkedin_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/math_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/biztoc/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/biztoc/ai-plugin.json +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/biztoc/openapi.yaml +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/coursera/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/coursera/openapi.yaml +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/create_qr_code/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/create_qr_code/openapi.yaml +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/klarna/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/klarna/openapi.yaml +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/nasa_apod/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/nasa_apod/openapi.yaml +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/outschool/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/outschool/ai-plugin.json +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/outschool/openapi.yaml +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/outschool/paths/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/outschool/paths/get_classes.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/outschool/paths/search_teachers.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/security_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/speak/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/speak/openapi.yaml +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/web_scraper/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/web_scraper/ai-plugin.json +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/web_scraper/openapi.yaml +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/web_scraper/paths/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/web_scraper/paths/scraper.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/reddit_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/retrieval_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/search_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/slack_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/twitter_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/weather_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/whatsapp_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/types/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/types/enums.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/types/openai_types.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/types/unified_model_type.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/utils/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/utils/async_func.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/utils/commons.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/utils/constants.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/utils/token_counting.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/workforce/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/workforce/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/workforce/prompts.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/workforce/role_playing_worker.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/workforce/single_agent_worker.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/workforce/task_channel.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/workforce/utils.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/workforce/worker.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/workforce/workforce.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.4a1
|
|
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.4a1 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.4a1 https://github.com/camel-ai/camel.git
|
|
120
120
|
|
|
121
121
|
# Change directory into project directory
|
|
122
122
|
cd camel
|
|
@@ -11,8 +11,6 @@
|
|
|
11
11
|
# See the License for the specific language governing permissions and
|
|
12
12
|
# limitations under the License.
|
|
13
13
|
# =========== Copyright 2023 @ CAMEL-AI.org. All Rights Reserved. ===========
|
|
14
|
-
import datetime
|
|
15
|
-
import os
|
|
16
14
|
import re
|
|
17
15
|
import uuid
|
|
18
16
|
from typing import (
|
|
@@ -31,7 +29,6 @@ from camel.storages import (
|
|
|
31
29
|
BaseVectorStorage,
|
|
32
30
|
MilvusStorage,
|
|
33
31
|
QdrantStorage,
|
|
34
|
-
VectorDBQuery,
|
|
35
32
|
)
|
|
36
33
|
from camel.types import StorageType
|
|
37
34
|
from camel.utils import Constants
|
|
@@ -126,62 +123,6 @@ class AutoRetriever:
|
|
|
126
123
|
|
|
127
124
|
return collection_name
|
|
128
125
|
|
|
129
|
-
def _get_file_modified_date_from_file(
|
|
130
|
-
self, content_input_path: str
|
|
131
|
-
) -> str:
|
|
132
|
-
r"""Retrieves the last modified date and time of a given file. This
|
|
133
|
-
function takes a file path as input and returns the last modified date
|
|
134
|
-
and time of that file.
|
|
135
|
-
|
|
136
|
-
Args:
|
|
137
|
-
content_input_path (str): The file path of the content whose
|
|
138
|
-
modified date is to be retrieved.
|
|
139
|
-
|
|
140
|
-
Returns:
|
|
141
|
-
str: The last modified time from file.
|
|
142
|
-
"""
|
|
143
|
-
mod_time = os.path.getmtime(content_input_path)
|
|
144
|
-
readable_mod_time = datetime.datetime.fromtimestamp(
|
|
145
|
-
mod_time
|
|
146
|
-
).isoformat(timespec='seconds')
|
|
147
|
-
return readable_mod_time
|
|
148
|
-
|
|
149
|
-
def _get_file_modified_date_from_storage(
|
|
150
|
-
self, vector_storage_instance: BaseVectorStorage
|
|
151
|
-
) -> str:
|
|
152
|
-
r"""Retrieves the last modified date and time of a given file. This
|
|
153
|
-
function takes vector storage instance as input and returns the last
|
|
154
|
-
modified date from the metadata.
|
|
155
|
-
|
|
156
|
-
Args:
|
|
157
|
-
vector_storage_instance (BaseVectorStorage): The vector storage
|
|
158
|
-
where modified date is to be retrieved from metadata.
|
|
159
|
-
|
|
160
|
-
Returns:
|
|
161
|
-
str: The last modified date from vector storage.
|
|
162
|
-
"""
|
|
163
|
-
|
|
164
|
-
# Insert any query to get modified date from vector db
|
|
165
|
-
# NOTE: Can be optimized when CAMEL vector storage support
|
|
166
|
-
# direct chunk payload extraction
|
|
167
|
-
query_vector_any = self.embedding_model.embed(obj="any_query")
|
|
168
|
-
query_any = VectorDBQuery(query_vector_any, top_k=1)
|
|
169
|
-
result_any = vector_storage_instance.query(query_any)
|
|
170
|
-
|
|
171
|
-
# Extract the file's last modified date from the metadata
|
|
172
|
-
# in the query result
|
|
173
|
-
if result_any[0].record.payload is not None:
|
|
174
|
-
file_modified_date_from_meta = result_any[0].record.payload[
|
|
175
|
-
"metadata"
|
|
176
|
-
]['last_modified']
|
|
177
|
-
else:
|
|
178
|
-
raise ValueError(
|
|
179
|
-
"The vector storage exits but the payload is None,"
|
|
180
|
-
"please check the collection"
|
|
181
|
-
)
|
|
182
|
-
|
|
183
|
-
return file_modified_date_from_meta
|
|
184
|
-
|
|
185
126
|
def run_vector_retriever(
|
|
186
127
|
self,
|
|
187
128
|
query: str,
|
|
@@ -246,34 +187,7 @@ class AutoRetriever:
|
|
|
246
187
|
collection_name
|
|
247
188
|
)
|
|
248
189
|
|
|
249
|
-
|
|
250
|
-
# for local path since no standard way for remote url
|
|
251
|
-
file_is_modified = False # initialize with a default value
|
|
252
|
-
if (
|
|
253
|
-
vector_storage_instance.status().vector_count != 0
|
|
254
|
-
and isinstance(content, str)
|
|
255
|
-
and os.path.exists(content)
|
|
256
|
-
):
|
|
257
|
-
# Get original modified date from file
|
|
258
|
-
modified_date_from_file = (
|
|
259
|
-
self._get_file_modified_date_from_file(content)
|
|
260
|
-
)
|
|
261
|
-
# Get modified date from vector storage
|
|
262
|
-
modified_date_from_storage = (
|
|
263
|
-
self._get_file_modified_date_from_storage(
|
|
264
|
-
vector_storage_instance
|
|
265
|
-
)
|
|
266
|
-
)
|
|
267
|
-
# Determine if the file has been modified since the last
|
|
268
|
-
# check
|
|
269
|
-
file_is_modified = (
|
|
270
|
-
modified_date_from_file != modified_date_from_storage
|
|
271
|
-
)
|
|
272
|
-
|
|
273
|
-
if (
|
|
274
|
-
vector_storage_instance.status().vector_count == 0
|
|
275
|
-
or file_is_modified
|
|
276
|
-
):
|
|
190
|
+
if vector_storage_instance.status().vector_count == 0:
|
|
277
191
|
# Clear the vector storage
|
|
278
192
|
vector_storage_instance.clear()
|
|
279
193
|
# Process and store the content to the vector storage
|
|
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.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/create_qr_code/__init__.py
RENAMED
|
File without changes
|
{camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/create_qr_code/openapi.yaml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/outschool/ai-plugin.json
RENAMED
|
File without changes
|
|
File without changes
|
{camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/outschool/paths/__init__.py
RENAMED
|
File without changes
|
{camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/outschool/paths/get_classes.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/web_scraper/ai-plugin.json
RENAMED
|
File without changes
|
{camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/web_scraper/openapi.yaml
RENAMED
|
File without changes
|
{camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/camel/toolkits/open_api_specs/web_scraper/paths/__init__.py
RENAMED
|
File without changes
|
{camel_ai-0.2.4a0 → camel_ai-0.2.4a1}/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
|
|
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
|