camel-ai 0.2.36__tar.gz → 0.2.38__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.36 → camel_ai-0.2.38}/PKG-INFO +103 -8
- {camel_ai-0.2.36 → camel_ai-0.2.38}/README.md +49 -2
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/__init__.py +1 -1
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/agents/__init__.py +2 -0
- camel_ai-0.2.38/camel/agents/repo_agent.py +579 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/configs/aiml_config.py +20 -19
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/configs/anthropic_config.py +25 -27
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/configs/cohere_config.py +11 -10
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/configs/deepseek_config.py +16 -16
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/configs/gemini_config.py +8 -8
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/configs/groq_config.py +18 -19
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/configs/internlm_config.py +8 -8
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/configs/litellm_config.py +26 -24
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/configs/mistral_config.py +8 -8
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/configs/moonshot_config.py +11 -11
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/configs/nvidia_config.py +13 -13
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/configs/ollama_config.py +14 -15
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/configs/openai_config.py +3 -3
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/configs/openrouter_config.py +9 -9
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/configs/qwen_config.py +8 -8
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/configs/reka_config.py +12 -11
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/configs/samba_config.py +14 -14
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/configs/sglang_config.py +15 -16
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/configs/siliconflow_config.py +18 -17
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/configs/togetherai_config.py +18 -19
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/configs/vllm_config.py +18 -19
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/configs/yi_config.py +7 -8
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/configs/zhipuai_config.py +8 -9
- camel_ai-0.2.38/camel/datagen/evol_instruct/__init__.py +20 -0
- camel_ai-0.2.38/camel/datagen/evol_instruct/evol_instruct.py +424 -0
- camel_ai-0.2.38/camel/datagen/evol_instruct/scorer.py +166 -0
- camel_ai-0.2.38/camel/datagen/evol_instruct/templates.py +268 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/datasets/static_dataset.py +25 -23
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/environments/models.py +10 -1
- camel_ai-0.2.38/camel/environments/single_step.py +447 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/extractors/__init__.py +16 -1
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/interpreters/docker_interpreter.py +1 -1
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/interpreters/e2b_interpreter.py +1 -1
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/interpreters/subprocess_interpreter.py +1 -1
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/loaders/__init__.py +2 -2
- camel_ai-0.2.36/camel/loaders/panda_reader.py → camel_ai-0.2.38/camel/loaders/pandas_reader.py +61 -30
- camel_ai-0.2.38/camel/memories/context_creators/score_based.py +290 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/aiml_model.py +9 -3
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/anthropic_model.py +11 -3
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/azure_openai_model.py +9 -3
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/base_audio_model.py +6 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/base_model.py +4 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/deepseek_model.py +9 -3
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/gemini_model.py +9 -3
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/groq_model.py +9 -3
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/internlm_model.py +8 -2
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/model_factory.py +4 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/moonshot_model.py +8 -2
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/nemotron_model.py +9 -3
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/nvidia_model.py +9 -3
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/ollama_model.py +9 -3
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/openai_audio_models.py +5 -3
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/openai_compatible_model.py +9 -3
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/openai_model.py +9 -3
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/openrouter_model.py +9 -3
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/qwen_model.py +9 -3
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/samba_model.py +9 -3
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/sglang_model.py +11 -4
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/siliconflow_model.py +8 -2
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/stub_model.py +2 -1
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/togetherai_model.py +9 -3
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/vllm_model.py +9 -3
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/yi_model.py +9 -3
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/zhipuai_model.py +9 -3
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/retrievers/auto_retriever.py +14 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/storages/__init__.py +2 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/storages/vectordb_storages/__init__.py +2 -0
- camel_ai-0.2.38/camel/storages/vectordb_storages/tidb.py +332 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/__init__.py +7 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/browser_toolkit.py +84 -61
- camel_ai-0.2.38/camel/toolkits/openai_agent_toolkit.py +131 -0
- camel_ai-0.2.38/camel/toolkits/searxng_toolkit.py +207 -0
- camel_ai-0.2.38/camel/toolkits/thinking_toolkit.py +230 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/types/enums.py +4 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/utils/chunker/code_chunker.py +9 -15
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/verifiers/base.py +28 -5
- camel_ai-0.2.38/camel/verifiers/python_verifier.py +466 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/pyproject.toml +56 -6
- camel_ai-0.2.36/camel/environments/single_step.py +0 -287
- camel_ai-0.2.36/camel/memories/context_creators/score_based.py +0 -159
- camel_ai-0.2.36/camel/verifiers/python_verifier.py +0 -213
- {camel_ai-0.2.36 → camel_ai-0.2.38}/.gitignore +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/LICENSE +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/agents/_types.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/agents/_utils.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/agents/base.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/agents/chat_agent.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/agents/critic_agent.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/agents/deductive_reasoner_agent.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/agents/embodied_agent.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/agents/knowledge_graph_agent.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/agents/multi_hop_generator_agent.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/agents/programmed_agent_instruction.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/agents/role_assignment_agent.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/agents/search_agent.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/agents/task_agent.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/agents/tool_agents/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/agents/tool_agents/base.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/agents/tool_agents/hugging_face_tool_agent.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/benchmarks/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/benchmarks/apibank.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/benchmarks/apibench.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/benchmarks/base.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/benchmarks/gaia.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/benchmarks/nexus.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/benchmarks/ragbench.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/bots/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/bots/discord/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/bots/discord/discord_app.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/bots/discord/discord_installation.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/bots/discord/discord_store.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/bots/slack/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/bots/slack/models.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/bots/slack/slack_app.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/bots/telegram_bot.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/configs/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/configs/base_config.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/data_collector/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/data_collector/alpaca_collector.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/data_collector/base.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/data_collector/sharegpt_collector.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/datagen/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/datagen/cot_datagen.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/datagen/self_improving_cot.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/datagen/self_instruct/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/datagen/self_instruct/filter/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/datagen/self_instruct/filter/filter_function.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/datagen/self_instruct/filter/filter_registry.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/datagen/self_instruct/filter/instruction_filter.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/datagen/self_instruct/self_instruct.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/datagen/self_instruct/templates.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/datagen/source2synth/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/datagen/source2synth/data_processor.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/datagen/source2synth/models.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/datagen/source2synth/user_data_processor_config.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/datahubs/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/datahubs/base.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/datahubs/huggingface.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/datahubs/models.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/datasets/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/datasets/base_generator.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/datasets/few_shot_generator.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/datasets/models.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/embeddings/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/embeddings/base.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/embeddings/jina_embedding.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/embeddings/mistral_embedding.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/embeddings/openai_compatible_embedding.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/embeddings/openai_embedding.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/embeddings/sentence_transformers_embeddings.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/embeddings/vlm_embedding.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/environments/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/environments/multi_step.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/extractors/base.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/extractors/python_strategies.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/generators.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/human.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/interpreters/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/interpreters/base.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/interpreters/docker/Dockerfile +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/interpreters/internal_python_interpreter.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/interpreters/interpreter_error.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/interpreters/ipython_interpreter.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/loaders/apify_reader.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/loaders/base_io.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/loaders/chunkr_reader.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/loaders/firecrawl_reader.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/loaders/jina_url_reader.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/loaders/mineru_extractor.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/loaders/unstructured_io.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/logger.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/memories/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/memories/agent_memories.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/memories/base.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/memories/blocks/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/memories/blocks/chat_history_block.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/memories/blocks/vectordb_block.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/memories/context_creators/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/memories/records.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/messages/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/messages/base.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/messages/conversion/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/messages/conversion/alpaca.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/messages/conversion/conversation_models.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/messages/conversion/sharegpt/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/messages/conversion/sharegpt/function_call_formatter.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/messages/conversion/sharegpt/hermes/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/messages/conversion/sharegpt/hermes/hermes_function_formatter.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/messages/func_message.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/_utils.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/cohere_model.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/fish_audio_model.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/litellm_model.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/mistral_model.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/model_manager.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/reka_model.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/reward/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/reward/base_reward_model.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/reward/evaluator.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/reward/nemotron_model.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/reward/skywork_model.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/models/volcano_model.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/personas/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/personas/persona.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/personas/persona_hub.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/prompts/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/prompts/ai_society.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/prompts/base.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/prompts/code.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/prompts/evaluation.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/prompts/generate_text_embedding_data.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/prompts/image_craft.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/prompts/misalignment.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/prompts/multi_condition_image_craft.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/prompts/object_recognition.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/prompts/persona_hub.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/prompts/prompt_templates.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/prompts/role_description_prompt_template.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/prompts/solution_extraction.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/prompts/task_prompt_template.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/prompts/translation.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/prompts/video_description_prompt.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/py.typed +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/responses/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/responses/agent_responses.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/retrievers/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/retrievers/base.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/retrievers/bm25_retriever.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/retrievers/cohere_rerank_retriever.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/retrievers/hybrid_retrival.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/retrievers/vector_retriever.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/runtime/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/runtime/api.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/runtime/base.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/runtime/configs.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/runtime/docker_runtime.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/runtime/llm_guard_runtime.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/runtime/remote_http_runtime.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/runtime/utils/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/runtime/utils/function_risk_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/runtime/utils/ignore_risk_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/schemas/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/schemas/base.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/schemas/openai_converter.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/schemas/outlines_converter.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/societies/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/societies/babyagi_playing.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/societies/role_playing.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/societies/workforce/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/societies/workforce/base.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/societies/workforce/prompts.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/societies/workforce/role_playing_worker.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/societies/workforce/single_agent_worker.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/societies/workforce/task_channel.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/societies/workforce/utils.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/societies/workforce/worker.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/societies/workforce/workforce.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/storages/graph_storages/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/storages/graph_storages/base.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/storages/graph_storages/graph_element.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/storages/graph_storages/nebula_graph.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/storages/graph_storages/neo4j_graph.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/storages/key_value_storages/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/storages/key_value_storages/base.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/storages/key_value_storages/in_memory.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/storages/key_value_storages/json.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/storages/key_value_storages/mem0_cloud.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/storages/key_value_storages/redis.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/storages/object_storages/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/storages/object_storages/amazon_s3.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/storages/object_storages/azure_blob.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/storages/object_storages/base.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/storages/object_storages/google_cloud.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/storages/vectordb_storages/base.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/storages/vectordb_storages/milvus.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/storages/vectordb_storages/qdrant.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/tasks/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/tasks/task.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/tasks/task_prompt.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/terminators/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/terminators/base.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/terminators/response_terminator.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/terminators/token_limit_terminator.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/arxiv_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/ask_news_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/audio_analysis_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/base.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/code_execution.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/dalle_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/dappier_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/data_commons_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/excel_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/file_write_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/function_tool.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/github_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/google_maps_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/google_scholar_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/human_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/image_analysis_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/linkedin_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/math_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/mcp_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/memory_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/meshy_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/mineru_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/networkx_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/notion_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_specs/biztoc/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_specs/biztoc/ai-plugin.json +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_specs/biztoc/openapi.yaml +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_specs/coursera/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_specs/coursera/openapi.yaml +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_specs/create_qr_code/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_specs/create_qr_code/openapi.yaml +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_specs/klarna/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_specs/klarna/openapi.yaml +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_specs/nasa_apod/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_specs/nasa_apod/openapi.yaml +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_specs/outschool/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_specs/outschool/ai-plugin.json +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_specs/outschool/openapi.yaml +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_specs/outschool/paths/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_specs/outschool/paths/get_classes.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_specs/outschool/paths/search_teachers.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_specs/security_config.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_specs/speak/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_specs/speak/openapi.yaml +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_specs/web_scraper/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_specs/web_scraper/ai-plugin.json +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_specs/web_scraper/openapi.yaml +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_specs/web_scraper/paths/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_specs/web_scraper/paths/scraper.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/open_api_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/openbb_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/page_script.js +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/pubmed_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/reddit_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/retrieval_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/search_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/semantic_scholar_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/slack_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/stripe_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/sympy_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/terminal_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/twitter_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/video_analysis_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/video_download_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/weather_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/whatsapp_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/toolkits/zapier_toolkit.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/types/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/types/agents/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/types/agents/tool_calling_record.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/types/openai_types.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/types/unified_model_type.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/utils/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/utils/async_func.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/utils/chunker/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/utils/chunker/base.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/utils/chunker/uio_chunker.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/utils/commons.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/utils/constants.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/utils/deduplication.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/utils/response_format.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/utils/token_counting.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/verifiers/__init__.py +0 -0
- {camel_ai-0.2.36 → camel_ai-0.2.38}/camel/verifiers/models.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: camel-ai
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.38
|
|
4
4
|
Summary: Communicative Agents for AI Society Study
|
|
5
5
|
Project-URL: Homepage, https://www.camel-ai.org/
|
|
6
6
|
Project-URL: Repository, https://github.com/camel-ai/camel
|
|
@@ -14,11 +14,9 @@ Requires-Dist: colorama<0.5,>=0.4.6
|
|
|
14
14
|
Requires-Dist: docstring-parser<0.16,>=0.15
|
|
15
15
|
Requires-Dist: httpx<1.0.0dev,>=0.28.0
|
|
16
16
|
Requires-Dist: jsonschema<5,>=4
|
|
17
|
-
Requires-Dist:
|
|
18
|
-
Requires-Dist: openai<2,>=1.59.7
|
|
17
|
+
Requires-Dist: openai<2,>=1.68.0
|
|
19
18
|
Requires-Dist: psutil<6,>=5.9.8
|
|
20
19
|
Requires-Dist: pydantic<2.10,>=1.9
|
|
21
|
-
Requires-Dist: pyyaml<7,>=6.0.2
|
|
22
20
|
Requires-Dist: tiktoken<0.8,>=0.7.0
|
|
23
21
|
Provides-Extra: all
|
|
24
22
|
Requires-Dist: accelerate<0.27,>=0.26.0; extra == 'all'
|
|
@@ -67,6 +65,7 @@ Requires-Dist: neo4j<6,>=5.18.0; extra == 'all'
|
|
|
67
65
|
Requires-Dist: networkx<4,>=3.4.2; extra == 'all'
|
|
68
66
|
Requires-Dist: newspaper3k<0.3,>=0.2.8; extra == 'all'
|
|
69
67
|
Requires-Dist: notion-client<3,>=2.2.1; extra == 'all'
|
|
68
|
+
Requires-Dist: numpy~=1.26; extra == 'all'
|
|
70
69
|
Requires-Dist: openapi-spec-validator<0.8,>=0.7.1; extra == 'all'
|
|
71
70
|
Requires-Dist: opencv-python<5,>=4; extra == 'all'
|
|
72
71
|
Requires-Dist: openpyxl>=3.1.5; extra == 'all'
|
|
@@ -79,7 +78,7 @@ Requires-Dist: prance<24,>=23.6.21.0; extra == 'all'
|
|
|
79
78
|
Requires-Dist: praw<8,>=7.7.1; extra == 'all'
|
|
80
79
|
Requires-Dist: pre-commit<4,>=3; extra == 'all'
|
|
81
80
|
Requires-Dist: pydub<0.26,>=0.25.1; extra == 'all'
|
|
82
|
-
Requires-Dist: pygithub<3,>=2.
|
|
81
|
+
Requires-Dist: pygithub<3,>=2.6.0; extra == 'all'
|
|
83
82
|
Requires-Dist: pymilvus<3,>=2.4.0; extra == 'all'
|
|
84
83
|
Requires-Dist: pymupdf<2,>=1.22.5; extra == 'all'
|
|
85
84
|
Requires-Dist: pyowm<4,>=3.3.0; extra == 'all'
|
|
@@ -87,6 +86,7 @@ Requires-Dist: pytelegrambotapi<5,>=4.18.0; extra == 'all'
|
|
|
87
86
|
Requires-Dist: pytest-asyncio<0.24,>=0.23.0; extra == 'all'
|
|
88
87
|
Requires-Dist: pytest-cov<5,>=4; extra == 'all'
|
|
89
88
|
Requires-Dist: pytest<8,>=7; extra == 'all'
|
|
89
|
+
Requires-Dist: pytidb-experimental==0.0.1.dev4; extra == 'all'
|
|
90
90
|
Requires-Dist: qdrant-client<2,>=1.9.0; extra == 'all'
|
|
91
91
|
Requires-Dist: rank-bm25<0.3,>=0.2.2; extra == 'all'
|
|
92
92
|
Requires-Dist: redis<6,>=5.0.6; extra == 'all'
|
|
@@ -125,7 +125,7 @@ Provides-Extra: communication-tools
|
|
|
125
125
|
Requires-Dist: discord-py<3,>=2.3.2; extra == 'communication-tools'
|
|
126
126
|
Requires-Dist: notion-client<3,>=2.2.1; extra == 'communication-tools'
|
|
127
127
|
Requires-Dist: praw<8,>=7.7.1; extra == 'communication-tools'
|
|
128
|
-
Requires-Dist: pygithub<3,>=2.
|
|
128
|
+
Requires-Dist: pygithub<3,>=2.6.0; extra == 'communication-tools'
|
|
129
129
|
Requires-Dist: pytelegrambotapi<5,>=4.18.0; extra == 'communication-tools'
|
|
130
130
|
Requires-Dist: slack-bolt<2,>=1.20.1; extra == 'communication-tools'
|
|
131
131
|
Requires-Dist: slack-sdk<4,>=3.27.2; extra == 'communication-tools'
|
|
@@ -134,6 +134,7 @@ Requires-Dist: aiosqlite<0.21,>=0.20.0; extra == 'data-tools'
|
|
|
134
134
|
Requires-Dist: datacommons-pandas<0.0.4,>=0.0.3; extra == 'data-tools'
|
|
135
135
|
Requires-Dist: datacommons<2,>=1.4.3; extra == 'data-tools'
|
|
136
136
|
Requires-Dist: networkx<4,>=3.4.2; extra == 'data-tools'
|
|
137
|
+
Requires-Dist: numpy~=1.26; extra == 'data-tools'
|
|
137
138
|
Requires-Dist: pandas<2,>=1.5.3; extra == 'data-tools'
|
|
138
139
|
Requires-Dist: rouge<2,>=1.0.1; extra == 'data-tools'
|
|
139
140
|
Requires-Dist: stripe<12,>=11.3.0; extra == 'data-tools'
|
|
@@ -177,6 +178,7 @@ Requires-Dist: beautifulsoup4<5,>=4; extra == 'document-tools'
|
|
|
177
178
|
Requires-Dist: docx2txt<0.9,>=0.8; extra == 'document-tools'
|
|
178
179
|
Requires-Dist: docx>=0.2.4; extra == 'document-tools'
|
|
179
180
|
Requires-Dist: fpdf>=1.7.2; extra == 'document-tools'
|
|
181
|
+
Requires-Dist: numpy~=1.26; extra == 'document-tools'
|
|
180
182
|
Requires-Dist: openapi-spec-validator<0.8,>=0.7.1; extra == 'document-tools'
|
|
181
183
|
Requires-Dist: openpyxl>=3.1.5; extra == 'document-tools'
|
|
182
184
|
Requires-Dist: pandasai<3,>=2.3.0; extra == 'document-tools'
|
|
@@ -208,12 +210,57 @@ Requires-Dist: fish-audio-sdk<2025,>=2024.12.5; extra == 'model-platforms'
|
|
|
208
210
|
Requires-Dist: litellm<2,>=1.38.1; extra == 'model-platforms'
|
|
209
211
|
Requires-Dist: mistralai<2,>=1.1.0; extra == 'model-platforms'
|
|
210
212
|
Requires-Dist: reka-api<4,>=3.0.8; extra == 'model-platforms'
|
|
213
|
+
Provides-Extra: owl
|
|
214
|
+
Requires-Dist: anthropic<0.50.0,>=0.47.0; extra == 'owl'
|
|
215
|
+
Requires-Dist: beautifulsoup4<5,>=4; extra == 'owl'
|
|
216
|
+
Requires-Dist: chunkr-ai>=0.0.41; extra == 'owl'
|
|
217
|
+
Requires-Dist: datasets<4,>=3; extra == 'owl'
|
|
218
|
+
Requires-Dist: docx2txt<0.9,>=0.8; extra == 'owl'
|
|
219
|
+
Requires-Dist: docx>=0.2.4; extra == 'owl'
|
|
220
|
+
Requires-Dist: duckduckgo-search<7,>=6.3.5; extra == 'owl'
|
|
221
|
+
Requires-Dist: e2b-code-interpreter<2,>=1.0.3; extra == 'owl'
|
|
222
|
+
Requires-Dist: ffmpeg-python<0.3,>=0.2.0; extra == 'owl'
|
|
223
|
+
Requires-Dist: fpdf>=1.7.2; extra == 'owl'
|
|
224
|
+
Requires-Dist: html2text>=2024.2.26; extra == 'owl'
|
|
225
|
+
Requires-Dist: imageio[pyav]<3,>=2.34.2; extra == 'owl'
|
|
226
|
+
Requires-Dist: mcp-server-fetch==2025.1.17; extra == 'owl'
|
|
227
|
+
Requires-Dist: mcp-simple-arxiv==0.2.2; extra == 'owl'
|
|
228
|
+
Requires-Dist: newspaper3k<0.3,>=0.2.8; extra == 'owl'
|
|
229
|
+
Requires-Dist: numpy~=1.26; extra == 'owl'
|
|
230
|
+
Requires-Dist: openapi-spec-validator<0.8,>=0.7.1; extra == 'owl'
|
|
231
|
+
Requires-Dist: opencv-python<5,>=4; extra == 'owl'
|
|
232
|
+
Requires-Dist: openpyxl>=3.1.5; extra == 'owl'
|
|
233
|
+
Requires-Dist: outlines<0.2,>=0.1.7; extra == 'owl'
|
|
234
|
+
Requires-Dist: pandas<2,>=1.5.3; extra == 'owl'
|
|
235
|
+
Requires-Dist: pandasai<3,>=2.3.0; extra == 'owl'
|
|
236
|
+
Requires-Dist: pillow<11.0.0,>=10.1.0; extra == 'owl'
|
|
237
|
+
Requires-Dist: playwright>=1.50.0; extra == 'owl'
|
|
238
|
+
Requires-Dist: prance<24,>=23.6.21.0; extra == 'owl'
|
|
239
|
+
Requires-Dist: pydub<0.26,>=0.25.1; extra == 'owl'
|
|
240
|
+
Requires-Dist: pymupdf<2,>=1.22.5; extra == 'owl'
|
|
241
|
+
Requires-Dist: python-dotenv<2,>=1.0.0; extra == 'owl'
|
|
242
|
+
Requires-Dist: requests-oauthlib<2,>=1.3.1; extra == 'owl'
|
|
243
|
+
Requires-Dist: rouge<2,>=1.0.1; extra == 'owl'
|
|
244
|
+
Requires-Dist: scenedetect>=0.6.5.2; extra == 'owl'
|
|
245
|
+
Requires-Dist: sentencepiece<0.3,>=0.2; extra == 'owl'
|
|
246
|
+
Requires-Dist: soundfile<0.14,>=0.13; extra == 'owl'
|
|
247
|
+
Requires-Dist: tabulate>=0.9.0; extra == 'owl'
|
|
248
|
+
Requires-Dist: transformers<5,>=4; extra == 'owl'
|
|
249
|
+
Requires-Dist: tree-sitter-python<0.24,>=0.23.6; extra == 'owl'
|
|
250
|
+
Requires-Dist: tree-sitter<0.24,>=0.23.2; extra == 'owl'
|
|
251
|
+
Requires-Dist: typer>=0.15.2; extra == 'owl'
|
|
252
|
+
Requires-Dist: unstructured==0.16.20; extra == 'owl'
|
|
253
|
+
Requires-Dist: wikipedia<2,>=1; extra == 'owl'
|
|
254
|
+
Requires-Dist: xls2xlsx>=0.2.0; extra == 'owl'
|
|
255
|
+
Requires-Dist: yt-dlp<2025,>=2024.11.4; extra == 'owl'
|
|
211
256
|
Provides-Extra: rag
|
|
212
257
|
Requires-Dist: cohere<6,>=5.11.0; extra == 'rag'
|
|
213
258
|
Requires-Dist: nebula3-python==3.8.2; extra == 'rag'
|
|
214
259
|
Requires-Dist: neo4j<6,>=5.18.0; extra == 'rag'
|
|
260
|
+
Requires-Dist: numpy~=1.26; extra == 'rag'
|
|
215
261
|
Requires-Dist: pandasai<3,>=2.3.0; extra == 'rag'
|
|
216
262
|
Requires-Dist: pymilvus<3,>=2.4.0; extra == 'rag'
|
|
263
|
+
Requires-Dist: pytidb-experimental==0.0.1.dev4; extra == 'rag'
|
|
217
264
|
Requires-Dist: qdrant-client<2,>=1.9.0; extra == 'rag'
|
|
218
265
|
Requires-Dist: rank-bm25<0.3,>=0.2.2; extra == 'rag'
|
|
219
266
|
Requires-Dist: sentence-transformers<4,>=3.0.1; extra == 'rag'
|
|
@@ -230,6 +277,7 @@ Requires-Dist: mem0ai>=0.1.73; extra == 'storage'
|
|
|
230
277
|
Requires-Dist: nebula3-python==3.8.2; extra == 'storage'
|
|
231
278
|
Requires-Dist: neo4j<6,>=5.18.0; extra == 'storage'
|
|
232
279
|
Requires-Dist: pymilvus<3,>=2.4.0; extra == 'storage'
|
|
280
|
+
Requires-Dist: pytidb-experimental==0.0.1.dev4; extra == 'storage'
|
|
233
281
|
Requires-Dist: qdrant-client<2,>=1.9.0; extra == 'storage'
|
|
234
282
|
Requires-Dist: redis<6,>=5.0.6; extra == 'storage'
|
|
235
283
|
Provides-Extra: test
|
|
@@ -445,9 +493,56 @@ Installing CAMEL is a breeze thanks to its availability on PyPI. Simply open you
|
|
|
445
493
|
pip install camel-ai
|
|
446
494
|
```
|
|
447
495
|
|
|
496
|
+
### Starting with ChatAgent
|
|
497
|
+
|
|
498
|
+
This example demonstrates how to create a `ChatAgent` using the CAMEL framework and perform a search query using DuckDuckGo.
|
|
499
|
+
|
|
500
|
+
1. **Install the tools package:**
|
|
501
|
+
|
|
502
|
+
```bash
|
|
503
|
+
pip install 'camel-ai[web_tools]'
|
|
504
|
+
```
|
|
505
|
+
|
|
506
|
+
2. **Set up your OpenAI API key:**
|
|
507
|
+
|
|
508
|
+
```bash
|
|
509
|
+
export OPENAI_API_KEY='your_openai_api_key'
|
|
510
|
+
```
|
|
511
|
+
|
|
512
|
+
3. **Run the following Python code:**
|
|
513
|
+
|
|
514
|
+
```python
|
|
515
|
+
from camel.models import ModelFactory
|
|
516
|
+
from camel.types import ModelPlatformType, ModelType
|
|
517
|
+
from camel.agents import ChatAgent
|
|
518
|
+
from camel.toolkits import SearchToolkit
|
|
519
|
+
|
|
520
|
+
model = ModelFactory.create(
|
|
521
|
+
model_platform=ModelPlatformType.OPENAI,
|
|
522
|
+
model_type=ModelType.GPT_4O,
|
|
523
|
+
model_config_dict={"temperature": 0.0},
|
|
524
|
+
)
|
|
525
|
+
|
|
526
|
+
search_tool = SearchToolkit().search_duckduckgo
|
|
527
|
+
|
|
528
|
+
agent = ChatAgent(model=model, tools=[search_tool])
|
|
529
|
+
|
|
530
|
+
response_1 = agent.step("What is CAMEL-AI?")
|
|
531
|
+
print(response_1.msgs[0].content)
|
|
532
|
+
# CAMEL-AI is the first LLM (Large Language Model) multi-agent framework
|
|
533
|
+
# and an open-source community focused on finding the scaling laws of agents.
|
|
534
|
+
# ...
|
|
535
|
+
|
|
536
|
+
response_2 = agent.step("What is the Github link to CAMEL framework?")
|
|
537
|
+
print(response_2.msgs[0].content)
|
|
538
|
+
# The GitHub link to the CAMEL framework is
|
|
539
|
+
# [https://github.com/camel-ai/camel](https://github.com/camel-ai/camel).
|
|
540
|
+
```
|
|
541
|
+
|
|
542
|
+
|
|
448
543
|
For more detailed instructions and additional configuration options, check out the [installation section](https://github.com/camel-ai/camel/blob/master/docs/get_started/installation.md).
|
|
449
544
|
|
|
450
|
-
After running, you can explore our CAMEL Tech Stack and Cookbooks at [
|
|
545
|
+
After running, you can explore our CAMEL Tech Stack and Cookbooks at [docs.camel-ai.org](https://docs.camel-ai.org) to build powerful multi-agent systems.
|
|
451
546
|
|
|
452
547
|
We provide a [](https://colab.research.google.com/drive/1AzP33O8rnMW__7ocWJhVBXjKziJXPtim?usp=sharing) demo showcasing a conversation between two ChatGPT agents playing roles as a python programmer and a stock trader collaborating on developing a trading bot for stock market.
|
|
453
548
|
|
|
@@ -505,7 +600,7 @@ We believe that studying these agents on a large scale offers valuable insights
|
|
|
505
600
|
</div>
|
|
506
601
|
|
|
507
602
|
<div align="center">
|
|
508
|
-
<a href="https://
|
|
603
|
+
<a href="https://agent-trust.camel-ai.org/">
|
|
509
604
|
<img src="docs/images/agent_trust.png" alt="Agent Trust">
|
|
510
605
|
</a>
|
|
511
606
|
</div>
|
|
@@ -187,9 +187,56 @@ Installing CAMEL is a breeze thanks to its availability on PyPI. Simply open you
|
|
|
187
187
|
pip install camel-ai
|
|
188
188
|
```
|
|
189
189
|
|
|
190
|
+
### Starting with ChatAgent
|
|
191
|
+
|
|
192
|
+
This example demonstrates how to create a `ChatAgent` using the CAMEL framework and perform a search query using DuckDuckGo.
|
|
193
|
+
|
|
194
|
+
1. **Install the tools package:**
|
|
195
|
+
|
|
196
|
+
```bash
|
|
197
|
+
pip install 'camel-ai[web_tools]'
|
|
198
|
+
```
|
|
199
|
+
|
|
200
|
+
2. **Set up your OpenAI API key:**
|
|
201
|
+
|
|
202
|
+
```bash
|
|
203
|
+
export OPENAI_API_KEY='your_openai_api_key'
|
|
204
|
+
```
|
|
205
|
+
|
|
206
|
+
3. **Run the following Python code:**
|
|
207
|
+
|
|
208
|
+
```python
|
|
209
|
+
from camel.models import ModelFactory
|
|
210
|
+
from camel.types import ModelPlatformType, ModelType
|
|
211
|
+
from camel.agents import ChatAgent
|
|
212
|
+
from camel.toolkits import SearchToolkit
|
|
213
|
+
|
|
214
|
+
model = ModelFactory.create(
|
|
215
|
+
model_platform=ModelPlatformType.OPENAI,
|
|
216
|
+
model_type=ModelType.GPT_4O,
|
|
217
|
+
model_config_dict={"temperature": 0.0},
|
|
218
|
+
)
|
|
219
|
+
|
|
220
|
+
search_tool = SearchToolkit().search_duckduckgo
|
|
221
|
+
|
|
222
|
+
agent = ChatAgent(model=model, tools=[search_tool])
|
|
223
|
+
|
|
224
|
+
response_1 = agent.step("What is CAMEL-AI?")
|
|
225
|
+
print(response_1.msgs[0].content)
|
|
226
|
+
# CAMEL-AI is the first LLM (Large Language Model) multi-agent framework
|
|
227
|
+
# and an open-source community focused on finding the scaling laws of agents.
|
|
228
|
+
# ...
|
|
229
|
+
|
|
230
|
+
response_2 = agent.step("What is the Github link to CAMEL framework?")
|
|
231
|
+
print(response_2.msgs[0].content)
|
|
232
|
+
# The GitHub link to the CAMEL framework is
|
|
233
|
+
# [https://github.com/camel-ai/camel](https://github.com/camel-ai/camel).
|
|
234
|
+
```
|
|
235
|
+
|
|
236
|
+
|
|
190
237
|
For more detailed instructions and additional configuration options, check out the [installation section](https://github.com/camel-ai/camel/blob/master/docs/get_started/installation.md).
|
|
191
238
|
|
|
192
|
-
After running, you can explore our CAMEL Tech Stack and Cookbooks at [
|
|
239
|
+
After running, you can explore our CAMEL Tech Stack and Cookbooks at [docs.camel-ai.org](https://docs.camel-ai.org) to build powerful multi-agent systems.
|
|
193
240
|
|
|
194
241
|
We provide a [](https://colab.research.google.com/drive/1AzP33O8rnMW__7ocWJhVBXjKziJXPtim?usp=sharing) demo showcasing a conversation between two ChatGPT agents playing roles as a python programmer and a stock trader collaborating on developing a trading bot for stock market.
|
|
195
242
|
|
|
@@ -247,7 +294,7 @@ We believe that studying these agents on a large scale offers valuable insights
|
|
|
247
294
|
</div>
|
|
248
295
|
|
|
249
296
|
<div align="center">
|
|
250
|
-
<a href="https://
|
|
297
|
+
<a href="https://agent-trust.camel-ai.org/">
|
|
251
298
|
<img src="docs/images/agent_trust.png" alt="Agent Trust">
|
|
252
299
|
</a>
|
|
253
300
|
</div>
|
|
@@ -16,6 +16,7 @@ from .chat_agent import ChatAgent
|
|
|
16
16
|
from .critic_agent import CriticAgent
|
|
17
17
|
from .embodied_agent import EmbodiedAgent
|
|
18
18
|
from .knowledge_graph_agent import KnowledgeGraphAgent
|
|
19
|
+
from .repo_agent import RepoAgent
|
|
19
20
|
from .role_assignment_agent import RoleAssignmentAgent
|
|
20
21
|
from .search_agent import SearchAgent
|
|
21
22
|
from .task_agent import (
|
|
@@ -41,4 +42,5 @@ __all__ = [
|
|
|
41
42
|
'RoleAssignmentAgent',
|
|
42
43
|
'SearchAgent',
|
|
43
44
|
'KnowledgeGraphAgent',
|
|
45
|
+
'RepoAgent',
|
|
44
46
|
]
|