camel-ai 0.2.22__tar.gz → 0.2.23__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.23/.gitignore +433 -0
- camel_ai-0.2.23/PKG-INFO +671 -0
- camel_ai-0.2.23/README.md +422 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/__init__.py +1 -1
- camel_ai-0.2.23/camel/agents/_types.py +41 -0
- camel_ai-0.2.23/camel/agents/_utils.py +188 -0
- camel_ai-0.2.23/camel/agents/chat_agent.py +1143 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/agents/knowledge_graph_agent.py +7 -1
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/agents/multi_hop_generator_agent.py +1 -1
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/configs/base_config.py +10 -13
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/configs/deepseek_config.py +4 -30
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/configs/gemini_config.py +5 -31
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/configs/openai_config.py +14 -32
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/configs/qwen_config.py +36 -36
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/datagen/self_improving_cot.py +81 -3
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/datagen/self_instruct/filter/instruction_filter.py +19 -3
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/datagen/self_instruct/self_instruct.py +52 -3
- camel_ai-0.2.23/camel/datasets/__init__.py +28 -0
- camel_ai-0.2.23/camel/datasets/base.py +969 -0
- camel_ai-0.2.23/camel/environments/__init__.py +16 -0
- camel_ai-0.2.23/camel/environments/base.py +503 -0
- camel_ai-0.2.23/camel/extractors/__init__.py +16 -0
- camel_ai-0.2.23/camel/extractors/base.py +263 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/memories/agent_memories.py +16 -1
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/memories/blocks/chat_history_block.py +10 -2
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/memories/blocks/vectordb_block.py +1 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/memories/context_creators/score_based.py +20 -3
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/memories/records.py +10 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/messages/base.py +8 -8
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/__init__.py +2 -0
- camel_ai-0.2.23/camel/models/_utils.py +57 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/aiml_model.py +48 -17
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/anthropic_model.py +41 -3
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/azure_openai_model.py +39 -3
- camel_ai-0.2.23/camel/models/base_audio_model.py +92 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/base_model.py +88 -13
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/cohere_model.py +88 -11
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/deepseek_model.py +107 -45
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/fish_audio_model.py +18 -8
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/gemini_model.py +133 -15
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/groq_model.py +72 -10
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/internlm_model.py +14 -3
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/litellm_model.py +9 -2
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/mistral_model.py +42 -5
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/model_manager.py +57 -3
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/moonshot_model.py +33 -4
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/nemotron_model.py +32 -3
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/nvidia_model.py +43 -3
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/ollama_model.py +139 -17
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/openai_audio_models.py +87 -2
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/openai_compatible_model.py +37 -3
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/openai_model.py +158 -46
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/qwen_model.py +61 -4
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/reka_model.py +53 -3
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/samba_model.py +209 -4
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/sglang_model.py +153 -14
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/siliconflow_model.py +16 -3
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/stub_model.py +46 -4
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/togetherai_model.py +38 -3
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/vllm_model.py +37 -3
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/yi_model.py +36 -3
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/zhipuai_model.py +38 -3
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/retrievers/__init__.py +3 -0
- camel_ai-0.2.23/camel/retrievers/hybrid_retrival.py +237 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/__init__.py +15 -1
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/arxiv_toolkit.py +2 -1
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/ask_news_toolkit.py +4 -2
- camel_ai-0.2.23/camel/toolkits/audio_analysis_toolkit.py +238 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/base.py +22 -3
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/code_execution.py +2 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/dappier_toolkit.py +2 -1
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/data_commons_toolkit.py +38 -12
- camel_ai-0.2.23/camel/toolkits/excel_toolkit.py +172 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/function_tool.py +13 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/github_toolkit.py +5 -1
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/google_maps_toolkit.py +2 -1
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/google_scholar_toolkit.py +2 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/human_toolkit.py +0 -3
- camel_ai-0.2.23/camel/toolkits/image_analysis_toolkit.py +202 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/linkedin_toolkit.py +3 -2
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/meshy_toolkit.py +3 -2
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/mineru_toolkit.py +2 -2
- camel_ai-0.2.23/camel/toolkits/networkx_toolkit.py +240 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/notion_toolkit.py +2 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/openbb_toolkit.py +3 -2
- camel_ai-0.2.23/camel/toolkits/page_script.js +376 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/reddit_toolkit.py +11 -3
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/retrieval_toolkit.py +6 -1
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/semantic_scholar_toolkit.py +2 -1
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/stripe_toolkit.py +8 -2
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/sympy_toolkit.py +6 -1
- camel_ai-0.2.23/camel/toolkits/video_analysis_toolkit.py +407 -0
- camel_ai-0.2.22/camel/toolkits/video_toolkit.py → camel_ai-0.2.23/camel/toolkits/video_download_toolkit.py +21 -25
- camel_ai-0.2.23/camel/toolkits/web_toolkit.py +1307 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/whatsapp_toolkit.py +3 -2
- camel_ai-0.2.23/camel/toolkits/zapier_toolkit.py +191 -0
- camel_ai-0.2.23/camel/types/agents/__init__.py +16 -0
- camel_ai-0.2.23/camel/types/agents/tool_calling_record.py +52 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/types/enums.py +3 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/types/openai_types.py +16 -14
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/utils/__init__.py +2 -1
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/utils/async_func.py +2 -2
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/utils/commons.py +114 -1
- camel_ai-0.2.23/camel/verifiers/__init__.py +23 -0
- camel_ai-0.2.23/camel/verifiers/base.py +340 -0
- camel_ai-0.2.23/camel/verifiers/models.py +82 -0
- camel_ai-0.2.23/camel/verifiers/python_verifier.py +202 -0
- camel_ai-0.2.23/pyproject.toml +448 -0
- camel_ai-0.2.22/PKG-INFO +0 -527
- camel_ai-0.2.22/README.md +0 -401
- camel_ai-0.2.22/camel/agents/chat_agent.py +0 -1538
- camel_ai-0.2.22/pyproject.toml +0 -543
- {camel_ai-0.2.22 → camel_ai-0.2.23}/LICENSE +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/agents/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/agents/base.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/agents/critic_agent.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/agents/deductive_reasoner_agent.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/agents/embodied_agent.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/agents/programmed_agent_instruction.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/agents/role_assignment_agent.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/agents/search_agent.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/agents/task_agent.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/agents/tool_agents/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/agents/tool_agents/base.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/agents/tool_agents/hugging_face_tool_agent.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/benchmarks/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/benchmarks/apibank.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/benchmarks/apibench.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/benchmarks/base.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/benchmarks/gaia.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/benchmarks/nexus.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/benchmarks/ragbench.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/bots/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/bots/discord/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/bots/discord/discord_app.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/bots/discord/discord_installation.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/bots/discord/discord_store.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/bots/slack/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/bots/slack/models.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/bots/slack/slack_app.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/bots/telegram_bot.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/configs/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/configs/aiml_config.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/configs/anthropic_config.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/configs/cohere_config.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/configs/groq_config.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/configs/internlm_config.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/configs/litellm_config.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/configs/mistral_config.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/configs/moonshot_config.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/configs/nvidia_config.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/configs/ollama_config.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/configs/reka_config.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/configs/samba_config.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/configs/sglang_config.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/configs/siliconflow_config.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/configs/togetherai_config.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/configs/vllm_config.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/configs/yi_config.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/configs/zhipuai_config.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/data_collector/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/data_collector/alpaca_collector.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/data_collector/base.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/data_collector/sharegpt_collector.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/datagen/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/datagen/cot_datagen.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/datagen/self_instruct/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/datagen/self_instruct/filter/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/datagen/self_instruct/filter/filter_function.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/datagen/self_instruct/filter/filter_registry.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/datagen/self_instruct/templates.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/datagen/source2synth/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/datagen/source2synth/data_processor.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/datagen/source2synth/models.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/datagen/source2synth/user_data_processor_config.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/datahubs/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/datahubs/base.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/datahubs/huggingface.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/datahubs/models.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/embeddings/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/embeddings/base.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/embeddings/jina_embedding.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/embeddings/mistral_embedding.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/embeddings/openai_compatible_embedding.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/embeddings/openai_embedding.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/embeddings/sentence_transformers_embeddings.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/embeddings/vlm_embedding.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/generators.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/human.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/interpreters/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/interpreters/base.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/interpreters/docker/Dockerfile +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/interpreters/docker_interpreter.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/interpreters/e2b_interpreter.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/interpreters/internal_python_interpreter.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/interpreters/interpreter_error.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/interpreters/ipython_interpreter.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/interpreters/subprocess_interpreter.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/loaders/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/loaders/apify_reader.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/loaders/base_io.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/loaders/chunkr_reader.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/loaders/firecrawl_reader.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/loaders/jina_url_reader.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/loaders/mineru_extractor.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/loaders/panda_reader.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/loaders/unstructured_io.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/logger.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/memories/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/memories/base.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/memories/blocks/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/memories/context_creators/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/messages/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/messages/conversion/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/messages/conversion/alpaca.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/messages/conversion/conversation_models.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/messages/conversion/sharegpt/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/messages/conversion/sharegpt/function_call_formatter.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/messages/conversion/sharegpt/hermes/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/messages/conversion/sharegpt/hermes/hermes_function_formatter.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/messages/func_message.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/model_factory.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/reward/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/reward/base_reward_model.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/reward/evaluator.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/reward/nemotron_model.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/models/reward/skywork_model.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/personas/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/personas/persona.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/personas/persona_hub.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/prompts/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/prompts/ai_society.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/prompts/base.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/prompts/code.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/prompts/evaluation.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/prompts/generate_text_embedding_data.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/prompts/image_craft.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/prompts/misalignment.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/prompts/multi_condition_image_craft.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/prompts/object_recognition.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/prompts/persona_hub.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/prompts/prompt_templates.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/prompts/role_description_prompt_template.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/prompts/solution_extraction.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/prompts/task_prompt_template.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/prompts/translation.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/prompts/video_description_prompt.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/responses/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/responses/agent_responses.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/retrievers/auto_retriever.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/retrievers/base.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/retrievers/bm25_retriever.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/retrievers/cohere_rerank_retriever.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/retrievers/vector_retriever.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/runtime/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/runtime/api.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/runtime/base.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/runtime/configs.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/runtime/docker_runtime.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/runtime/llm_guard_runtime.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/runtime/remote_http_runtime.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/runtime/utils/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/runtime/utils/function_risk_toolkit.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/runtime/utils/ignore_risk_toolkit.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/schemas/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/schemas/base.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/schemas/openai_converter.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/schemas/outlines_converter.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/societies/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/societies/babyagi_playing.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/societies/role_playing.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/societies/workforce/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/societies/workforce/base.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/societies/workforce/prompts.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/societies/workforce/role_playing_worker.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/societies/workforce/single_agent_worker.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/societies/workforce/task_channel.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/societies/workforce/utils.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/societies/workforce/worker.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/societies/workforce/workforce.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/storages/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/storages/graph_storages/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/storages/graph_storages/base.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/storages/graph_storages/graph_element.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/storages/graph_storages/nebula_graph.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/storages/graph_storages/neo4j_graph.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/storages/key_value_storages/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/storages/key_value_storages/base.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/storages/key_value_storages/in_memory.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/storages/key_value_storages/json.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/storages/key_value_storages/redis.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/storages/object_storages/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/storages/object_storages/amazon_s3.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/storages/object_storages/azure_blob.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/storages/object_storages/base.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/storages/object_storages/google_cloud.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/storages/vectordb_storages/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/storages/vectordb_storages/base.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/storages/vectordb_storages/milvus.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/storages/vectordb_storages/qdrant.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/tasks/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/tasks/task.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/tasks/task_prompt.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/terminators/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/terminators/base.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/terminators/response_terminator.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/terminators/token_limit_terminator.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/dalle_toolkit.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/math_toolkit.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_specs/biztoc/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_specs/biztoc/ai-plugin.json +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_specs/biztoc/openapi.yaml +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_specs/coursera/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_specs/coursera/openapi.yaml +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_specs/create_qr_code/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_specs/create_qr_code/openapi.yaml +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_specs/klarna/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_specs/klarna/openapi.yaml +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_specs/nasa_apod/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_specs/nasa_apod/openapi.yaml +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_specs/outschool/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_specs/outschool/ai-plugin.json +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_specs/outschool/openapi.yaml +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_specs/outschool/paths/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_specs/outschool/paths/get_classes.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_specs/outschool/paths/search_teachers.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_specs/security_config.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_specs/speak/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_specs/speak/openapi.yaml +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_specs/web_scraper/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_specs/web_scraper/ai-plugin.json +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_specs/web_scraper/openapi.yaml +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_specs/web_scraper/paths/__init__.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_specs/web_scraper/paths/scraper.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/open_api_toolkit.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/search_toolkit.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/slack_toolkit.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/twitter_toolkit.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/toolkits/weather_toolkit.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/types/__init__.py +2 -2
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/types/unified_model_type.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/utils/constants.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/utils/deduplication.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/utils/response_format.py +0 -0
- {camel_ai-0.2.22 → camel_ai-0.2.23}/camel/utils/token_counting.py +0 -0
|
@@ -0,0 +1,433 @@
|
|
|
1
|
+
##### Python.gitignore #####
|
|
2
|
+
# Byte-compiled / optimized / DLL files
|
|
3
|
+
__pycache__/
|
|
4
|
+
*.py[cod]
|
|
5
|
+
*$py.class
|
|
6
|
+
|
|
7
|
+
# C extensions
|
|
8
|
+
*.so
|
|
9
|
+
|
|
10
|
+
# Distribution / packaging
|
|
11
|
+
.Python
|
|
12
|
+
build/
|
|
13
|
+
develop-eggs/
|
|
14
|
+
dist/
|
|
15
|
+
downloads/
|
|
16
|
+
eggs/
|
|
17
|
+
.eggs/
|
|
18
|
+
lib/
|
|
19
|
+
lib64/
|
|
20
|
+
parts/
|
|
21
|
+
sdist/
|
|
22
|
+
var/
|
|
23
|
+
wheels/
|
|
24
|
+
wheelhouse/
|
|
25
|
+
share/python-wheels/
|
|
26
|
+
*.egg-info/
|
|
27
|
+
.installed.cfg
|
|
28
|
+
*.egg
|
|
29
|
+
MANIFEST
|
|
30
|
+
*.whl
|
|
31
|
+
|
|
32
|
+
# PyInstaller
|
|
33
|
+
# Usually these files are written by a python script from a template
|
|
34
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
35
|
+
*.manifest
|
|
36
|
+
*.spec
|
|
37
|
+
|
|
38
|
+
# Installer logs
|
|
39
|
+
pip-log.txt
|
|
40
|
+
pip-delete-this-directory.txt
|
|
41
|
+
|
|
42
|
+
# Unit test / coverage reports
|
|
43
|
+
htmlcov/
|
|
44
|
+
.tox/
|
|
45
|
+
.nox/
|
|
46
|
+
.coverage
|
|
47
|
+
.coverage.*
|
|
48
|
+
.cache
|
|
49
|
+
nosetests.xml
|
|
50
|
+
coverage.xml
|
|
51
|
+
*.cover
|
|
52
|
+
*.py,cover
|
|
53
|
+
.hypothesis/
|
|
54
|
+
.pytest_cache/
|
|
55
|
+
cover/
|
|
56
|
+
|
|
57
|
+
# Translations
|
|
58
|
+
*.mo
|
|
59
|
+
*.pot
|
|
60
|
+
|
|
61
|
+
# Django stuff:
|
|
62
|
+
*.log
|
|
63
|
+
local_settings.py
|
|
64
|
+
db.sqlite3
|
|
65
|
+
db.sqlite3-journal
|
|
66
|
+
|
|
67
|
+
# Flask stuff:
|
|
68
|
+
instance/
|
|
69
|
+
.webassets-cache
|
|
70
|
+
|
|
71
|
+
# Scrapy stuff:
|
|
72
|
+
.scrapy
|
|
73
|
+
|
|
74
|
+
# Sphinx documentation
|
|
75
|
+
docs/_build/
|
|
76
|
+
docs/build/
|
|
77
|
+
docs/source/_build/
|
|
78
|
+
|
|
79
|
+
# PyBuilder
|
|
80
|
+
.pybuilder/
|
|
81
|
+
target/
|
|
82
|
+
|
|
83
|
+
# Jupyter Notebook
|
|
84
|
+
.ipynb_checkpoints
|
|
85
|
+
|
|
86
|
+
# IPython
|
|
87
|
+
profile_default/
|
|
88
|
+
ipython_config.py
|
|
89
|
+
|
|
90
|
+
# pyenv
|
|
91
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
92
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
93
|
+
.python-version
|
|
94
|
+
|
|
95
|
+
# pipenv
|
|
96
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
97
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
98
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
99
|
+
# install all needed dependencies.
|
|
100
|
+
#Pipfile.lock
|
|
101
|
+
|
|
102
|
+
# poetry
|
|
103
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
104
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
105
|
+
# commonly ignored for libraries.
|
|
106
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
107
|
+
# poetry.lock
|
|
108
|
+
|
|
109
|
+
# pdm
|
|
110
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
111
|
+
#pdm.lock
|
|
112
|
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
113
|
+
# in version control.
|
|
114
|
+
# https://pdm.fming.dev/#use-with-ide
|
|
115
|
+
.pdm.toml
|
|
116
|
+
|
|
117
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
118
|
+
__pypackages__/
|
|
119
|
+
|
|
120
|
+
# Celery stuff
|
|
121
|
+
celerybeat-schedule
|
|
122
|
+
celerybeat.pid
|
|
123
|
+
|
|
124
|
+
# SageMath parsed files
|
|
125
|
+
*.sage.py
|
|
126
|
+
|
|
127
|
+
# Environments
|
|
128
|
+
.venv
|
|
129
|
+
env/
|
|
130
|
+
venv/
|
|
131
|
+
ENV/
|
|
132
|
+
env.bak/
|
|
133
|
+
venv.bak/
|
|
134
|
+
|
|
135
|
+
# Spyder project settings
|
|
136
|
+
.spyderproject
|
|
137
|
+
.spyproject
|
|
138
|
+
|
|
139
|
+
# Rope project settings
|
|
140
|
+
.ropeproject
|
|
141
|
+
|
|
142
|
+
# mkdocs documentation
|
|
143
|
+
/site
|
|
144
|
+
|
|
145
|
+
# ruff
|
|
146
|
+
.ruff_cache/
|
|
147
|
+
|
|
148
|
+
# mypy
|
|
149
|
+
.mypy_cache/
|
|
150
|
+
.dmypy.json
|
|
151
|
+
dmypy.json
|
|
152
|
+
|
|
153
|
+
# Pyre type checker
|
|
154
|
+
.pyre/
|
|
155
|
+
|
|
156
|
+
# pytype static type analyzer
|
|
157
|
+
.pytype/
|
|
158
|
+
|
|
159
|
+
# Cython debug symbols
|
|
160
|
+
cython_debug/
|
|
161
|
+
|
|
162
|
+
# PyCharm
|
|
163
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
164
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
165
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
166
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
167
|
+
.idea/
|
|
168
|
+
|
|
169
|
+
|
|
170
|
+
##### macOS.gitignore #####
|
|
171
|
+
# General
|
|
172
|
+
.DS_Store
|
|
173
|
+
.AppleDouble
|
|
174
|
+
.LSOverride
|
|
175
|
+
|
|
176
|
+
# Icon must end with two \r
|
|
177
|
+
Icon
|
|
178
|
+
|
|
179
|
+
# Thumbnails
|
|
180
|
+
._*
|
|
181
|
+
|
|
182
|
+
# Files that might appear in the root of a volume
|
|
183
|
+
.DocumentRevisions-V100
|
|
184
|
+
.fseventsd
|
|
185
|
+
.Spotlight-V100
|
|
186
|
+
.TemporaryItems
|
|
187
|
+
.Trashes
|
|
188
|
+
.VolumeIcon.icns
|
|
189
|
+
.com.apple.timemachine.donotpresent
|
|
190
|
+
|
|
191
|
+
# Directories potentially created on remote AFP share
|
|
192
|
+
.AppleDB
|
|
193
|
+
.AppleDesktop
|
|
194
|
+
Network Trash Folder
|
|
195
|
+
Temporary Items
|
|
196
|
+
.apdisk
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
##### Linux.gitignore #####
|
|
200
|
+
*~
|
|
201
|
+
|
|
202
|
+
# Temporary files which can be created if a process still has a handle open of a deleted file
|
|
203
|
+
.fuse_hidden*
|
|
204
|
+
|
|
205
|
+
# KDE directory preferences
|
|
206
|
+
.directory
|
|
207
|
+
|
|
208
|
+
# Linux trash folder which might appear on any partition or disk
|
|
209
|
+
.Trash-*
|
|
210
|
+
|
|
211
|
+
# .nfs files are created when an open file is removed but is still being accessed
|
|
212
|
+
.nfs*
|
|
213
|
+
|
|
214
|
+
|
|
215
|
+
##### Windows.gitignore #####
|
|
216
|
+
# Windows thumbnail cache files
|
|
217
|
+
Thumbs.db
|
|
218
|
+
Thumbs.db:encryptable
|
|
219
|
+
ehthumbs.db
|
|
220
|
+
ehthumbs_vista.db
|
|
221
|
+
|
|
222
|
+
# Dump file
|
|
223
|
+
*.stackdump
|
|
224
|
+
|
|
225
|
+
# Folder config file
|
|
226
|
+
[Dd]esktop.ini
|
|
227
|
+
|
|
228
|
+
# Recycle Bin used on file shares
|
|
229
|
+
$RECYCLE.BIN/
|
|
230
|
+
|
|
231
|
+
# Windows Installer files
|
|
232
|
+
*.cab
|
|
233
|
+
*.msi
|
|
234
|
+
*.msix
|
|
235
|
+
*.msm
|
|
236
|
+
*.msp
|
|
237
|
+
|
|
238
|
+
# Windows shortcuts
|
|
239
|
+
*.lnk
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
##### Archives.gitignore #####
|
|
243
|
+
# It's better to unpack these files and commit the raw source because
|
|
244
|
+
# git has its own built in compression methods.
|
|
245
|
+
*.7z
|
|
246
|
+
*.jar
|
|
247
|
+
*.rar
|
|
248
|
+
*.gz
|
|
249
|
+
*.gzip
|
|
250
|
+
*.tgz
|
|
251
|
+
*.bzip
|
|
252
|
+
*.bzip2
|
|
253
|
+
*.bz2
|
|
254
|
+
*.xz
|
|
255
|
+
*.lzma
|
|
256
|
+
*.cab
|
|
257
|
+
*.xar
|
|
258
|
+
|
|
259
|
+
# Packing-only formats
|
|
260
|
+
*.iso
|
|
261
|
+
*.tar
|
|
262
|
+
|
|
263
|
+
# Package management formats
|
|
264
|
+
*.dmg
|
|
265
|
+
*.xpi
|
|
266
|
+
*.gem
|
|
267
|
+
*.egg
|
|
268
|
+
*.deb
|
|
269
|
+
*.rpm
|
|
270
|
+
*.msi
|
|
271
|
+
*.msm
|
|
272
|
+
*.msp
|
|
273
|
+
*.txz
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
##### Xcode.gitignore #####
|
|
277
|
+
# Xcode
|
|
278
|
+
#
|
|
279
|
+
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
|
|
280
|
+
|
|
281
|
+
## User settings
|
|
282
|
+
xcuserdata/
|
|
283
|
+
|
|
284
|
+
## Compatibility with Xcode 8 and earlier (ignoring not required starting Xcode 9)
|
|
285
|
+
*.xcscmblueprint
|
|
286
|
+
*.xccheckout
|
|
287
|
+
|
|
288
|
+
## Compatibility with Xcode 3 and earlier (ignoring not required starting Xcode 4)
|
|
289
|
+
build/
|
|
290
|
+
DerivedData/
|
|
291
|
+
*.moved-aside
|
|
292
|
+
*.pbxuser
|
|
293
|
+
!default.pbxuser
|
|
294
|
+
*.mode1v3
|
|
295
|
+
!default.mode1v3
|
|
296
|
+
*.mode2v3
|
|
297
|
+
!default.mode2v3
|
|
298
|
+
*.perspectivev3
|
|
299
|
+
!default.perspectivev3
|
|
300
|
+
|
|
301
|
+
## Gcc Patch
|
|
302
|
+
/*.gcno
|
|
303
|
+
|
|
304
|
+
|
|
305
|
+
##### JetBrains.gitignore #####
|
|
306
|
+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
|
|
307
|
+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
|
|
308
|
+
|
|
309
|
+
# User settings
|
|
310
|
+
.idea/*
|
|
311
|
+
|
|
312
|
+
# User-specific stuff
|
|
313
|
+
.idea/**/workspace.xml
|
|
314
|
+
.idea/**/tasks.xml
|
|
315
|
+
.idea/**/usage.statistics.xml
|
|
316
|
+
.idea/**/dictionaries
|
|
317
|
+
.idea/**/shelf
|
|
318
|
+
|
|
319
|
+
# Generated files
|
|
320
|
+
.idea/**/contentModel.xml
|
|
321
|
+
|
|
322
|
+
# Sensitive or high-churn files
|
|
323
|
+
.idea/**/dataSources/
|
|
324
|
+
.idea/**/dataSources.ids
|
|
325
|
+
.idea/**/dataSources.local.xml
|
|
326
|
+
.idea/**/sqlDataSources.xml
|
|
327
|
+
.idea/**/dynamic.xml
|
|
328
|
+
.idea/**/uiDesigner.xml
|
|
329
|
+
.idea/**/dbnavigator.xml
|
|
330
|
+
|
|
331
|
+
# Gradle
|
|
332
|
+
.idea/**/gradle.xml
|
|
333
|
+
.idea/**/libraries
|
|
334
|
+
|
|
335
|
+
# Gradle and Maven with auto-import
|
|
336
|
+
# When using Gradle or Maven with auto-import, you should exclude module files,
|
|
337
|
+
# since they will be recreated, and may cause churn. Uncomment if using
|
|
338
|
+
# auto-import.
|
|
339
|
+
# .idea/artifacts
|
|
340
|
+
# .idea/compiler.xml
|
|
341
|
+
# .idea/jarRepositories.xml
|
|
342
|
+
# .idea/modules.xml
|
|
343
|
+
# .idea/*.iml
|
|
344
|
+
# .idea/modules
|
|
345
|
+
# *.iml
|
|
346
|
+
# *.ipr
|
|
347
|
+
|
|
348
|
+
# CMake
|
|
349
|
+
cmake-build-*/
|
|
350
|
+
|
|
351
|
+
# Mongo Explorer plugin
|
|
352
|
+
.idea/**/mongoSettings.xml
|
|
353
|
+
|
|
354
|
+
# File-based project format
|
|
355
|
+
*.iws
|
|
356
|
+
|
|
357
|
+
# IntelliJ
|
|
358
|
+
out/
|
|
359
|
+
|
|
360
|
+
# mpeltonen/sbt-idea plugin
|
|
361
|
+
.idea_modules/
|
|
362
|
+
|
|
363
|
+
# JIRA plugin
|
|
364
|
+
atlassian-ide-plugin.xml
|
|
365
|
+
|
|
366
|
+
# Cursive Clojure plugin
|
|
367
|
+
.idea/replstate.xml
|
|
368
|
+
|
|
369
|
+
# Crashlytics plugin (for Android Studio and IntelliJ)
|
|
370
|
+
com_crashlytics_export_strings.xml
|
|
371
|
+
crashlytics.properties
|
|
372
|
+
crashlytics-build.properties
|
|
373
|
+
fabric.properties
|
|
374
|
+
|
|
375
|
+
# Editor-based Rest Client
|
|
376
|
+
.idea/httpRequests
|
|
377
|
+
|
|
378
|
+
# Android studio 3.1+ serialized cache file
|
|
379
|
+
.idea/caches/build_file_checksums.ser
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
##### VisualStudioCode.gitignore #####
|
|
383
|
+
.vscode/*
|
|
384
|
+
# !.vscode/settings.json
|
|
385
|
+
# !.vscode/tasks.json
|
|
386
|
+
# !.vscode/launch.json
|
|
387
|
+
!.vscode/extensions.json
|
|
388
|
+
*.code-workspace
|
|
389
|
+
.envs
|
|
390
|
+
|
|
391
|
+
# Local History for Visual Studio Code
|
|
392
|
+
.history/
|
|
393
|
+
|
|
394
|
+
|
|
395
|
+
##### Vim.gitignore #####
|
|
396
|
+
# Swap
|
|
397
|
+
.*.s[a-v][a-z]
|
|
398
|
+
!*.svg # comment out if you don't need vector files
|
|
399
|
+
.*.sw[a-p]
|
|
400
|
+
.s[a-rt-v][a-z]
|
|
401
|
+
.ss[a-gi-z]
|
|
402
|
+
.sw[a-p]
|
|
403
|
+
|
|
404
|
+
# Session
|
|
405
|
+
Session.vim
|
|
406
|
+
Sessionx.vim
|
|
407
|
+
|
|
408
|
+
# Temporary
|
|
409
|
+
.netrwhist
|
|
410
|
+
*~
|
|
411
|
+
# Auto-generated tag files
|
|
412
|
+
tags
|
|
413
|
+
# Persistent undo
|
|
414
|
+
[._]*.un~
|
|
415
|
+
|
|
416
|
+
# Camel
|
|
417
|
+
logs/
|
|
418
|
+
|
|
419
|
+
# Download Configuration
|
|
420
|
+
cookies.txt
|
|
421
|
+
|
|
422
|
+
# Data
|
|
423
|
+
datasets_test/
|
|
424
|
+
evaluation_data/
|
|
425
|
+
camel_data/
|
|
426
|
+
temp_files/
|
|
427
|
+
|
|
428
|
+
#Benchmark
|
|
429
|
+
benchmark/gaia/Dataset
|
|
430
|
+
benchmark/gaia/results.jsonl
|
|
431
|
+
|
|
432
|
+
# Secret files for docker
|
|
433
|
+
.container/.env
|