camel-ai 0.1.5__tar.gz → 0.1.5.1__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.1.5 → camel_ai-0.1.5.1}/PKG-INFO +2 -2
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/README.md +1 -1
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/pyproject.toml +1 -1
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/agents/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/agents/base.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/agents/chat_agent.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/agents/critic_agent.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/agents/deductive_reasoner_agent.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/agents/embodied_agent.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/agents/knowledge_graph_agent.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/agents/role_assignment_agent.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/agents/task_agent.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/agents/tool_agents/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/agents/tool_agents/base.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/agents/tool_agents/hugging_face_tool_agent.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/configs/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/configs/anthropic_config.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/configs/base_config.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/configs/openai_config.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/embeddings/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/embeddings/base.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/embeddings/openai_embedding.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/embeddings/sentence_transformers_embeddings.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/functions/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/functions/google_maps_function.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/functions/math_functions.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/functions/open_api_function.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/functions/open_api_specs/coursera/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/functions/open_api_specs/coursera/openapi.yaml +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/functions/open_api_specs/klarna/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/functions/open_api_specs/klarna/openapi.yaml +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/functions/open_api_specs/speak/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/functions/open_api_specs/speak/openapi.yaml +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/functions/openai_function.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/functions/retrieval_functions.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/functions/search_functions.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/functions/slack_functions.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/functions/twitter_function.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/functions/weather_functions.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/generators.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/human.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/interpreters/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/interpreters/base.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/interpreters/internal_python_interpreter.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/interpreters/interpreter_error.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/interpreters/subprocess_interpreter.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/loaders/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/loaders/base_io.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/loaders/unstructured_io.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/memories/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/memories/agent_memories.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/memories/base.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/memories/blocks/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/memories/blocks/chat_history_block.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/memories/blocks/vectordb_block.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/memories/context_creators/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/memories/context_creators/score_based.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/memories/records.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/messages/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/messages/base.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/messages/func_message.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/models/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/models/anthropic_model.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/models/base_model.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/models/model_factory.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/models/open_source_model.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/models/openai_audio_models.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/models/openai_model.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/models/stub_model.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/prompts/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/prompts/ai_society.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/prompts/base.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/prompts/code.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/prompts/evaluation.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/prompts/misalignment.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/prompts/object_recognition.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/prompts/prompt_templates.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/prompts/role_description_prompt_template.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/prompts/solution_extraction.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/prompts/task_prompt_template.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/prompts/translation.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/responses/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/responses/agent_responses.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/retrievers/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/retrievers/auto_retriever.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/retrievers/base.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/retrievers/bm25_retriever.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/retrievers/cohere_rerank_retriever.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/retrievers/vector_retriever.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/societies/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/societies/babyagi_playing.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/societies/role_playing.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/storages/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/storages/graph_storages/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/storages/graph_storages/base.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/storages/graph_storages/graph_element.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/storages/graph_storages/neo4j_graph.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/storages/key_value_storages/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/storages/key_value_storages/base.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/storages/key_value_storages/in_memory.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/storages/key_value_storages/json.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/storages/vectordb_storages/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/storages/vectordb_storages/base.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/storages/vectordb_storages/milvus.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/storages/vectordb_storages/qdrant.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/terminators/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/terminators/base.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/terminators/response_terminator.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/terminators/token_limit_terminator.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/toolkits/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/toolkits/base.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/toolkits/github_toolkit.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/types/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/types/enums.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/types/openai_types.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/utils/__init__.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/camel/utils/commons.py +0 -0
- {camel_ai-0.1.5 → camel_ai-0.1.5.1}/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.1.5
|
|
3
|
+
Version: 0.1.5.1
|
|
4
4
|
Summary: Communicative Agents for AI Society Study
|
|
5
5
|
Home-page: https://www.camel-ai.org/
|
|
6
6
|
License: Apache-2.0
|
|
@@ -170,7 +170,7 @@ conda create --name camel python=3.10
|
|
|
170
170
|
conda activate camel
|
|
171
171
|
|
|
172
172
|
# Clone github repo
|
|
173
|
-
git clone -b v0.1.5 https://github.com/camel-ai/camel.git
|
|
173
|
+
git clone -b v0.1.5.1 https://github.com/camel-ai/camel.git
|
|
174
174
|
|
|
175
175
|
# Change directory into project directory
|
|
176
176
|
cd camel
|
|
@@ -104,7 +104,7 @@ conda create --name camel python=3.10
|
|
|
104
104
|
conda activate camel
|
|
105
105
|
|
|
106
106
|
# Clone github repo
|
|
107
|
-
git clone -b v0.1.5 https://github.com/camel-ai/camel.git
|
|
107
|
+
git clone -b v0.1.5.1 https://github.com/camel-ai/camel.git
|
|
108
108
|
|
|
109
109
|
# Change directory into project directory
|
|
110
110
|
cd camel
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|