camel-ai 0.2.61__tar.gz → 0.2.62__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.61 → camel_ai-0.2.62}/PKG-INFO +4 -1
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/__init__.py +1 -1
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/agents/chat_agent.py +1 -1
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/agents/mcp_agent.py +5 -5
- {camel_ai-0.2.61/camel/data_collector → camel_ai-0.2.62/camel/data_collectors}/alpaca_collector.py +1 -1
- {camel_ai-0.2.61/camel/data_collector → camel_ai-0.2.62/camel/data_collectors}/sharegpt_collector.py +1 -1
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/retrievers/auto_retriever.py +20 -1
- {camel_ai-0.2.61/camel/runtime → camel_ai-0.2.62/camel/runtimes}/daytona_runtime.py +1 -1
- {camel_ai-0.2.61/camel/runtime → camel_ai-0.2.62/camel/runtimes}/docker_runtime.py +1 -1
- {camel_ai-0.2.61/camel/runtime → camel_ai-0.2.62/camel/runtimes}/llm_guard_runtime.py +2 -2
- {camel_ai-0.2.61/camel/runtime → camel_ai-0.2.62/camel/runtimes}/remote_http_runtime.py +1 -1
- {camel_ai-0.2.61/camel/runtime → camel_ai-0.2.62/camel/runtimes}/ubuntu_docker_runtime.py +1 -1
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/societies/workforce/base.py +7 -3
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/societies/workforce/single_agent_worker.py +2 -1
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/societies/workforce/worker.py +5 -3
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/__init__.py +2 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/file_write_toolkit.py +4 -2
- camel_ai-0.2.62/camel/toolkits/mcp_toolkit.py +614 -0
- camel_ai-0.2.62/camel/toolkits/pptx_toolkit.py +777 -0
- camel_ai-0.2.62/camel/utils/mcp_client.py +979 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/pyproject.toml +4 -1
- camel_ai-0.2.61/camel/toolkits/mcp_toolkit.py +0 -878
- {camel_ai-0.2.61 → camel_ai-0.2.62}/.gitignore +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/LICENSE +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/README.md +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/agents/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/agents/_types.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/agents/_utils.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/agents/base.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/agents/critic_agent.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/agents/deductive_reasoner_agent.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/agents/embodied_agent.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/agents/knowledge_graph_agent.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/agents/multi_hop_generator_agent.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/agents/programmed_agent_instruction.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/agents/repo_agent.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/agents/role_assignment_agent.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/agents/search_agent.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/agents/task_agent.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/agents/tool_agents/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/agents/tool_agents/base.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/agents/tool_agents/hugging_face_tool_agent.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/benchmarks/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/benchmarks/apibank.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/benchmarks/apibench.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/benchmarks/base.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/benchmarks/browsecomp.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/benchmarks/gaia.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/benchmarks/nexus.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/benchmarks/ragbench.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/bots/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/bots/discord/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/bots/discord/discord_app.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/bots/discord/discord_installation.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/bots/discord/discord_store.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/bots/slack/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/bots/slack/models.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/bots/slack/slack_app.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/bots/telegram_bot.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/aiml_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/anthropic_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/base_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/bedrock_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/cohere_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/deepseek_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/gemini_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/groq_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/internlm_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/litellm_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/lmstudio_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/mistral_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/modelscope_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/moonshot_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/netmind_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/novita_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/nvidia_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/ollama_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/openai_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/openrouter_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/ppio_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/qwen_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/reka_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/samba_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/sglang_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/siliconflow_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/togetherai_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/vllm_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/watsonx_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/yi_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/configs/zhipuai_config.py +0 -0
- {camel_ai-0.2.61/camel/data_collector → camel_ai-0.2.62/camel/data_collectors}/__init__.py +0 -0
- {camel_ai-0.2.61/camel/data_collector → camel_ai-0.2.62/camel/data_collectors}/base.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datagen/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datagen/cot_datagen.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datagen/evol_instruct/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datagen/evol_instruct/evol_instruct.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datagen/evol_instruct/scorer.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datagen/evol_instruct/templates.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datagen/self_improving_cot.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datagen/self_instruct/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datagen/self_instruct/filter/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datagen/self_instruct/filter/filter_function.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datagen/self_instruct/filter/filter_registry.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datagen/self_instruct/filter/instruction_filter.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datagen/self_instruct/self_instruct.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datagen/self_instruct/templates.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datagen/source2synth/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datagen/source2synth/data_processor.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datagen/source2synth/models.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datagen/source2synth/user_data_processor_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datahubs/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datahubs/base.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datahubs/huggingface.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datahubs/models.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datasets/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datasets/base_generator.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datasets/few_shot_generator.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datasets/models.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datasets/self_instruct_generator.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/datasets/static_dataset.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/embeddings/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/embeddings/azure_embedding.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/embeddings/base.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/embeddings/gemini_embedding.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/embeddings/jina_embedding.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/embeddings/mistral_embedding.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/embeddings/openai_compatible_embedding.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/embeddings/openai_embedding.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/embeddings/sentence_transformers_embeddings.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/embeddings/together_embedding.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/embeddings/vlm_embedding.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/environments/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/environments/models.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/environments/multi_step.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/environments/single_step.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/environments/tic_tac_toe.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/extractors/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/extractors/base.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/extractors/python_strategies.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/generators.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/human.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/interpreters/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/interpreters/base.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/interpreters/docker/Dockerfile +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/interpreters/docker_interpreter.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/interpreters/e2b_interpreter.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/interpreters/internal_python_interpreter.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/interpreters/interpreter_error.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/interpreters/ipython_interpreter.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/interpreters/subprocess_interpreter.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/loaders/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/loaders/apify_reader.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/loaders/base_io.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/loaders/chunkr_reader.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/loaders/crawl4ai_reader.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/loaders/firecrawl_reader.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/loaders/jina_url_reader.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/loaders/markitdown.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/loaders/mineru_extractor.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/loaders/mistral_reader.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/loaders/pandas_reader.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/loaders/scrapegraph_reader.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/loaders/unstructured_io.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/logger.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/memories/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/memories/agent_memories.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/memories/base.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/memories/blocks/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/memories/blocks/chat_history_block.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/memories/blocks/vectordb_block.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/memories/context_creators/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/memories/context_creators/score_based.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/memories/records.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/messages/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/messages/base.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/messages/conversion/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/messages/conversion/alpaca.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/messages/conversion/conversation_models.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/messages/conversion/sharegpt/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/messages/conversion/sharegpt/function_call_formatter.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/messages/conversion/sharegpt/hermes/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/messages/conversion/sharegpt/hermes/hermes_function_formatter.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/messages/func_message.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/_utils.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/aiml_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/anthropic_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/aws_bedrock_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/azure_openai_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/base_audio_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/base_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/cohere_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/deepseek_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/fish_audio_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/gemini_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/groq_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/internlm_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/litellm_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/lmstudio_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/mistral_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/model_factory.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/model_manager.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/modelscope_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/moonshot_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/nemotron_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/netmind_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/novita_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/nvidia_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/ollama_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/openai_audio_models.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/openai_compatible_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/openai_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/openrouter_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/ppio_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/qwen_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/reka_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/reward/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/reward/base_reward_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/reward/evaluator.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/reward/nemotron_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/reward/skywork_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/samba_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/sglang_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/siliconflow_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/stub_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/togetherai_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/vllm_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/volcano_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/watsonx_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/yi_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/models/zhipuai_model.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/personas/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/personas/persona.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/personas/persona_hub.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/prompts/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/prompts/ai_society.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/prompts/base.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/prompts/code.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/prompts/evaluation.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/prompts/generate_text_embedding_data.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/prompts/image_craft.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/prompts/misalignment.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/prompts/multi_condition_image_craft.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/prompts/object_recognition.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/prompts/persona_hub.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/prompts/prompt_templates.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/prompts/role_description_prompt_template.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/prompts/solution_extraction.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/prompts/task_prompt_template.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/prompts/translation.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/prompts/video_description_prompt.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/py.typed +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/responses/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/responses/agent_responses.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/retrievers/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/retrievers/base.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/retrievers/bm25_retriever.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/retrievers/cohere_rerank_retriever.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/retrievers/hybrid_retrival.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/retrievers/vector_retriever.py +0 -0
- {camel_ai-0.2.61/camel/runtime → camel_ai-0.2.62/camel/runtimes}/__init__.py +0 -0
- {camel_ai-0.2.61/camel/runtime → camel_ai-0.2.62/camel/runtimes}/api.py +0 -0
- {camel_ai-0.2.61/camel/runtime → camel_ai-0.2.62/camel/runtimes}/base.py +0 -0
- {camel_ai-0.2.61/camel/runtime → camel_ai-0.2.62/camel/runtimes}/configs.py +0 -0
- {camel_ai-0.2.61/camel/runtime → camel_ai-0.2.62/camel/runtimes}/utils/__init__.py +0 -0
- {camel_ai-0.2.61/camel/runtime → camel_ai-0.2.62/camel/runtimes}/utils/function_risk_toolkit.py +0 -0
- {camel_ai-0.2.61/camel/runtime → camel_ai-0.2.62/camel/runtimes}/utils/ignore_risk_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/schemas/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/schemas/base.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/schemas/openai_converter.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/schemas/outlines_converter.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/societies/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/societies/babyagi_playing.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/societies/role_playing.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/societies/workforce/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/societies/workforce/prompts.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/societies/workforce/role_playing_worker.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/societies/workforce/task_channel.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/societies/workforce/utils.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/societies/workforce/workforce.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/storages/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/storages/graph_storages/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/storages/graph_storages/base.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/storages/graph_storages/graph_element.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/storages/graph_storages/nebula_graph.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/storages/graph_storages/neo4j_graph.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/storages/key_value_storages/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/storages/key_value_storages/base.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/storages/key_value_storages/in_memory.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/storages/key_value_storages/json.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/storages/key_value_storages/mem0_cloud.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/storages/key_value_storages/redis.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/storages/object_storages/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/storages/object_storages/amazon_s3.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/storages/object_storages/azure_blob.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/storages/object_storages/base.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/storages/object_storages/google_cloud.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/storages/vectordb_storages/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/storages/vectordb_storages/base.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/storages/vectordb_storages/faiss.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/storages/vectordb_storages/milvus.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/storages/vectordb_storages/oceanbase.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/storages/vectordb_storages/qdrant.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/storages/vectordb_storages/tidb.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/tasks/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/tasks/task.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/tasks/task_prompt.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/terminators/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/terminators/base.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/terminators/response_terminator.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/terminators/token_limit_terminator.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/aci_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/arxiv_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/ask_news_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/async_browser_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/audio_analysis_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/base.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/bohrium_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/browser_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/browser_toolkit_commons.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/code_execution.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/dalle_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/dappier_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/data_commons_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/excel_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/function_tool.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/github_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/google_calendar_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/google_maps_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/google_scholar_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/human_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/image_analysis_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/jina_reranker_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/klavis_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/linkedin_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/math_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/memory_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/meshy_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/mineru_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/networkx_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/notion_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_specs/biztoc/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_specs/biztoc/ai-plugin.json +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_specs/biztoc/openapi.yaml +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_specs/coursera/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_specs/coursera/openapi.yaml +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_specs/create_qr_code/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_specs/create_qr_code/openapi.yaml +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_specs/klarna/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_specs/klarna/openapi.yaml +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_specs/nasa_apod/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_specs/nasa_apod/openapi.yaml +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_specs/outschool/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_specs/outschool/ai-plugin.json +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_specs/outschool/openapi.yaml +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_specs/outschool/paths/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_specs/outschool/paths/get_classes.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_specs/outschool/paths/search_teachers.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_specs/security_config.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_specs/speak/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_specs/speak/openapi.yaml +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_specs/web_scraper/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_specs/web_scraper/ai-plugin.json +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_specs/web_scraper/openapi.yaml +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_specs/web_scraper/paths/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_specs/web_scraper/paths/scraper.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/open_api_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/openai_agent_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/openbb_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/page_script.js +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/playwright_mcp_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/pubmed_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/pulse_mcp_search_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/pyautogui_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/reddit_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/retrieval_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/search_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/searxng_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/semantic_scholar_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/slack_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/stripe_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/sympy_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/terminal_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/thinking_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/twitter_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/video_analysis_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/video_download_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/weather_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/whatsapp_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/wolfram_alpha_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/toolkits/zapier_toolkit.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/types/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/types/agents/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/types/agents/tool_calling_record.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/types/enums.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/types/mcp_registries.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/types/openai_types.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/types/unified_model_type.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/utils/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/utils/async_func.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/utils/chunker/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/utils/chunker/base.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/utils/chunker/code_chunker.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/utils/chunker/uio_chunker.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/utils/commons.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/utils/constants.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/utils/deduplication.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/utils/filename.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/utils/mcp.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/utils/response_format.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/utils/token_counting.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/verifiers/__init__.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/verifiers/base.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/verifiers/math_verifier.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/verifiers/models.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/verifiers/physics_verifier.py +0 -0
- {camel_ai-0.2.61 → camel_ai-0.2.62}/camel/verifiers/python_verifier.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.62
|
|
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
|
|
@@ -103,6 +103,7 @@ Requires-Dist: pytelegrambotapi<5,>=4.18.0; extra == 'all'
|
|
|
103
103
|
Requires-Dist: pytest-asyncio<0.24,>=0.23.0; extra == 'all'
|
|
104
104
|
Requires-Dist: pytest-cov<5,>=4; extra == 'all'
|
|
105
105
|
Requires-Dist: pytest<8,>=7; extra == 'all'
|
|
106
|
+
Requires-Dist: python-pptx>=1.0.2; extra == 'all'
|
|
106
107
|
Requires-Dist: pytidb-experimental==0.0.1.dev4; extra == 'all'
|
|
107
108
|
Requires-Dist: qdrant-client<2,>=1.9.0; extra == 'all'
|
|
108
109
|
Requires-Dist: rank-bm25<0.3,>=0.2.2; extra == 'all'
|
|
@@ -209,6 +210,7 @@ Requires-Dist: pandasai<3,>=2.3.0; extra == 'document-tools'
|
|
|
209
210
|
Requires-Dist: prance<24,>=23.6.21.0; extra == 'document-tools'
|
|
210
211
|
Requires-Dist: pylatex>=1.4.2; extra == 'document-tools'
|
|
211
212
|
Requires-Dist: pymupdf<2,>=1.22.5; extra == 'document-tools'
|
|
213
|
+
Requires-Dist: python-pptx>=1.0.2; extra == 'document-tools'
|
|
212
214
|
Requires-Dist: tabulate>=0.9.0; extra == 'document-tools'
|
|
213
215
|
Requires-Dist: unstructured==0.16.20; extra == 'document-tools'
|
|
214
216
|
Requires-Dist: xls2xlsx>=0.2.0; extra == 'document-tools'
|
|
@@ -268,6 +270,7 @@ Requires-Dist: pydub<0.26,>=0.25.1; extra == 'owl'
|
|
|
268
270
|
Requires-Dist: pylatex>=1.4.2; extra == 'owl'
|
|
269
271
|
Requires-Dist: pymupdf<2,>=1.22.5; extra == 'owl'
|
|
270
272
|
Requires-Dist: python-dotenv<2,>=1.0.0; extra == 'owl'
|
|
273
|
+
Requires-Dist: python-pptx>=1.0.2; extra == 'owl'
|
|
271
274
|
Requires-Dist: requests-oauthlib<2,>=1.3.1; extra == 'owl'
|
|
272
275
|
Requires-Dist: rouge<2,>=1.0.1; extra == 'owl'
|
|
273
276
|
Requires-Dist: scenedetect>=0.6.5.2; extra == 'owl'
|
|
@@ -204,7 +204,7 @@ class ChatAgent(BaseAgent):
|
|
|
204
204
|
self.model_type = self.model_backend.model_type
|
|
205
205
|
|
|
206
206
|
# Assign unique ID
|
|
207
|
-
self.agent_id = agent_id if agent_id else str(uuid.uuid4())
|
|
207
|
+
self.agent_id = agent_id if agent_id else str(uuid.uuid4())[:6]
|
|
208
208
|
|
|
209
209
|
# Set up memory
|
|
210
210
|
context_creator = ScoreBasedContextCreator(
|
|
@@ -191,7 +191,7 @@ class MCPAgent(ChatAgent):
|
|
|
191
191
|
self.mcp_toolkit = self._initialize_mcp_toolkit()
|
|
192
192
|
|
|
193
193
|
# If already connected, reconnect to apply changes
|
|
194
|
-
if self.mcp_toolkit and self.mcp_toolkit.is_connected
|
|
194
|
+
if self.mcp_toolkit and self.mcp_toolkit.is_connected:
|
|
195
195
|
try:
|
|
196
196
|
asyncio.run(self.disconnect())
|
|
197
197
|
asyncio.run(self.connect())
|
|
@@ -325,7 +325,7 @@ class MCPAgent(ChatAgent):
|
|
|
325
325
|
Returns:
|
|
326
326
|
ChatAgentResponse: The response from the agent.
|
|
327
327
|
"""
|
|
328
|
-
if self.mcp_toolkit and not self.mcp_toolkit.is_connected
|
|
328
|
+
if self.mcp_toolkit and not self.mcp_toolkit.is_connected:
|
|
329
329
|
await self.connect()
|
|
330
330
|
|
|
331
331
|
if self.function_calling_available:
|
|
@@ -378,14 +378,14 @@ class MCPAgent(ChatAgent):
|
|
|
378
378
|
if (
|
|
379
379
|
not isinstance(server_idx, int)
|
|
380
380
|
or server_idx < 0
|
|
381
|
-
or server_idx >= len(self.mcp_toolkit.
|
|
381
|
+
or server_idx >= len(self.mcp_toolkit.clients)
|
|
382
382
|
):
|
|
383
383
|
logger.warning(
|
|
384
384
|
f"Invalid server index: {server_idx}"
|
|
385
385
|
)
|
|
386
386
|
continue
|
|
387
387
|
|
|
388
|
-
server = self.mcp_toolkit.
|
|
388
|
+
server = self.mcp_toolkit.clients[server_idx]
|
|
389
389
|
result = await server.call_tool(tool_name, tool_args)
|
|
390
390
|
|
|
391
391
|
# Safely access content
|
|
@@ -431,7 +431,7 @@ class MCPAgent(ChatAgent):
|
|
|
431
431
|
# Use create_task and run with a future
|
|
432
432
|
coro = self.astep(input_message, *args, **kwargs)
|
|
433
433
|
future = asyncio.ensure_future(coro)
|
|
434
|
-
return asyncio.run_coroutine_threadsafe(future, loop).result()
|
|
434
|
+
return asyncio.run_coroutine_threadsafe(future, loop).result() # type: ignore [arg-type]
|
|
435
435
|
else:
|
|
436
436
|
# Safe to run normally
|
|
437
437
|
return asyncio.run(self.astep(input_message, *args, **kwargs))
|
{camel_ai-0.2.61/camel/data_collector → camel_ai-0.2.62/camel/data_collectors}/alpaca_collector.py
RENAMED
|
@@ -17,7 +17,7 @@ from typing import Any, Dict, List, Optional, Union
|
|
|
17
17
|
from typing_extensions import Self
|
|
18
18
|
|
|
19
19
|
from camel.agents import ChatAgent
|
|
20
|
-
from camel.
|
|
20
|
+
from camel.data_collectors.base import BaseDataCollector
|
|
21
21
|
from camel.messages import AlpacaItem, BaseMessage
|
|
22
22
|
from camel.schemas import OpenAISchemaConverter
|
|
23
23
|
|
{camel_ai-0.2.61/camel/data_collector → camel_ai-0.2.62/camel/data_collectors}/sharegpt_collector.py
RENAMED
|
@@ -19,7 +19,7 @@ from pydantic import BaseModel
|
|
|
19
19
|
from typing_extensions import Self
|
|
20
20
|
|
|
21
21
|
from camel.agents import ChatAgent
|
|
22
|
-
from camel.
|
|
22
|
+
from camel.data_collectors.base import BaseDataCollector
|
|
23
23
|
from camel.messages import BaseMessage
|
|
24
24
|
from camel.messages.conversion.conversation_models import (
|
|
25
25
|
ShareGPTConversation,
|
|
@@ -128,12 +128,31 @@ class AutoRetriever:
|
|
|
128
128
|
Returns:
|
|
129
129
|
str: A sanitized, valid collection name suitable for use.
|
|
130
130
|
"""
|
|
131
|
+
import hashlib
|
|
132
|
+
import os
|
|
133
|
+
|
|
131
134
|
from unstructured.documents.elements import Element
|
|
132
135
|
|
|
133
136
|
if isinstance(content, Element):
|
|
134
137
|
content = content.metadata.file_directory or str(uuid.uuid4())
|
|
135
138
|
|
|
136
|
-
|
|
139
|
+
# For file paths, use a combination of directory hash and filename
|
|
140
|
+
if os.path.isfile(content):
|
|
141
|
+
# Get directory and filename
|
|
142
|
+
directory = os.path.dirname(content)
|
|
143
|
+
filename = os.path.basename(content)
|
|
144
|
+
# Create a short hash of the directory path
|
|
145
|
+
dir_hash = hashlib.md5(directory.encode()).hexdigest()[:6]
|
|
146
|
+
# Get filename without extension and remove special chars
|
|
147
|
+
base_name = os.path.splitext(filename)[0]
|
|
148
|
+
clean_name = re.sub(r'[^a-zA-Z0-9]', '', base_name)[:10]
|
|
149
|
+
# Combine for a unique name
|
|
150
|
+
collection_name = f"{clean_name}_{dir_hash}"
|
|
151
|
+
else:
|
|
152
|
+
# For URL content
|
|
153
|
+
content_hash = hashlib.md5(content.encode()).hexdigest()[:6]
|
|
154
|
+
clean_content = re.sub(r'[^a-zA-Z0-9]', '', content)[-10:]
|
|
155
|
+
collection_name = f"{clean_content}_{content_hash}"
|
|
137
156
|
|
|
138
157
|
# Ensure the first character is either an underscore or a letter for
|
|
139
158
|
# Milvus
|
|
@@ -21,7 +21,7 @@ from typing import Any, Dict, List, Optional, Union
|
|
|
21
21
|
from pydantic import BaseModel
|
|
22
22
|
|
|
23
23
|
from camel.logger import get_logger
|
|
24
|
-
from camel.
|
|
24
|
+
from camel.runtimes import BaseRuntime
|
|
25
25
|
from camel.toolkits.function_tool import FunctionTool
|
|
26
26
|
|
|
27
27
|
logger = get_logger(__name__)
|
|
@@ -19,8 +19,8 @@ from typing import List, Optional, Union
|
|
|
19
19
|
from camel.agents import ChatAgent
|
|
20
20
|
from camel.configs import ChatGPTConfig
|
|
21
21
|
from camel.models import BaseModelBackend, ModelFactory
|
|
22
|
-
from camel.
|
|
23
|
-
from camel.
|
|
22
|
+
from camel.runtimes import BaseRuntime
|
|
23
|
+
from camel.runtimes.utils import FunctionRiskToolkit, IgnoreRiskToolkit
|
|
24
24
|
from camel.toolkits import FunctionTool
|
|
25
25
|
from camel.types import ModelPlatformType, ModelType
|
|
26
26
|
|
|
@@ -24,7 +24,7 @@ from typing import Any, Dict, List, Optional, Union
|
|
|
24
24
|
import requests
|
|
25
25
|
from pydantic import BaseModel
|
|
26
26
|
|
|
27
|
-
from camel.
|
|
27
|
+
from camel.runtimes import BaseRuntime
|
|
28
28
|
from camel.toolkits.function_tool import FunctionTool
|
|
29
29
|
|
|
30
30
|
logger = logging.getLogger(__name__)
|
|
@@ -18,7 +18,7 @@ import time
|
|
|
18
18
|
from pathlib import Path
|
|
19
19
|
from typing import Callable, List, Optional, Union
|
|
20
20
|
|
|
21
|
-
from camel.
|
|
21
|
+
from camel.runtimes.docker_runtime import DockerRuntime
|
|
22
22
|
from camel.toolkits import FunctionTool
|
|
23
23
|
|
|
24
24
|
logger = logging.getLogger(__name__)
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
# limitations under the License.
|
|
13
13
|
# ========= Copyright 2023-2024 @ CAMEL-AI.org. All Rights Reserved. =========
|
|
14
14
|
from abc import ABC, abstractmethod
|
|
15
|
-
from typing import Any
|
|
15
|
+
from typing import Any, Optional
|
|
16
16
|
|
|
17
17
|
from camel.societies.workforce.task_channel import TaskChannel
|
|
18
18
|
from camel.societies.workforce.utils import check_if_running
|
|
@@ -23,10 +23,14 @@ class BaseNode(ABC):
|
|
|
23
23
|
|
|
24
24
|
Args:
|
|
25
25
|
description (str): Description of the node.
|
|
26
|
+
node_id (Optional[str]): ID of the node. If not provided, it will
|
|
27
|
+
be generated automatically. (default: :obj:`None`)
|
|
26
28
|
"""
|
|
27
29
|
|
|
28
|
-
def __init__(
|
|
29
|
-
self
|
|
30
|
+
def __init__(
|
|
31
|
+
self, description: str, node_id: Optional[str] = None
|
|
32
|
+
) -> None:
|
|
33
|
+
self.node_id = node_id if node_id is not None else str(id(self))
|
|
30
34
|
self.description = description
|
|
31
35
|
self._channel: TaskChannel = TaskChannel()
|
|
32
36
|
self._running = False
|
|
@@ -15,7 +15,7 @@ from __future__ import annotations
|
|
|
15
15
|
|
|
16
16
|
import logging
|
|
17
17
|
from abc import ABC, abstractmethod
|
|
18
|
-
from typing import List
|
|
18
|
+
from typing import List, Optional
|
|
19
19
|
|
|
20
20
|
from colorama import Fore
|
|
21
21
|
|
|
@@ -33,14 +33,16 @@ class Worker(BaseNode, ABC):
|
|
|
33
33
|
|
|
34
34
|
Args:
|
|
35
35
|
description (str): Description of the node.
|
|
36
|
-
|
|
36
|
+
node_id (Optional[str]): ID of the node. If not provided, it will
|
|
37
|
+
be generated automatically. (default: :obj:`None`)
|
|
37
38
|
"""
|
|
38
39
|
|
|
39
40
|
def __init__(
|
|
40
41
|
self,
|
|
41
42
|
description: str,
|
|
43
|
+
node_id: Optional[str] = None,
|
|
42
44
|
) -> None:
|
|
43
|
-
super().__init__(description)
|
|
45
|
+
super().__init__(description, node_id=node_id)
|
|
44
46
|
|
|
45
47
|
def __repr__(self):
|
|
46
48
|
return f"Worker node {self.node_id} ({self.description})"
|
|
@@ -62,6 +62,7 @@ from .mcp_toolkit import MCPToolkit
|
|
|
62
62
|
from .browser_toolkit import BrowserToolkit
|
|
63
63
|
from .async_browser_toolkit import AsyncBrowserToolkit
|
|
64
64
|
from .file_write_toolkit import FileWriteToolkit
|
|
65
|
+
from .pptx_toolkit import PPTXToolkit
|
|
65
66
|
from .terminal_toolkit import TerminalToolkit
|
|
66
67
|
from .pubmed_toolkit import PubMedToolkit
|
|
67
68
|
from .data_commons_toolkit import DataCommonsToolkit
|
|
@@ -124,6 +125,7 @@ __all__ = [
|
|
|
124
125
|
'BrowserToolkit',
|
|
125
126
|
'AsyncBrowserToolkit',
|
|
126
127
|
'FileWriteToolkit',
|
|
128
|
+
'PPTXToolkit',
|
|
127
129
|
'TerminalToolkit',
|
|
128
130
|
'PubMedToolkit',
|
|
129
131
|
'DataCommonsToolkit',
|
|
@@ -338,8 +338,10 @@ class FileWriteToolkit(BaseToolkit):
|
|
|
338
338
|
|
|
339
339
|
Args:
|
|
340
340
|
content (Union[str, List[List[str]]]): The content to write to the
|
|
341
|
-
file.
|
|
342
|
-
|
|
341
|
+
file. Content format varies by file type:
|
|
342
|
+
- Text formats (txt, md, html, yaml): string
|
|
343
|
+
- CSV: string or list of lists
|
|
344
|
+
- JSON: string or serializable object
|
|
343
345
|
filename (str): The name or path of the file. If a relative path is
|
|
344
346
|
supplied, it is resolved to self.output_dir.
|
|
345
347
|
encoding (Optional[str]): The character encoding to use. (default:
|