camel-ai 0.2.7__tar.gz → 0.2.9__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.7 → camel_ai-0.2.9}/PKG-INFO +2 -2
- {camel_ai-0.2.7 → camel_ai-0.2.9}/README.md +1 -1
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/__init__.py +1 -1
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/agents/chat_agent.py +3 -3
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/models/openai_model.py +1 -1
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/societies/role_playing.py +3 -10
- {camel_ai-0.2.7 → camel_ai-0.2.9}/pyproject.toml +1 -1
- {camel_ai-0.2.7 → camel_ai-0.2.9}/LICENSE +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/agents/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/agents/base.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/agents/critic_agent.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/agents/deductive_reasoner_agent.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/agents/embodied_agent.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/agents/knowledge_graph_agent.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/agents/role_assignment_agent.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/agents/search_agent.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/agents/task_agent.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/agents/tool_agents/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/agents/tool_agents/base.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/agents/tool_agents/hugging_face_tool_agent.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/bots/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/bots/discord_app.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/bots/slack/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/bots/slack/models.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/bots/slack/slack_app.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/bots/telegram_bot.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/configs/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/configs/anthropic_config.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/configs/base_config.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/configs/gemini_config.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/configs/groq_config.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/configs/litellm_config.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/configs/mistral_config.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/configs/ollama_config.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/configs/openai_config.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/configs/qwen_config.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/configs/reka_config.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/configs/samba_config.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/configs/togetherai_config.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/configs/vllm_config.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/configs/yi_config.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/configs/zhipuai_config.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/embeddings/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/embeddings/base.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/embeddings/mistral_embedding.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/embeddings/openai_embedding.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/embeddings/sentence_transformers_embeddings.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/embeddings/vlm_embedding.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/generators.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/human.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/interpreters/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/interpreters/base.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/interpreters/docker_interpreter.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/interpreters/internal_python_interpreter.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/interpreters/interpreter_error.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/interpreters/ipython_interpreter.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/interpreters/subprocess_interpreter.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/loaders/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/loaders/apify_reader.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/loaders/base_io.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/loaders/chunkr_reader.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/loaders/firecrawl_reader.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/loaders/jina_url_reader.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/loaders/unstructured_io.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/memories/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/memories/agent_memories.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/memories/base.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/memories/blocks/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/memories/blocks/chat_history_block.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/memories/blocks/vectordb_block.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/memories/context_creators/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/memories/context_creators/score_based.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/memories/records.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/messages/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/messages/base.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/messages/func_message.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/models/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/models/anthropic_model.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/models/azure_openai_model.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/models/base_model.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/models/gemini_model.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/models/groq_model.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/models/litellm_model.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/models/mistral_model.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/models/model_factory.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/models/nemotron_model.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/models/ollama_model.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/models/openai_audio_models.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/models/openai_compatible_model.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/models/qwen_model.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/models/reka_model.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/models/samba_model.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/models/stub_model.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/models/togetherai_model.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/models/vllm_model.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/models/yi_model.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/models/zhipuai_model.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/prompts/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/prompts/ai_society.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/prompts/base.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/prompts/code.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/prompts/evaluation.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/prompts/generate_text_embedding_data.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/prompts/image_craft.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/prompts/misalignment.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/prompts/multi_condition_image_craft.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/prompts/object_recognition.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/prompts/prompt_templates.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/prompts/role_description_prompt_template.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/prompts/solution_extraction.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/prompts/task_prompt_template.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/prompts/translation.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/prompts/video_description_prompt.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/responses/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/responses/agent_responses.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/retrievers/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/retrievers/auto_retriever.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/retrievers/base.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/retrievers/bm25_retriever.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/retrievers/cohere_rerank_retriever.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/retrievers/vector_retriever.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/societies/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/societies/babyagi_playing.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/societies/workforce/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/societies/workforce/base.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/societies/workforce/prompts.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/societies/workforce/role_playing_worker.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/societies/workforce/single_agent_worker.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/societies/workforce/task_channel.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/societies/workforce/utils.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/societies/workforce/worker.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/societies/workforce/workforce.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/storages/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/storages/graph_storages/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/storages/graph_storages/base.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/storages/graph_storages/graph_element.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/storages/graph_storages/nebula_graph.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/storages/graph_storages/neo4j_graph.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/storages/key_value_storages/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/storages/key_value_storages/base.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/storages/key_value_storages/in_memory.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/storages/key_value_storages/json.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/storages/key_value_storages/redis.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/storages/object_storages/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/storages/object_storages/amazon_s3.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/storages/object_storages/azure_blob.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/storages/object_storages/base.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/storages/object_storages/google_cloud.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/storages/vectordb_storages/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/storages/vectordb_storages/base.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/storages/vectordb_storages/milvus.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/storages/vectordb_storages/qdrant.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/tasks/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/tasks/task.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/tasks/task_prompt.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/terminators/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/terminators/base.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/terminators/response_terminator.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/terminators/token_limit_terminator.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/arxiv_toolkit.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/ask_news_toolkit.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/base.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/code_execution.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/dalle_toolkit.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/data_commons_toolkit.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/function_tool.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/github_toolkit.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/google_maps_toolkit.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/google_scholar_toolkit.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/linkedin_toolkit.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/math_toolkit.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/notion_toolkit.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/biztoc/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/biztoc/ai-plugin.json +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/biztoc/openapi.yaml +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/coursera/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/coursera/openapi.yaml +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/create_qr_code/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/create_qr_code/openapi.yaml +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/klarna/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/klarna/openapi.yaml +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/nasa_apod/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/nasa_apod/openapi.yaml +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/outschool/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/outschool/ai-plugin.json +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/outschool/openapi.yaml +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/outschool/paths/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/outschool/paths/get_classes.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/outschool/paths/search_teachers.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/security_config.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/speak/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/speak/openapi.yaml +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/web_scraper/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/web_scraper/ai-plugin.json +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/web_scraper/openapi.yaml +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/web_scraper/paths/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/web_scraper/paths/scraper.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/open_api_toolkit.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/reddit_toolkit.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/retrieval_toolkit.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/search_toolkit.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/slack_toolkit.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/twitter_toolkit.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/weather_toolkit.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/toolkits/whatsapp_toolkit.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/types/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/types/enums.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/types/openai_types.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/types/unified_model_type.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/utils/__init__.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/utils/async_func.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/utils/commons.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/camel/utils/constants.py +0 -0
- {camel_ai-0.2.7 → camel_ai-0.2.9}/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.9
|
|
4
4
|
Summary: Communicative Agents for AI Society Study
|
|
5
5
|
Home-page: https://www.camel-ai.org/
|
|
6
6
|
License: Apache-2.0
|
|
@@ -254,7 +254,7 @@ conda create --name camel python=3.10
|
|
|
254
254
|
conda activate camel
|
|
255
255
|
|
|
256
256
|
# Clone github repo
|
|
257
|
-
git clone -b v0.2.
|
|
257
|
+
git clone -b v0.2.9 https://github.com/camel-ai/camel.git
|
|
258
258
|
|
|
259
259
|
# Change directory into project directory
|
|
260
260
|
cd camel
|
|
@@ -144,7 +144,7 @@ conda create --name camel python=3.10
|
|
|
144
144
|
conda activate camel
|
|
145
145
|
|
|
146
146
|
# Clone github repo
|
|
147
|
-
git clone -b v0.2.
|
|
147
|
+
git clone -b v0.2.9 https://github.com/camel-ai/camel.git
|
|
148
148
|
|
|
149
149
|
# Change directory into project directory
|
|
150
150
|
cd camel
|
|
@@ -426,12 +426,12 @@ class ChatAgent(BaseAgent):
|
|
|
426
426
|
}
|
|
427
427
|
|
|
428
428
|
def init_messages(self) -> None:
|
|
429
|
-
r"""Initializes the stored messages list with the
|
|
429
|
+
r"""Initializes the stored messages list with the current system
|
|
430
430
|
message.
|
|
431
431
|
"""
|
|
432
|
-
if self.
|
|
432
|
+
if self._system_message is not None:
|
|
433
433
|
system_record = MemoryRecord(
|
|
434
|
-
message=self.
|
|
434
|
+
message=self._system_message,
|
|
435
435
|
role_at_backend=OpenAIBackendRole.SYSTEM,
|
|
436
436
|
)
|
|
437
437
|
self.memory.clear()
|
|
@@ -123,7 +123,7 @@ class OpenAIModel(BaseModelBackend):
|
|
|
123
123
|
|
|
124
124
|
self.model_config_dict["temperature"] = 1.0
|
|
125
125
|
self.model_config_dict["top_p"] = 1.0
|
|
126
|
-
self.model_config_dict["n"] = 1
|
|
126
|
+
self.model_config_dict["n"] = 1
|
|
127
127
|
self.model_config_dict["presence_penalty"] = 0.0
|
|
128
128
|
self.model_config_dict["frequency_penalty"] = 0.0
|
|
129
129
|
|
|
@@ -23,10 +23,10 @@ from camel.agents import (
|
|
|
23
23
|
from camel.generators import SystemMessageGenerator
|
|
24
24
|
from camel.human import Human
|
|
25
25
|
from camel.messages import BaseMessage
|
|
26
|
-
from camel.models import BaseModelBackend
|
|
26
|
+
from camel.models import BaseModelBackend
|
|
27
27
|
from camel.prompts import TextPrompt
|
|
28
28
|
from camel.responses import ChatAgentResponse
|
|
29
|
-
from camel.types import
|
|
29
|
+
from camel.types import RoleType, TaskType
|
|
30
30
|
|
|
31
31
|
logger = logging.getLogger(__name__)
|
|
32
32
|
logger.setLevel(logging.WARNING)
|
|
@@ -111,14 +111,7 @@ class RolePlaying:
|
|
|
111
111
|
self.with_task_specify = with_task_specify
|
|
112
112
|
self.with_task_planner = with_task_planner
|
|
113
113
|
self.with_critic_in_the_loop = with_critic_in_the_loop
|
|
114
|
-
self.model
|
|
115
|
-
model
|
|
116
|
-
if model is not None
|
|
117
|
-
else ModelFactory.create(
|
|
118
|
-
model_platform=ModelPlatformType.DEFAULT,
|
|
119
|
-
model_type=ModelType.DEFAULT,
|
|
120
|
-
)
|
|
121
|
-
)
|
|
114
|
+
self.model = model
|
|
122
115
|
self.task_type = task_type
|
|
123
116
|
self.task_prompt = task_prompt
|
|
124
117
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
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.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/outschool/paths/get_classes.py
RENAMED
|
File without changes
|
{camel_ai-0.2.7 → camel_ai-0.2.9}/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.7 → camel_ai-0.2.9}/camel/toolkits/open_api_specs/web_scraper/paths/__init__.py
RENAMED
|
File without changes
|
{camel_ai-0.2.7 → camel_ai-0.2.9}/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
|