camel-ai 0.2.4a0__tar.gz → 0.2.6__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.6}/PKG-INFO +2 -2
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/README.md +1 -1
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/__init__.py +1 -1
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/agents/chat_agent.py +7 -1
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/configs/__init__.py +0 -4
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/configs/samba_config.py +1 -38
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/models/samba_model.py +1 -1
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/retrievers/auto_retriever.py +1 -87
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/retrievers/vector_retriever.py +4 -0
- {camel_ai-0.2.4a0/camel → camel_ai-0.2.6/camel/societies}/workforce/base.py +2 -2
- {camel_ai-0.2.4a0/camel → camel_ai-0.2.6/camel/societies}/workforce/role_playing_worker.py +5 -5
- {camel_ai-0.2.4a0/camel → camel_ai-0.2.6/camel/societies}/workforce/single_agent_worker.py +3 -3
- {camel_ai-0.2.4a0/camel → camel_ai-0.2.6/camel/societies}/workforce/worker.py +3 -3
- {camel_ai-0.2.4a0/camel → camel_ai-0.2.6/camel/societies}/workforce/workforce.py +10 -10
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/dalle_toolkit.py +2 -3
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/pyproject.toml +1 -1
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/LICENSE +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/agents/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/agents/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/agents/critic_agent.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/agents/deductive_reasoner_agent.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/agents/embodied_agent.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/agents/knowledge_graph_agent.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/agents/role_assignment_agent.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/agents/search_agent.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/agents/task_agent.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/agents/tool_agents/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/agents/tool_agents/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/agents/tool_agents/hugging_face_tool_agent.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/bots/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/bots/discord_app.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/bots/slack/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/bots/slack/models.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/bots/slack/slack_app.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/bots/telegram_bot.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/configs/anthropic_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/configs/base_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/configs/gemini_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/configs/groq_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/configs/litellm_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/configs/mistral_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/configs/ollama_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/configs/openai_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/configs/reka_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/configs/togetherai_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/configs/vllm_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/configs/zhipuai_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/embeddings/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/embeddings/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/embeddings/mistral_embedding.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/embeddings/openai_embedding.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/embeddings/sentence_transformers_embeddings.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/embeddings/vlm_embedding.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/generators.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/human.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/interpreters/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/interpreters/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/interpreters/docker_interpreter.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/interpreters/internal_python_interpreter.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/interpreters/interpreter_error.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/interpreters/ipython_interpreter.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/interpreters/subprocess_interpreter.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/loaders/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/loaders/base_io.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/loaders/chunkr_reader.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/loaders/firecrawl_reader.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/loaders/jina_url_reader.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/loaders/unstructured_io.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/memories/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/memories/agent_memories.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/memories/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/memories/blocks/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/memories/blocks/chat_history_block.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/memories/blocks/vectordb_block.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/memories/context_creators/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/memories/context_creators/score_based.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/memories/records.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/messages/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/messages/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/messages/func_message.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/models/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/models/anthropic_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/models/azure_openai_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/models/base_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/models/gemini_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/models/groq_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/models/litellm_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/models/mistral_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/models/model_factory.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/models/nemotron_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/models/ollama_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/models/openai_audio_models.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/models/openai_compatible_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/models/openai_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/models/reka_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/models/stub_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/models/togetherai_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/models/vllm_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/models/zhipuai_model.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/prompts/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/prompts/ai_society.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/prompts/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/prompts/code.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/prompts/evaluation.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/prompts/generate_text_embedding_data.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/prompts/image_craft.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/prompts/misalignment.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/prompts/multi_condition_image_craft.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/prompts/object_recognition.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/prompts/prompt_templates.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/prompts/role_description_prompt_template.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/prompts/solution_extraction.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/prompts/task_prompt_template.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/prompts/translation.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/prompts/video_description_prompt.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/responses/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/responses/agent_responses.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/retrievers/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/retrievers/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/retrievers/bm25_retriever.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/retrievers/cohere_rerank_retriever.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/societies/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/societies/babyagi_playing.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/societies/role_playing.py +0 -0
- {camel_ai-0.2.4a0/camel → camel_ai-0.2.6/camel/societies}/workforce/__init__.py +0 -0
- {camel_ai-0.2.4a0/camel → camel_ai-0.2.6/camel/societies}/workforce/prompts.py +0 -0
- {camel_ai-0.2.4a0/camel → camel_ai-0.2.6/camel/societies}/workforce/task_channel.py +0 -0
- {camel_ai-0.2.4a0/camel → camel_ai-0.2.6/camel/societies}/workforce/utils.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/storages/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/storages/graph_storages/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/storages/graph_storages/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/storages/graph_storages/graph_element.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/storages/graph_storages/nebula_graph.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/storages/graph_storages/neo4j_graph.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/storages/key_value_storages/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/storages/key_value_storages/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/storages/key_value_storages/in_memory.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/storages/key_value_storages/json.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/storages/key_value_storages/redis.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/storages/object_storages/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/storages/object_storages/amazon_s3.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/storages/object_storages/azure_blob.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/storages/object_storages/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/storages/object_storages/google_cloud.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/storages/vectordb_storages/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/storages/vectordb_storages/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/storages/vectordb_storages/milvus.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/storages/vectordb_storages/qdrant.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/tasks/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/tasks/task.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/tasks/task_prompt.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/terminators/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/terminators/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/terminators/response_terminator.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/terminators/token_limit_terminator.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/arxiv_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/ask_news_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/base.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/code_execution.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/function_tool.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/github_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/google_maps_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/google_scholar_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/linkedin_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/math_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/biztoc/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/biztoc/ai-plugin.json +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/biztoc/openapi.yaml +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/coursera/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/coursera/openapi.yaml +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/create_qr_code/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/create_qr_code/openapi.yaml +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/klarna/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/klarna/openapi.yaml +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/nasa_apod/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/nasa_apod/openapi.yaml +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/outschool/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/outschool/ai-plugin.json +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/outschool/openapi.yaml +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/outschool/paths/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/outschool/paths/get_classes.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/outschool/paths/search_teachers.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/security_config.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/speak/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/speak/openapi.yaml +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/web_scraper/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/web_scraper/ai-plugin.json +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/web_scraper/openapi.yaml +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/web_scraper/paths/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/web_scraper/paths/scraper.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/reddit_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/retrieval_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/search_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/slack_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/twitter_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/weather_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/whatsapp_toolkit.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/types/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/types/enums.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/types/openai_types.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/types/unified_model_type.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/utils/__init__.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/utils/async_func.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/utils/commons.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/utils/constants.py +0 -0
- {camel_ai-0.2.4a0 → camel_ai-0.2.6}/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.6
|
|
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.6 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.6 https://github.com/camel-ai/camel.git
|
|
120
120
|
|
|
121
121
|
# Change directory into project directory
|
|
122
122
|
cd camel
|
|
@@ -217,6 +217,8 @@ class ChatAgent(BaseAgent):
|
|
|
217
217
|
self.response_terminators = response_terminators or []
|
|
218
218
|
self.init_messages()
|
|
219
219
|
|
|
220
|
+
self.tool_prompt_added = False
|
|
221
|
+
|
|
220
222
|
# ruff: noqa: E501
|
|
221
223
|
def _generate_tool_prompt(self, tool_schema_list: List[Dict]) -> str:
|
|
222
224
|
tool_prompts = []
|
|
@@ -448,7 +450,10 @@ class ChatAgent(BaseAgent):
|
|
|
448
450
|
)
|
|
449
451
|
|
|
450
452
|
if "llama" in self.model_type.lower():
|
|
451
|
-
if
|
|
453
|
+
if (
|
|
454
|
+
self.model_backend.model_config_dict.get("tools", None)
|
|
455
|
+
and not self.tool_prompt_added
|
|
456
|
+
):
|
|
452
457
|
tool_prompt = self._generate_tool_prompt(self.tool_schema_list)
|
|
453
458
|
|
|
454
459
|
tool_sys_msg = BaseMessage.make_assistant_message(
|
|
@@ -457,6 +462,7 @@ class ChatAgent(BaseAgent):
|
|
|
457
462
|
)
|
|
458
463
|
|
|
459
464
|
self.update_memory(tool_sys_msg, OpenAIBackendRole.SYSTEM)
|
|
465
|
+
self.tool_prompt_added = True
|
|
460
466
|
|
|
461
467
|
self.update_memory(input_message, OpenAIBackendRole.USER)
|
|
462
468
|
|
|
@@ -22,10 +22,8 @@ from .openai_config import OPENAI_API_PARAMS, ChatGPTConfig
|
|
|
22
22
|
from .reka_config import REKA_API_PARAMS, RekaConfig
|
|
23
23
|
from .samba_config import (
|
|
24
24
|
SAMBA_CLOUD_API_PARAMS,
|
|
25
|
-
SAMBA_FAST_API_PARAMS,
|
|
26
25
|
SAMBA_VERSE_API_PARAMS,
|
|
27
26
|
SambaCloudAPIConfig,
|
|
28
|
-
SambaFastAPIConfig,
|
|
29
27
|
SambaVerseAPIConfig,
|
|
30
28
|
)
|
|
31
29
|
from .togetherai_config import TOGETHERAI_API_PARAMS, TogetherAIConfig
|
|
@@ -54,8 +52,6 @@ __all__ = [
|
|
|
54
52
|
'MISTRAL_API_PARAMS',
|
|
55
53
|
'RekaConfig',
|
|
56
54
|
'REKA_API_PARAMS',
|
|
57
|
-
'SambaFastAPIConfig',
|
|
58
|
-
'SAMBA_FAST_API_PARAMS',
|
|
59
55
|
'SambaVerseAPIConfig',
|
|
60
56
|
'SAMBA_VERSE_API_PARAMS',
|
|
61
57
|
'SambaCloudAPIConfig',
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
# =========== Copyright 2023 @ CAMEL-AI.org. All Rights Reserved. ===========
|
|
14
14
|
from __future__ import annotations
|
|
15
15
|
|
|
16
|
-
from typing import Any,
|
|
16
|
+
from typing import Any, Optional, Sequence, Union
|
|
17
17
|
|
|
18
18
|
from pydantic import Field
|
|
19
19
|
|
|
@@ -21,43 +21,6 @@ from camel.configs.base_config import BaseConfig
|
|
|
21
21
|
from camel.types import NOT_GIVEN, NotGiven
|
|
22
22
|
|
|
23
23
|
|
|
24
|
-
class SambaFastAPIConfig(BaseConfig):
|
|
25
|
-
r"""Defines the parameters for generating chat completions using the
|
|
26
|
-
SambaNova Fast API.
|
|
27
|
-
|
|
28
|
-
Args:
|
|
29
|
-
max_tokens (Optional[int], optional): the maximum number of tokens to
|
|
30
|
-
generate, e.g. 100.
|
|
31
|
-
(default: :obj:`2048`)
|
|
32
|
-
stop (Optional[Union[str,list[str]]]): Stop generation if this token
|
|
33
|
-
is detected. Or if one of these tokens is detected when providing
|
|
34
|
-
a string list.
|
|
35
|
-
(default: :obj:`None`)
|
|
36
|
-
stream (Optional[bool]): If True, partial message deltas will be sent
|
|
37
|
-
as data-only server-sent events as they become available.
|
|
38
|
-
Currently SambaNova Fast API only support stream mode.
|
|
39
|
-
(default: :obj:`True`)
|
|
40
|
-
stream_options (Optional[Dict]): Additional options for streaming.
|
|
41
|
-
(default: :obj:`{"include_usage": True}`)
|
|
42
|
-
"""
|
|
43
|
-
|
|
44
|
-
max_tokens: Optional[int] = 2048
|
|
45
|
-
stop: Optional[Union[str, list[str]]] = None
|
|
46
|
-
stream: Optional[bool] = True
|
|
47
|
-
stream_options: Optional[Dict] = {"include_usage": True} # noqa: RUF012
|
|
48
|
-
|
|
49
|
-
def as_dict(self) -> dict[str, Any]:
|
|
50
|
-
config_dict = super().as_dict()
|
|
51
|
-
if "tools" in config_dict:
|
|
52
|
-
del config_dict["tools"] # SambaNova does not support tool calling
|
|
53
|
-
return config_dict
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
SAMBA_FAST_API_PARAMS = {
|
|
57
|
-
param for param in SambaFastAPIConfig().model_fields.keys()
|
|
58
|
-
}
|
|
59
|
-
|
|
60
|
-
|
|
61
24
|
class SambaVerseAPIConfig(BaseConfig):
|
|
62
25
|
r"""Defines the parameters for generating chat completions using the
|
|
63
26
|
SambaVerse API.
|
|
@@ -147,7 +147,7 @@ class SambaModel(BaseModelBackend):
|
|
|
147
147
|
def run( # type: ignore[misc]
|
|
148
148
|
self, messages: List[OpenAIMessage]
|
|
149
149
|
) -> Union[ChatCompletion, Stream[ChatCompletionChunk]]:
|
|
150
|
-
r"""Runs SambaNova's
|
|
150
|
+
r"""Runs SambaNova's service.
|
|
151
151
|
|
|
152
152
|
Args:
|
|
153
153
|
messages (List[OpenAIMessage]): Message list with the chat history
|
|
@@ -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
|
|
@@ -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
|
{camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/create_qr_code/__init__.py
RENAMED
|
File without changes
|
{camel_ai-0.2.4a0 → camel_ai-0.2.6}/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
|
|
File without changes
|
|
File without changes
|
{camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/outschool/paths/__init__.py
RENAMED
|
File without changes
|
{camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/outschool/paths/get_classes.py
RENAMED
|
File without changes
|
{camel_ai-0.2.4a0 → camel_ai-0.2.6}/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
|
{camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/web_scraper/ai-plugin.json
RENAMED
|
File without changes
|
|
File without changes
|
{camel_ai-0.2.4a0 → camel_ai-0.2.6}/camel/toolkits/open_api_specs/web_scraper/paths/__init__.py
RENAMED
|
File without changes
|
{camel_ai-0.2.4a0 → camel_ai-0.2.6}/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
|