camel-ai 0.2.22__tar.gz → 0.2.23a0__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.

Files changed (335) hide show
  1. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/PKG-INFO +273 -255
  2. camel_ai-0.2.23a0/README.md +422 -0
  3. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/__init__.py +1 -1
  4. camel_ai-0.2.23a0/camel/agents/_types.py +41 -0
  5. camel_ai-0.2.23a0/camel/agents/_utils.py +188 -0
  6. camel_ai-0.2.23a0/camel/agents/chat_agent.py +1129 -0
  7. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/agents/knowledge_graph_agent.py +7 -1
  8. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/agents/multi_hop_generator_agent.py +1 -1
  9. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/configs/base_config.py +10 -13
  10. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/configs/deepseek_config.py +4 -30
  11. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/configs/gemini_config.py +5 -31
  12. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/configs/openai_config.py +14 -32
  13. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/configs/qwen_config.py +36 -36
  14. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/datagen/self_improving_cot.py +79 -1
  15. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/datagen/self_instruct/filter/instruction_filter.py +19 -3
  16. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/datagen/self_instruct/self_instruct.py +6 -1
  17. camel_ai-0.2.23a0/camel/datasets/__init__.py +28 -0
  18. camel_ai-0.2.23a0/camel/datasets/base.py +969 -0
  19. camel_ai-0.2.23a0/camel/environments/__init__.py +16 -0
  20. camel_ai-0.2.23a0/camel/environments/base.py +503 -0
  21. camel_ai-0.2.23a0/camel/extractors/__init__.py +16 -0
  22. camel_ai-0.2.23a0/camel/extractors/base.py +263 -0
  23. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/memories/agent_memories.py +16 -1
  24. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/memories/blocks/chat_history_block.py +10 -2
  25. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/memories/blocks/vectordb_block.py +1 -0
  26. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/memories/context_creators/score_based.py +20 -3
  27. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/memories/records.py +10 -0
  28. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/messages/base.py +8 -8
  29. camel_ai-0.2.23a0/camel/models/_utils.py +57 -0
  30. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/aiml_model.py +48 -17
  31. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/anthropic_model.py +41 -3
  32. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/azure_openai_model.py +39 -3
  33. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/base_model.py +88 -13
  34. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/cohere_model.py +88 -11
  35. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/deepseek_model.py +107 -45
  36. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/gemini_model.py +133 -15
  37. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/groq_model.py +72 -10
  38. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/internlm_model.py +14 -3
  39. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/litellm_model.py +9 -2
  40. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/mistral_model.py +42 -5
  41. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/model_manager.py +48 -3
  42. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/moonshot_model.py +33 -4
  43. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/nemotron_model.py +32 -3
  44. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/nvidia_model.py +43 -3
  45. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/ollama_model.py +139 -17
  46. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/openai_audio_models.py +7 -1
  47. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/openai_compatible_model.py +37 -3
  48. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/openai_model.py +158 -46
  49. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/qwen_model.py +61 -4
  50. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/reka_model.py +53 -3
  51. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/samba_model.py +209 -4
  52. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/sglang_model.py +153 -14
  53. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/siliconflow_model.py +16 -3
  54. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/stub_model.py +46 -4
  55. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/togetherai_model.py +38 -3
  56. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/vllm_model.py +37 -3
  57. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/yi_model.py +36 -3
  58. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/zhipuai_model.py +38 -3
  59. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/retrievers/__init__.py +3 -0
  60. camel_ai-0.2.23a0/camel/retrievers/hybrid_retrival.py +237 -0
  61. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/__init__.py +4 -0
  62. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/arxiv_toolkit.py +2 -1
  63. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/ask_news_toolkit.py +4 -2
  64. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/base.py +22 -3
  65. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/code_execution.py +2 -0
  66. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/dappier_toolkit.py +2 -1
  67. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/data_commons_toolkit.py +38 -12
  68. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/function_tool.py +13 -0
  69. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/github_toolkit.py +5 -1
  70. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/google_maps_toolkit.py +2 -1
  71. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/google_scholar_toolkit.py +2 -0
  72. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/human_toolkit.py +0 -3
  73. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/linkedin_toolkit.py +3 -2
  74. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/meshy_toolkit.py +3 -2
  75. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/mineru_toolkit.py +2 -2
  76. camel_ai-0.2.23a0/camel/toolkits/networkx_toolkit.py +240 -0
  77. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/notion_toolkit.py +2 -0
  78. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/openbb_toolkit.py +3 -2
  79. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/reddit_toolkit.py +11 -3
  80. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/retrieval_toolkit.py +6 -1
  81. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/semantic_scholar_toolkit.py +2 -1
  82. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/stripe_toolkit.py +8 -2
  83. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/sympy_toolkit.py +6 -1
  84. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/video_toolkit.py +2 -0
  85. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/whatsapp_toolkit.py +3 -2
  86. camel_ai-0.2.23a0/camel/toolkits/zapier_toolkit.py +191 -0
  87. camel_ai-0.2.23a0/camel/types/agents/__init__.py +16 -0
  88. camel_ai-0.2.23a0/camel/types/agents/tool_calling_record.py +52 -0
  89. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/types/enums.py +3 -0
  90. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/types/openai_types.py +16 -14
  91. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/utils/__init__.py +2 -1
  92. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/utils/async_func.py +2 -2
  93. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/utils/commons.py +114 -1
  94. camel_ai-0.2.23a0/camel/verifiers/__init__.py +23 -0
  95. camel_ai-0.2.23a0/camel/verifiers/base.py +340 -0
  96. camel_ai-0.2.23a0/camel/verifiers/models.py +82 -0
  97. camel_ai-0.2.23a0/camel/verifiers/python_verifier.py +202 -0
  98. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/pyproject.toml +8 -15
  99. camel_ai-0.2.22/README.md +0 -401
  100. camel_ai-0.2.22/camel/agents/chat_agent.py +0 -1538
  101. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/LICENSE +0 -0
  102. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/agents/__init__.py +0 -0
  103. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/agents/base.py +0 -0
  104. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/agents/critic_agent.py +0 -0
  105. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/agents/deductive_reasoner_agent.py +0 -0
  106. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/agents/embodied_agent.py +0 -0
  107. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/agents/programmed_agent_instruction.py +0 -0
  108. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/agents/role_assignment_agent.py +0 -0
  109. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/agents/search_agent.py +0 -0
  110. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/agents/task_agent.py +0 -0
  111. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/agents/tool_agents/__init__.py +0 -0
  112. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/agents/tool_agents/base.py +0 -0
  113. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/agents/tool_agents/hugging_face_tool_agent.py +0 -0
  114. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/benchmarks/__init__.py +0 -0
  115. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/benchmarks/apibank.py +0 -0
  116. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/benchmarks/apibench.py +0 -0
  117. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/benchmarks/base.py +0 -0
  118. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/benchmarks/gaia.py +0 -0
  119. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/benchmarks/nexus.py +0 -0
  120. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/benchmarks/ragbench.py +0 -0
  121. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/bots/__init__.py +0 -0
  122. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/bots/discord/__init__.py +0 -0
  123. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/bots/discord/discord_app.py +0 -0
  124. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/bots/discord/discord_installation.py +0 -0
  125. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/bots/discord/discord_store.py +0 -0
  126. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/bots/slack/__init__.py +0 -0
  127. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/bots/slack/models.py +0 -0
  128. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/bots/slack/slack_app.py +0 -0
  129. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/bots/telegram_bot.py +0 -0
  130. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/configs/__init__.py +0 -0
  131. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/configs/aiml_config.py +0 -0
  132. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/configs/anthropic_config.py +0 -0
  133. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/configs/cohere_config.py +0 -0
  134. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/configs/groq_config.py +0 -0
  135. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/configs/internlm_config.py +0 -0
  136. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/configs/litellm_config.py +0 -0
  137. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/configs/mistral_config.py +0 -0
  138. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/configs/moonshot_config.py +0 -0
  139. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/configs/nvidia_config.py +0 -0
  140. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/configs/ollama_config.py +0 -0
  141. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/configs/reka_config.py +0 -0
  142. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/configs/samba_config.py +0 -0
  143. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/configs/sglang_config.py +0 -0
  144. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/configs/siliconflow_config.py +0 -0
  145. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/configs/togetherai_config.py +0 -0
  146. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/configs/vllm_config.py +0 -0
  147. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/configs/yi_config.py +0 -0
  148. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/configs/zhipuai_config.py +0 -0
  149. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/data_collector/__init__.py +0 -0
  150. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/data_collector/alpaca_collector.py +0 -0
  151. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/data_collector/base.py +0 -0
  152. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/data_collector/sharegpt_collector.py +0 -0
  153. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/datagen/__init__.py +0 -0
  154. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/datagen/cot_datagen.py +0 -0
  155. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/datagen/self_instruct/__init__.py +0 -0
  156. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/datagen/self_instruct/filter/__init__.py +0 -0
  157. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/datagen/self_instruct/filter/filter_function.py +0 -0
  158. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/datagen/self_instruct/filter/filter_registry.py +0 -0
  159. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/datagen/self_instruct/templates.py +0 -0
  160. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/datagen/source2synth/__init__.py +0 -0
  161. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/datagen/source2synth/data_processor.py +0 -0
  162. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/datagen/source2synth/models.py +0 -0
  163. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/datagen/source2synth/user_data_processor_config.py +0 -0
  164. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/datahubs/__init__.py +0 -0
  165. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/datahubs/base.py +0 -0
  166. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/datahubs/huggingface.py +0 -0
  167. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/datahubs/models.py +0 -0
  168. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/embeddings/__init__.py +0 -0
  169. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/embeddings/base.py +0 -0
  170. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/embeddings/jina_embedding.py +0 -0
  171. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/embeddings/mistral_embedding.py +0 -0
  172. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/embeddings/openai_compatible_embedding.py +0 -0
  173. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/embeddings/openai_embedding.py +0 -0
  174. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/embeddings/sentence_transformers_embeddings.py +0 -0
  175. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/embeddings/vlm_embedding.py +0 -0
  176. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/generators.py +0 -0
  177. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/human.py +0 -0
  178. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/interpreters/__init__.py +0 -0
  179. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/interpreters/base.py +0 -0
  180. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/interpreters/docker/Dockerfile +0 -0
  181. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/interpreters/docker_interpreter.py +0 -0
  182. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/interpreters/e2b_interpreter.py +0 -0
  183. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/interpreters/internal_python_interpreter.py +0 -0
  184. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/interpreters/interpreter_error.py +0 -0
  185. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/interpreters/ipython_interpreter.py +0 -0
  186. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/interpreters/subprocess_interpreter.py +0 -0
  187. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/loaders/__init__.py +0 -0
  188. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/loaders/apify_reader.py +0 -0
  189. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/loaders/base_io.py +0 -0
  190. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/loaders/chunkr_reader.py +0 -0
  191. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/loaders/firecrawl_reader.py +0 -0
  192. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/loaders/jina_url_reader.py +0 -0
  193. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/loaders/mineru_extractor.py +0 -0
  194. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/loaders/panda_reader.py +0 -0
  195. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/loaders/unstructured_io.py +0 -0
  196. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/logger.py +0 -0
  197. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/memories/__init__.py +0 -0
  198. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/memories/base.py +0 -0
  199. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/memories/blocks/__init__.py +0 -0
  200. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/memories/context_creators/__init__.py +0 -0
  201. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/messages/__init__.py +0 -0
  202. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/messages/conversion/__init__.py +0 -0
  203. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/messages/conversion/alpaca.py +0 -0
  204. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/messages/conversion/conversation_models.py +0 -0
  205. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/messages/conversion/sharegpt/__init__.py +0 -0
  206. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/messages/conversion/sharegpt/function_call_formatter.py +0 -0
  207. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/messages/conversion/sharegpt/hermes/__init__.py +0 -0
  208. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/messages/conversion/sharegpt/hermes/hermes_function_formatter.py +0 -0
  209. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/messages/func_message.py +0 -0
  210. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/__init__.py +0 -0
  211. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/fish_audio_model.py +0 -0
  212. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/model_factory.py +0 -0
  213. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/reward/__init__.py +0 -0
  214. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/reward/base_reward_model.py +0 -0
  215. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/reward/evaluator.py +0 -0
  216. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/reward/nemotron_model.py +0 -0
  217. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/models/reward/skywork_model.py +0 -0
  218. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/personas/__init__.py +0 -0
  219. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/personas/persona.py +0 -0
  220. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/personas/persona_hub.py +0 -0
  221. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/prompts/__init__.py +0 -0
  222. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/prompts/ai_society.py +0 -0
  223. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/prompts/base.py +0 -0
  224. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/prompts/code.py +0 -0
  225. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/prompts/evaluation.py +0 -0
  226. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/prompts/generate_text_embedding_data.py +0 -0
  227. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/prompts/image_craft.py +0 -0
  228. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/prompts/misalignment.py +0 -0
  229. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/prompts/multi_condition_image_craft.py +0 -0
  230. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/prompts/object_recognition.py +0 -0
  231. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/prompts/persona_hub.py +0 -0
  232. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/prompts/prompt_templates.py +0 -0
  233. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/prompts/role_description_prompt_template.py +0 -0
  234. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/prompts/solution_extraction.py +0 -0
  235. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/prompts/task_prompt_template.py +0 -0
  236. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/prompts/translation.py +0 -0
  237. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/prompts/video_description_prompt.py +0 -0
  238. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/responses/__init__.py +0 -0
  239. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/responses/agent_responses.py +0 -0
  240. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/retrievers/auto_retriever.py +0 -0
  241. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/retrievers/base.py +0 -0
  242. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/retrievers/bm25_retriever.py +0 -0
  243. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/retrievers/cohere_rerank_retriever.py +0 -0
  244. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/retrievers/vector_retriever.py +0 -0
  245. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/runtime/__init__.py +0 -0
  246. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/runtime/api.py +0 -0
  247. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/runtime/base.py +0 -0
  248. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/runtime/configs.py +0 -0
  249. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/runtime/docker_runtime.py +0 -0
  250. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/runtime/llm_guard_runtime.py +0 -0
  251. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/runtime/remote_http_runtime.py +0 -0
  252. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/runtime/utils/__init__.py +0 -0
  253. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/runtime/utils/function_risk_toolkit.py +0 -0
  254. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/runtime/utils/ignore_risk_toolkit.py +0 -0
  255. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/schemas/__init__.py +0 -0
  256. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/schemas/base.py +0 -0
  257. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/schemas/openai_converter.py +0 -0
  258. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/schemas/outlines_converter.py +0 -0
  259. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/societies/__init__.py +0 -0
  260. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/societies/babyagi_playing.py +0 -0
  261. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/societies/role_playing.py +0 -0
  262. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/societies/workforce/__init__.py +0 -0
  263. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/societies/workforce/base.py +0 -0
  264. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/societies/workforce/prompts.py +0 -0
  265. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/societies/workforce/role_playing_worker.py +0 -0
  266. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/societies/workforce/single_agent_worker.py +0 -0
  267. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/societies/workforce/task_channel.py +0 -0
  268. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/societies/workforce/utils.py +0 -0
  269. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/societies/workforce/worker.py +0 -0
  270. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/societies/workforce/workforce.py +0 -0
  271. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/storages/__init__.py +0 -0
  272. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/storages/graph_storages/__init__.py +0 -0
  273. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/storages/graph_storages/base.py +0 -0
  274. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/storages/graph_storages/graph_element.py +0 -0
  275. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/storages/graph_storages/nebula_graph.py +0 -0
  276. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/storages/graph_storages/neo4j_graph.py +0 -0
  277. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/storages/key_value_storages/__init__.py +0 -0
  278. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/storages/key_value_storages/base.py +0 -0
  279. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/storages/key_value_storages/in_memory.py +0 -0
  280. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/storages/key_value_storages/json.py +0 -0
  281. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/storages/key_value_storages/redis.py +0 -0
  282. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/storages/object_storages/__init__.py +0 -0
  283. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/storages/object_storages/amazon_s3.py +0 -0
  284. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/storages/object_storages/azure_blob.py +0 -0
  285. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/storages/object_storages/base.py +0 -0
  286. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/storages/object_storages/google_cloud.py +0 -0
  287. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/storages/vectordb_storages/__init__.py +0 -0
  288. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/storages/vectordb_storages/base.py +0 -0
  289. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/storages/vectordb_storages/milvus.py +0 -0
  290. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/storages/vectordb_storages/qdrant.py +0 -0
  291. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/tasks/__init__.py +0 -0
  292. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/tasks/task.py +0 -0
  293. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/tasks/task_prompt.py +0 -0
  294. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/terminators/__init__.py +0 -0
  295. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/terminators/base.py +0 -0
  296. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/terminators/response_terminator.py +0 -0
  297. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/terminators/token_limit_terminator.py +0 -0
  298. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/dalle_toolkit.py +0 -0
  299. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/math_toolkit.py +0 -0
  300. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_specs/biztoc/__init__.py +0 -0
  301. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_specs/biztoc/ai-plugin.json +0 -0
  302. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_specs/biztoc/openapi.yaml +0 -0
  303. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_specs/coursera/__init__.py +0 -0
  304. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_specs/coursera/openapi.yaml +0 -0
  305. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_specs/create_qr_code/__init__.py +0 -0
  306. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_specs/create_qr_code/openapi.yaml +0 -0
  307. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_specs/klarna/__init__.py +0 -0
  308. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_specs/klarna/openapi.yaml +0 -0
  309. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_specs/nasa_apod/__init__.py +0 -0
  310. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_specs/nasa_apod/openapi.yaml +0 -0
  311. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_specs/outschool/__init__.py +0 -0
  312. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_specs/outschool/ai-plugin.json +0 -0
  313. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_specs/outschool/openapi.yaml +0 -0
  314. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_specs/outschool/paths/__init__.py +0 -0
  315. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_specs/outschool/paths/get_classes.py +0 -0
  316. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_specs/outschool/paths/search_teachers.py +0 -0
  317. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_specs/security_config.py +0 -0
  318. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_specs/speak/__init__.py +0 -0
  319. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_specs/speak/openapi.yaml +0 -0
  320. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_specs/web_scraper/__init__.py +0 -0
  321. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_specs/web_scraper/ai-plugin.json +0 -0
  322. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_specs/web_scraper/openapi.yaml +0 -0
  323. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_specs/web_scraper/paths/__init__.py +0 -0
  324. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_specs/web_scraper/paths/scraper.py +0 -0
  325. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/open_api_toolkit.py +0 -0
  326. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/search_toolkit.py +0 -0
  327. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/slack_toolkit.py +0 -0
  328. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/twitter_toolkit.py +0 -0
  329. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/toolkits/weather_toolkit.py +0 -0
  330. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/types/__init__.py +2 -2
  331. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/types/unified_model_type.py +0 -0
  332. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/utils/constants.py +0 -0
  333. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/utils/deduplication.py +0 -0
  334. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/utils/response_format.py +0 -0
  335. {camel_ai-0.2.22 → camel_ai-0.2.23a0}/camel/utils/token_counting.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: camel-ai
3
- Version: 0.2.22
3
+ Version: 0.2.23a0
4
4
  Summary: Communicative Agents for AI Society Study
5
5
  License: Apache-2.0
6
6
  Keywords: communicative-ai,ai-societies,artificial-intelligence,deep-learning,multi-agent-systems,cooperative-ai,natural-language-processing,large-language-models
@@ -32,7 +32,6 @@ Requires-Dist: anthropic (>=0.42.0,<0.43.0) ; extra == "model-platforms" or extr
32
32
  Requires-Dist: apify_client (>=1.8.1,<2.0.0) ; extra == "web-tools" or extra == "all"
33
33
  Requires-Dist: arxiv (>=2.1.3,<3.0.0) ; extra == "research-tools" or extra == "all"
34
34
  Requires-Dist: arxiv2text (>=0.1.14,<0.2.0) ; extra == "research-tools" or extra == "all"
35
- Requires-Dist: asknews (>=0.7.54,<0.8.0) ; extra == "web-tools" or extra == "all"
36
35
  Requires-Dist: azure-storage-blob (>=12.21.0,<13.0.0) ; extra == "storage" or extra == "all"
37
36
  Requires-Dist: beautifulsoup4 (>=4,<5) ; extra == "document-tools" or extra == "all"
38
37
  Requires-Dist: botocore (>=1.35.3,<2.0.0) ; extra == "storage" or extra == "all"
@@ -56,7 +55,7 @@ Requires-Dist: firecrawl-py (>=1.0.0,<2.0.0) ; extra == "web-tools" or extra ==
56
55
  Requires-Dist: fish-audio-sdk (>=2024.12.5,<2025.0.0) ; extra == "model-platforms" or extra == "all"
57
56
  Requires-Dist: google-cloud-storage (>=2.18.0,<3.0.0) ; extra == "storage" or extra == "all"
58
57
  Requires-Dist: googlemaps (>=4.10.0,<5.0.0) ; extra == "web-tools" or extra == "all"
59
- Requires-Dist: httpx (>=0.23.0,<0.27.3)
58
+ Requires-Dist: httpx (>=0.28.0,<1.0.0dev)
60
59
  Requires-Dist: imageio[pyav] (>=2.34.2,<3.0.0) ; extra == "media-tools" or extra == "all"
61
60
  Requires-Dist: ipykernel (>=6.0.0,<7.0.0) ; extra == "dev-tools" or extra == "all"
62
61
  Requires-Dist: jsonschema (>=4,<5)
@@ -67,17 +66,16 @@ Requires-Dist: mistralai (>=1.1.0,<2.0.0) ; extra == "model-platforms" or extra
67
66
  Requires-Dist: mock (>=5,<6) ; extra == "test"
68
67
  Requires-Dist: nebula3-python (==3.8.2) ; extra == "rag" or extra == "storage" or extra == "all"
69
68
  Requires-Dist: neo4j (>=5.18.0,<6.0.0) ; extra == "rag" or extra == "storage" or extra == "all"
69
+ Requires-Dist: networkx (>=3.4.2,<4.0.0) ; extra == "data-tools" or extra == "all"
70
70
  Requires-Dist: newspaper3k (>=0.2.8,<0.3.0) ; extra == "web-tools" or extra == "all"
71
71
  Requires-Dist: notion-client (>=2.2.1,<3.0.0) ; extra == "communication-tools" or extra == "all"
72
72
  Requires-Dist: numpy (>=1.26,<2.0)
73
73
  Requires-Dist: openai (>=1.59.7,<2.0.0)
74
74
  Requires-Dist: openapi-spec-validator (>=0.7.1,<0.8.0) ; extra == "document-tools" or extra == "all"
75
- Requires-Dist: openbb (>=4.3.5,<5.0.0) ; extra == "data-tools" or extra == "all"
76
75
  Requires-Dist: opencv-python (>=4,<5) ; extra == "huggingface" or extra == "all"
77
76
  Requires-Dist: outlines (>=0.1.7,<0.2.0) ; extra == "all"
78
77
  Requires-Dist: pandas (>=1.5.3,<2.0.0) ; extra == "data-tools" or extra == "all"
79
78
  Requires-Dist: pandasai (>=2.3.0,<3.0.0) ; extra == "rag" or extra == "document-tools" or extra == "all"
80
- Requires-Dist: pandoc (>=2.4,<3.0)
81
79
  Requires-Dist: pillow (>=10.1.0,<11.0.0) ; extra == "media-tools" or extra == "all"
82
80
  Requires-Dist: prance (>=23.6.21.0,<24.0.0.0) ; extra == "document-tools" or extra == "all"
83
81
  Requires-Dist: praw (>=7.7.1,<8.0.0) ; extra == "communication-tools" or extra == "all"
@@ -100,7 +98,6 @@ Requires-Dist: rouge (>=1.0.1,<2.0.0) ; extra == "data-tools" or extra == "all"
100
98
  Requires-Dist: scholarly[tor] (==1.7.11) ; extra == "research-tools" or extra == "all"
101
99
  Requires-Dist: sentence-transformers (>=3.0.1,<4.0.0) ; extra == "rag" or extra == "all"
102
100
  Requires-Dist: sentencepiece (>=0.2,<0.3) ; extra == "huggingface" or extra == "all"
103
- Requires-Dist: sglang (>=0.4.0,<0.5.0) ; extra == "model-platforms" or extra == "all"
104
101
  Requires-Dist: slack-bolt (>=1.20.1,<2.0.0) ; extra == "communication-tools" or extra == "all"
105
102
  Requires-Dist: slack-sdk (>=3.27.2,<4.0.0) ; extra == "communication-tools" or extra == "all"
106
103
  Requires-Dist: soundfile (>=0.13,<0.14) ; extra == "huggingface" or extra == "all"
@@ -114,7 +111,7 @@ Requires-Dist: torch (>=2,<3) ; (platform_system != "Darwin" or platform_machine
114
111
  Requires-Dist: transformers (>=4,<5) ; extra == "huggingface" or extra == "all"
115
112
  Requires-Dist: tree-sitter (>=0.23.2,<0.24.0) ; extra == "dev-tools" or extra == "all"
116
113
  Requires-Dist: tree-sitter-python (>=0.23.6,<0.24.0) ; extra == "dev-tools" or extra == "all"
117
- Requires-Dist: unstructured[all-docs] (==0.16.20) ; extra == "rag" or extra == "document-tools" or extra == "all"
114
+ Requires-Dist: unstructured (==0.16.20) ; extra == "rag" or extra == "document-tools" or extra == "all"
118
115
  Requires-Dist: wikipedia (>=1,<2) ; extra == "web-tools" or extra == "all"
119
116
  Requires-Dist: wolframalpha (>=5.0.0,<6.0.0) ; extra == "web-tools" or extra == "all"
120
117
  Requires-Dist: yt-dlp (>=2024.11.4,<2025.0.0) ; extra == "media-tools" or extra == "all"
@@ -123,232 +120,201 @@ Project-URL: Homepage, https://www.camel-ai.org/
123
120
  Project-URL: Repository, https://github.com/camel-ai/camel
124
121
  Description-Content-Type: text/markdown
125
122
 
126
- [![Colab][colab-image]][colab-url]
127
- [![Hugging Face][huggingface-image]][huggingface-url]
128
- [![Slack][slack-image]][slack-url]
129
- [![Discord][discord-image]][discord-url]
130
- [![Wechat][wechat-image]][wechat-url]
131
- [![Twitter][twitter-image]][twitter-url]
123
+ <div align="center">
124
+ <a href="https://www.camel-ai.org/">
125
+ <img src="docs/images/banner.png" alt="Banner">
126
+ </a>
127
+ </div>
132
128
 
133
- ______________________________________________________________________
129
+ </br>
134
130
 
135
- # CAMEL: Finding the Scaling Laws of Agents
131
+ <div align="center">
136
132
 
137
- [![Python Version][python-image]][python-url]
138
- [![PyTest Status][pytest-image]][pytest-url]
139
133
  [![Documentation][docs-image]][docs-url]
134
+ [![Discord][discord-image]][discord-url]
135
+ [![X][x-image]][x-url]
136
+ [![Reddit][reddit-image]][reddit-url]
137
+ [![Wechat][wechat-image]][wechat-url]
138
+ [![Hugging Face][huggingface-image]][huggingface-url]
140
139
  [![Star][star-image]][star-url]
141
140
  [![Package License][package-license-image]][package-license-url]
142
141
 
143
- <p align="center">
144
- <a href="https://github.com/camel-ai/camel#community">Community</a> |
145
- <a href="https://github.com/camel-ai/camel#installation">Installation</a> |
146
- <a href="https://camel-ai.github.io/camel/">Documentation</a> |
147
- <a href="https://github.com/camel-ai/camel/tree/HEAD/examples">Examples</a> |
148
- <a href="https://arxiv.org/abs/2303.17760">Paper</a> |
149
- <a href="https://github.com/camel-ai/camel#citation">Citation</a> |
150
- <a href="https://github.com/camel-ai/camel#contributing-to-camel-">Contributing</a> |
151
- <a href="https://www.camel-ai.org/">CAMEL-AI</a>
152
- </p>
142
+ </div>
153
143
 
154
- <p align="center">
155
- <img src='https://raw.githubusercontent.com/camel-ai/camel/master/misc/logo_light.png' width=800>
156
- </p>
157
144
 
145
+ <hr>
158
146
 
159
- ## Community
160
- 🐫 CAMEL is an open-source community dedicated to finding the scaling laws of agents. We believe that studying these agents on a large scale offers valuable insights into their behaviors, capabilities, and potential risks. To facilitate research in this field, we implement and support various types of agents, tasks, prompts, models, and simulated environments.
147
+ <div align="center">
148
+ <h4 align="center">
161
149
 
162
- Join us ([*Discord*](https://discord.camel-ai.org/), [*WeChat*](https://ghli.org/camel/wechat.png) or [*Slack*](https://join.slack.com/t/camel-ai/shared_invite/zt-2g7xc41gy-_7rcrNNAArIP6sLQqldkqQ)) in pushing the boundaries of finding the scaling laws of agents.
150
+ [Community](https://github.com/camel-ai/camel#community) |
151
+ [Installation](https://github.com/camel-ai/camel#installation) |
152
+ [Examples](https://github.com/camel-ai/camel/tree/HEAD/examples) |
153
+ [Paper](https://arxiv.org/abs/2303.17760) |
154
+ [Citation](https://github.com/camel-ai/camel#citation) |
155
+ [Contributing](https://github.com/camel-ai/camel#contributing-to-camel-) |
156
+ [CAMEL-AI](https://www.camel-ai.org/)
163
157
 
164
- ## What Can You Build With CAMEL?
158
+ </h4>
165
159
 
166
- ### 🤖 Customize Agents
167
- - Customizable agents are the fundamental entities of the CAMEL architecture. CAMEL empowers you to customize agents using our modular components for specific tasks.
160
+ <p style="line-height: 1.5; text-align: center;"> 🐫 CAMEL is an open-source community dedicated to finding the scaling laws of agents. We believe that studying these agents on a large scale offers valuable insights into their behaviors, capabilities, and potential risks. To facilitate research in this field, we implement and support various types of agents, tasks, prompts, models, and simulated environments.</p>
168
161
 
169
- ### ⚙️ Build Multi-Agent Systems
170
- - We propose a multi-agent framework to address agents' autonomous cooperation challenges, guiding agents toward task completion while maintaining human intentions.
171
162
 
172
- ### 💻 Practical Applications
173
- - The CAMEL framework serves as a generic infrastructure for a wide range of multi-agent applications, including task automation, data generation, and world simulations.
163
+ <br>
174
164
 
175
165
 
176
- ## Why Should You Use CAMEL?
166
+ Join us ([*Discord*](https://discord.camel-ai.org/) or [*WeChat*](https://ghli.org/camel/wechat.png)) in pushing the boundaries of finding the scaling laws of agents.
177
167
 
178
- 1. Comprehensive Customization and Collaboration:
168
+ 🌟 Star CAMEL on GitHub and be instantly notified of new releases.
179
169
 
180
- - Integrates over 20 advanced model platforms (e.g., commercial models like OpenAI, open-source models such as Llama3, and self-deployment frameworks like Ollama).
170
+ </div>
181
171
 
182
- - Supports extensive external tools (e.g., Search, Twitter, Github, Google Maps, Reddit, Slack utilities).
183
- - Includes memory and prompt components for deep customization.
184
- - Facilitates complex multi-agent systems with advanced collaboration features.
172
+ <div align="center">
173
+ <img src="docs/images/star.gif" alt="Star" width="186" height="60">
174
+ </a>
175
+ </div>
185
176
 
177
+ <br>
186
178
 
187
- 2. User-Friendly with Transparent Internal Structure:
188
- - Designed for transparency and consistency in internal structure.
189
179
 
190
- - Offers comprehensive [tutorials and detailed docstrings](https://docs.camel-ai.org/) for all functions.
191
- - Ensures an approachable learning curve for newcomers.
180
+ ## CAMEL Framework Design Principles
192
181
 
182
+ <h3>🧬 Evolvability</h3 >
193
183
 
194
- ## Try It Yourself
195
- We provide a [![Google Colab](https://colab.research.google.com/assets/colab-badge.svg)](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.
184
+ The framework enables multi-agent systems to continuously evolve by generating data and interacting with environments. This evolution can be driven by reinforcement learning with verifiable rewards or supervised learning.
196
185
 
197
- <p align="center">
198
- <img src='https://raw.githubusercontent.com/camel-ai/camel/master/misc/framework.png' width=800>
199
- </p>
186
+ <h3>📈 Scalability</h3>
200
187
 
201
- ## Installation
188
+ The framework is designed to support systems with millions of agents, ensuring efficient coordination, communication, and resource management at scale.
202
189
 
203
- ### From PyPI
190
+ <h3>💾 Statefulness</h3>
204
191
 
205
- To install the base CAMEL library:
206
- ```bash
207
- pip install camel-ai
208
- ```
192
+ Agents maintain stateful memory, enabling them to perform multi-step interactions with environments and efficiently tackle sophisticated tasks.
209
193
 
210
- > **Note**: Some features may not work without their required dependencies. Install `camel-ai[all]` to ensure all dependencies are available, or install specific extras based on the features you need.
194
+ <h3>📖 Code-as-Prompt</h3>
211
195
 
212
- ```bash
213
- pip install 'camel-ai[all]' # Replace with options below
214
- ```
196
+ Every line of code and comment serves as a prompt for agents. Code should be written clearly and readably, ensuring both humans and agents can interpret it effectively.
215
197
 
216
- Available extras:
217
- - `all`: Includes all features below
218
- - `model_platforms`: OpenAI, Google, Mistral, Anthropic Claude, Cohere etc.
219
- - `huggingface`: Transformers, Diffusers, Accelerate, Datasets, PyTorch etc.
220
- - `rag`: Sentence Transformers, Qdrant, Milvus, BM25 etc.
221
- - `storage`: Neo4j, Redis, Azure Blob, Google Cloud Storage, AWS S3 etc.
222
- - `web_tools`: DuckDuckGo, Wikipedia, WolframAlpha, Google Maps, Weather API etc.
223
- - `document_tools`: PDF, Word, OpenAPI, BeautifulSoup, Unstructured etc.
224
- - `media_tools`: Image Processing, Audio Processing, YouTube Download, FFmpeg etc.
225
- - `communication_tools`: Slack, Discord, Telegram, GitHub, Reddit, Notion etc.
226
- - `data_tools`: Pandas, TextBlob, DataCommons, OpenBB, Stripe etc.
227
- - `research_tools`: arXiv, Google Scholar etc.
228
- - `dev_tools`: Docker, Jupyter, Tree-sitter, Code Interpreter etc.
229
-
230
- Multiple extras can be combined using commas:
231
- ```bash
232
- pip install 'camel-ai[rag,web_tools,document_tools]' # Example: RAG system with web search and document processing
233
- ```
198
+ <br>
234
199
 
235
- ### From Docker
200
+ ## Why Use CAMEL for Your Research?
236
201
 
237
- Detailed guidance can be found [here](https://github.com/camel-ai/camel/blob/master/.container/README.md)
202
+ We are a community-driven research collective comprising over 100 researchers dedicated to advancing frontier research in Multi-Agent Systems. Researchers worldwide choose CAMEL for their studies based on the following reasons.
238
203
 
239
- ## Quick Start
240
-
241
- By default, the agent uses the `ModelType.DEFAULT` model from the `ModelPlatformType.DEFAULT`. You can configure the default model platform and model type using environment variables. If these are not set, the agent will fall back to the default settings:
204
+ <table style="width: 100%;">
205
+ <tr>
206
+ <td align="left"></td>
207
+ <td align="left"></td>
208
+ <td align="left"></td>
209
+ </tr>
210
+ <tr>
211
+ <td align="left">✅</td>
212
+ <td align="left" style="font-weight: bold;">Large-Scale Agent System</td>
213
+ <td align="left">Simulate up to 1M agents to study emergent behaviors and scaling laws in complex, multi-agent environments.</td>
214
+ </tr>
215
+ <tr>
216
+ <td align="left">✅</td>
217
+ <td align="left" style="font-weight: bold;">Dynamic Communication</td>
218
+ <td align="left">Enable real-time interactions among agents, fostering seamless collaboration for tackling intricate tasks.</td>
219
+ </tr>
220
+ <tr>
221
+ <td align="left">✅</td>
222
+ <td align="left" style="font-weight: bold;">Stateful Memory</td>
223
+ <td align="left">Equip agents with the ability to retain and leverage historical context, improving decision-making over extended interactions.</td>
224
+ </tr>
225
+ <tr>
226
+ <td align="left">✅</td>
227
+ <td align="left" style="font-weight: bold;">Support for Multiple Benchmarks</td>
228
+ <td align="left">Utilize standardized benchmarks to rigorously evaluate agent performance, ensuring reproducibility and reliable comparisons.</td>
229
+ </tr>
230
+ <tr>
231
+ <td align="left">✅</td>
232
+ <td align="left" style="font-weight: bold;">Support for Different Agent Types</td>
233
+ <td align="left">Work with a variety of agent roles, tasks, models, and environments, supporting interdisciplinary experiments and diverse research applications.</td>
234
+ </tr>
235
+ <tr>
236
+ <td align="left">✅</td>
237
+ <td align="left" style="font-weight: bold;">Data Generation and Tool Integration</td>
238
+ <td align="left">Automate the creation of large-scale, structured datasets while seamlessly integrating with multiple tools, streamlining synthetic data generation and research workflows.</td>
239
+ </tr>
240
+ </table>
242
241
 
243
- ```bash
244
- ModelPlatformType.DEFAULT = "openai"
245
- ModelType.DEFAULT = "gpt-4o-mini"
246
- ```
242
+ <br>
247
243
 
248
- ### Setting Default Model Platform and Model Type (Optional)
249
-
250
- You can customize the default model platform and model type by setting the following environment variables:
251
- ```bash
252
- export DEFAULT_MODEL_PLATFORM_TYPE=<your preferred platform> # e.g., openai, anthropic, etc.
253
- export DEFAULT_MODEL_TYPE=<your preferred model> # e.g., gpt-3.5-turbo, gpt-4o-mini, etc.
254
- ```
244
+ ## What Can You Build With CAMEL?
255
245
 
256
- ### Setting Your Model API Key (Using OpenAI as an Example)
257
246
 
258
- **For Bash shell (Linux, macOS, Git Bash on Windows):**
247
+ ### 1. Data Generation
259
248
 
260
- ```bash
261
- # Export your OpenAI API key
262
- export OPENAI_API_KEY=<insert your OpenAI API key>
263
- OPENAI_API_BASE_URL=<insert your OpenAI API BASE URL> #(Should you utilize an OpenAI proxy service, kindly specify this)
264
- ```
249
+ <div align="center">
250
+ <a href="https://github.com/camel-ai/camel/blob/master/camel/datagen/cot_datagen.py">
251
+ <img src="docs/images/cot.png" alt="CoT Data Generation">
252
+ </a>
253
+ </div>
265
254
 
266
- **For Windows Command Prompt:**
255
+ <div align="center">
256
+ <a href="https://github.com/camel-ai/camel/tree/master/camel/datagen/self_instruct">
257
+ <img src="docs/images/self_instruct.png" alt="Self-Instruct Data Generation">
258
+ </a>
259
+ </div>
267
260
 
268
- ```cmd
269
- REM export your OpenAI API key
270
- set OPENAI_API_KEY=<insert your OpenAI API key>
271
- set OPENAI_API_BASE_URL=<insert your OpenAI API BASE URL> #(Should you utilize an OpenAI proxy service, kindly specify this)
272
- ```
261
+ <div align="center">
262
+ <a href="https://github.com/camel-ai/camel/tree/master/camel/datagen/source2synth">
263
+ <img src="docs/images/source2synth.png" alt="Source2Synth Data Generation">
264
+ </a>
265
+ </div>
273
266
 
274
- **For Windows PowerShell:**
267
+ <div align="center">
268
+ <a href="https://github.com/camel-ai/camel/blob/master/camel/datagen/self_improving_cot.py">
269
+ <img src="docs/images/self_improving.png" alt="Self-Improving Data Generation">
270
+ </a>
271
+ </div>
275
272
 
276
- ```powershell
277
- # Export your OpenAI API key
278
- $env:OPENAI_API_KEY="<insert your OpenAI API key>"
279
- $env:OPENAI_API_BASE_URL="<insert your OpenAI API BASE URL>" #(Should you utilize an OpenAI proxy service, kindly specify this)
280
- ```
273
+ ### 2. Task Automation
281
274
 
282
- Replace `<insert your OpenAI API key>` with your actual OpenAI API key in each case. Make sure there are no spaces around the `=` sign.
275
+ <div align="center">
276
+ <a href="https://github.com/camel-ai/camel/blob/master/camel/societies/role_playing.py">
277
+ <img src="docs/images/role_playing.png" alt="Role Playing">
278
+ </a>
279
+ </div>
283
280
 
281
+ <div align="center">
282
+ <a href="https://github.com/camel-ai/camel/tree/master/camel/societies/workforce">
283
+ <img src="docs/images/workforce.png" alt="Workforce">
284
+ </a>
285
+ </div>
284
286
 
285
- Please note that the environment variable is session-specific. If you open a new terminal window or tab, you will need to set the API key again in that new session.
287
+ <div align="center">
288
+ <a href="https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_rag.html">
289
+ <img src="docs/images/rag_pipeline.png" alt="RAG Pipeline">
290
+ </a>
291
+ </div>
286
292
 
287
- **For `.env` File:**
288
293
 
289
- To simplify the process of managing API Keys, you can use store information in a `.env` file and load them into your application dynamically.
294
+ ### 3. World Simulation
290
295
 
291
- 1. Modify .env file in the root directory of CAMEL and fill the following lines:
296
+ <div align="center">
297
+ <a href="https://github.com/camel-ai/oasis">
298
+ <img src="docs/images/oasis_case.png" alt="Oasis Case">
299
+ </a>
300
+ </div>
292
301
 
293
- ```bash
294
- OPENAI_API_KEY=<fill your API KEY here>
295
- ```
302
+ <br>
296
303
 
297
- Replace <fill your API KEY here> with your actual API key.
298
-
299
- 2. Load the .env file in your Python script: Use the load_dotenv() function from the dotenv module to load the variables from the .env file into the environment. Here's an example:
300
-
301
- ```python
302
- from dotenv import load_dotenv
303
- import os
304
-
305
- # Load environment variables from the .env file
306
- load_dotenv()
307
- ```
308
- For more details about the key names in project and how to apply key,
309
- you can refer to [here](https://github.com/camel-ai/camel/.env).
310
-
311
- > [!TIP]
312
- > By default, the load_dotenv() function does not overwrite existing environment variables that are already set in your system. It only populates variables that are missing.
313
- If you need to overwrite existing environment variables with the values from your `.env` file, use the `override=True` parameter:
314
- > ```python
315
- > load_dotenv(override=True)
316
- > ```
304
+ ## Quick Start
317
305
 
318
- After setting the OpenAI API key, you can run the `role_playing.py` script. Find tasks for various assistant-user roles [here](https://drive.google.com/file/d/194PPaSTBR07m-PzjS-Ty6KlPLdFIPQDd/view?usp=share_link).
306
+ Installing CAMEL is a breeze thanks to its availability on PyPI. Simply open your terminal and run:
319
307
 
320
308
  ```bash
321
- # You can change the role pair and initial prompt in role_playing.py
322
- python examples/ai_society/role_playing.py
309
+ pip install camel-ai
323
310
  ```
324
311
 
325
- Also feel free to run any scripts below that interest you:
326
-
327
- ```bash
328
- # You can change the role pair and initial prompt in these python files
329
-
330
- # Examples of two agents role-playing
331
- python examples/ai_society/role_playing.py
332
-
333
- # The agent answers questions by utilizing code execution tools.
334
- python examples/toolkits/code_execution_toolkit.py
335
-
336
- # Generating a knowledge graph with an agent
337
- python examples/knowledge_graph/knowledge_graph_agent_example.py
338
-
339
- # Multiple agents collaborating to decompose and solve tasks
340
- python examples/workforce/multiple_single_agents.py
341
-
342
- # Use agent to generate creative image
343
- python examples/vision/image_crafting.py
344
- ```
345
- For additional feature examples, see the [`examples`](https://github.com/camel-ai/camel/tree/master/examples) directory.
312
+ For more detailed instructions and additional configuration options, check out the [installation section](https://github.com/camel-ai/camel/blob/master/INSTALLATION.md).
346
313
 
347
- ## Documentation
314
+ After running, you can explore our CAMEL Tech Stack and Cookbooks at [www.docs.camel-ai.org](https://www.docs.camel-ai.org) to build powerful multi-agent systems.
348
315
 
349
- The [complete documentation](https://camel-ai.github.io/camel/) pages for the CAMEL package. Also, detailed tutorials for each part are provided below:
316
+ We provide a [![Google Colab](https://colab.research.google.com/assets/colab-badge.svg)](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.
350
317
 
351
- ### Agents
352
318
  Explore different types of agents, their roles, and their applications.
353
319
 
354
320
  - **[Creating Your First Agent](https://docs.camel-ai.org/cookbooks/basic_concepts/create_your_first_agent.html)**
@@ -356,37 +322,120 @@ Explore different types of agents, their roles, and their applications.
356
322
  - **[Embodied Agents](https://docs.camel-ai.org/cookbooks/advanced_features/embodied_agents.html)**
357
323
  - **[Critic Agents](https://docs.camel-ai.org/cookbooks/advanced_features/critic_agents_and_tree_search.html)**
358
324
 
359
- ---
325
+ ### Seeking Help
326
+
327
+ Please reachout to us on [CAMEL discord](https://discord.camel-ai.org/) if you encounter any issue set up CAMEL.
328
+
329
+ <br>
330
+
331
+ ## Tech Stack
332
+
333
+ <div align="center">
334
+ <a href="https://docs.camel-ai.org">
335
+ <img src="docs/images/techstack.png" alt="TechStack">
336
+ </a>
337
+ </div>
360
338
 
361
339
  ### Key Modules
362
340
  Core components and utilities to build, operate, and enhance CAMEL-AI agents and societies.
363
341
 
364
342
  | Module | Description |
365
343
  |:---|:---|
344
+ | **[Agents](https://docs.camel-ai.org/key_modules/agents.html)** | Core agent architectures and behaviors for autonomous operation. |
345
+ | **[Agent Societies](https://docs.camel-ai.org/key_modules/society.html)** | Components for building and managing multi-agent systems and collaboration. |
346
+ | **[Data Generation](https://docs.camel-ai.org/key_modules/datagen.html)** | Tools and methods for synthetic data creation and augmentation. |
366
347
  | **[Models](https://docs.camel-ai.org/key_modules/models.html)** | Model architectures and customization options for agent intelligence. |
367
- | **[Messages](https://docs.camel-ai.org/key_modules/messages.html)** | Messaging protocols for agent communication. |
368
- | **[Memory](https://docs.camel-ai.org/key_modules/memory.html)** | Memory storage and retrieval mechanisms. |
369
348
  | **[Tools](https://docs.camel-ai.org/key_modules/tools.html)** | Tools integration for specialized agent tasks. |
370
- | **[Prompts](https://docs.camel-ai.org/key_modules/prompts.html)** | Prompt engineering and customization. |
371
- | **[Tasks](https://docs.camel-ai.org/key_modules/tasks.html)** | Task creation and management for agent workflows. |
372
- | **[Loaders](https://docs.camel-ai.org/key_modules/loaders.html)** | Data loading tools for agent operation. |
373
- | **[Storages](https://docs.camel-ai.org/key_modules/storages.html)** | Storage solutions for agent. |
374
- | **[Society](https://docs.camel-ai.org/key_modules/society.html)** | Components for building agent societies and inter-agent collaboration. |
375
- | **[Embeddings](https://docs.camel-ai.org/key_modules/embeddings.html)** | Embedding models for RAG. |
376
- | **[Retrievers](https://docs.camel-ai.org/key_modules/retrievers.html)** | Retrieval methods for knowledge access. |
349
+ | **[Memory](https://docs.camel-ai.org/key_modules/memory.html)** | Memory storage and retrieval mechanisms for agent state management. |
350
+ | **[Storage](https://docs.camel-ai.org/key_modules/storages.html)** | Persistent storage solutions for agent data and states. |
351
+ | **[Benchmarks](https://github.com/camel-ai/camel/tree/master/camel/benchmarks)** | Performance evaluation and testing frameworks. |
352
+ | **[Interpreters](https://docs.camel-ai.org/key_modules/interpreters.html)** | Code and command interpretation capabilities. |
353
+ | **[Data Loaders](https://docs.camel-ai.org/key_modules/loaders.html)** | Data ingestion and preprocessing tools. |
354
+ | **[Retrievers](https://docs.camel-ai.org/key_modules/retrievers.html)** | Knowledge retrieval and RAG components. |
355
+ | **[Runtime](https://github.com/camel-ai/camel/tree/master/camel/runtime)** | Execution environment and process management. |
356
+ | **[Human-in-the-Loop](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_human_in_loop_and_tool_approval.html)** | Interactive components for human oversight and intervention. |
377
357
  ---
378
358
 
379
- ### Cookbooks
359
+ ## Research
360
+
361
+ We believe that studying these agents on a large scale offers valuable insights into their behaviors, capabilities, and potential risks.
362
+
363
+ **Explore our research projects:**
364
+
365
+ <div align="center">
366
+ <a href="https://crab.camel-ai.org/">
367
+ <img src="docs/images/crab.png" alt="CRAB">
368
+ </a>
369
+ </div>
370
+
371
+ <div align="center">
372
+ <a href="https://www.agent-trust.camel-ai.org/">
373
+ <img src="docs/images/agent_trust.png" alt="Agent Trust">
374
+ </a>
375
+ </div>
376
+
377
+ <div align="center">
378
+ <a href="https://oasis.camel-ai.org/">
379
+ <img src="docs/images/oasis.png" alt="OASIS">
380
+ </a>
381
+ </div>
382
+
383
+ <div align="center">
384
+ <a href="https://emos-project.github.io/">
385
+ <img src="docs/images/emos.png" alt="Emos">
386
+ </a>
387
+ </div>
388
+
389
+ >### Research with US
390
+ >
391
+ >We warmly invite you to use CAMEL for your impactful research.
392
+ >
393
+ > Rigorous research takes time and resources. We are a community-driven research collective with 100+ researchers exploring the frontier research of Multi-agent Systems. Join our ongoing projects or test new ideas with us, [reach out via email](mailto:camel-ai@eigent.ai) for more information.
394
+ >
395
+ ><div align="center">
396
+ > <img src="docs/images/partners.png" alt="Partners">
397
+ ></div>
398
+
399
+ <br>
400
+
401
+ ## Syenthetic Datasets
402
+
403
+ ### 1. Utilize Various LLMs as Backends
404
+
405
+ For more details, please see our [`Models Documentation`](https://docs.camel-ai.org/key_modules/models.html#).
406
+
407
+ > **Data (Hosted on Hugging Face)**
408
+
409
+ | Dataset | Chat format | Instruction format | Chat format (translated) |
410
+ |----------------|-----------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|
411
+ | **AI Society** | [Chat format](https://huggingface.co/datasets/camel-ai/ai_society/blob/main/ai_society_chat.tar.gz) | [Instruction format](https://huggingface.co/datasets/camel-ai/ai_society/blob/main/ai_society_instructions.json) | [Chat format (translated)](https://huggingface.co/datasets/camel-ai/ai_society_translated) |
412
+ | **Code** | [Chat format](https://huggingface.co/datasets/camel-ai/code/blob/main/code_chat.tar.gz) | [Instruction format](https://huggingface.co/datasets/camel-ai/code/blob/main/code_instructions.json) | x |
413
+ | **Math** | [Chat format](https://huggingface.co/datasets/camel-ai/math) | x | x |
414
+ | **Physics** | [Chat format](https://huggingface.co/datasets/camel-ai/physics) | x | x |
415
+ | **Chemistry** | [Chat format](https://huggingface.co/datasets/camel-ai/chemistry) | x | x |
416
+ | **Biology** | [Chat format](https://huggingface.co/datasets/camel-ai/biology) | x | x |
417
+
418
+ ### 2. Visualizations of Instructions and Tasks
419
+
420
+ | Dataset | Instructions | Tasks |
421
+ |------------------|----------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
422
+ | **AI Society** | [Instructions](https://atlas.nomic.ai/map/3a559a06-87d0-4476-a879-962656242452/db961915-b254-48e8-8e5c-917f827b74c6) | [Tasks](https://atlas.nomic.ai/map/cb96f41b-a6fd-4fe4-ac40-08e101714483/ae06156c-a572-46e9-8345-ebe18586d02b) |
423
+ | **Code** | [Instructions](https://atlas.nomic.ai/map/902d6ccb-0bbb-4294-83a8-1c7d2dae03c8/ace2e146-e49f-41db-a1f4-25a2c4be2457) | [Tasks](https://atlas.nomic.ai/map/efc38617-9180-490a-8630-43a05b35d22d/2576addf-a133-45d5-89a9-6b067b6652dd) |
424
+ | **Misalignment** | [Instructions](https://atlas.nomic.ai/map/5c491035-a26e-4a05-9593-82ffb2c3ab40/2bd98896-894e-4807-9ed8-a203ccb14d5e) | [Tasks](https://atlas.nomic.ai/map/abc357dd-9c04-4913-9541-63e259d7ac1f/825139a4-af66-427c-9d0e-f36b5492ab3f) |
425
+
426
+ <br>
427
+
428
+ ## Cookbooks (Usecases)
380
429
  Practical guides and tutorials for implementing specific functionalities in CAMEL-AI agents and societies.
381
430
 
382
- ### Basic Concepts
431
+ ### 1. Basic Concepts
383
432
  | Cookbook | Description |
384
433
  |:---|:---|
385
434
  | **[Creating Your First Agent](https://docs.camel-ai.org/cookbooks/basic_concepts/create_your_first_agent.html)** | A step-by-step guide to building your first agent. |
386
435
  | **[Creating Your First Agent Society](https://docs.camel-ai.org/cookbooks/basic_concepts/create_your_first_agents_society.html)** | Learn to build a collaborative society of agents. |
387
436
  | **[Message Cookbook](https://docs.camel-ai.org/cookbooks/basic_concepts/agents_message.html)** | Best practices for message handling in agents. |
388
437
 
389
- ### Advanced Features
438
+ ### 2. Advanced Features
390
439
  | Cookbook | Description |
391
440
  |:---|:---|
392
441
  | **[Tools Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_tools.html)** | Integrating tools for enhanced functionality. |
@@ -394,88 +443,54 @@ Practical guides and tutorials for implementing specific functionalities in CAME
394
443
  | **[RAG Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_rag.html)** | Recipes for Retrieval-Augmented Generation. |
395
444
  | **[Graph RAG Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_graph_rag.html)** | Leveraging knowledge graphs with RAG. |
396
445
  | **[Track CAMEL Agents with AgentOps](https://docs.camel-ai.org/cookbooks/advanced_features/agents_tracking.html)** | Tools for tracking and managing agents in operations. |
397
- | **[Agents with Human-in-loop and Tool Approval from HumanLayer](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_human_in_loop_and_tool_approval.html)** | Implementing human oversight and tool approval within agent workflows using HumanLayer. |
398
446
 
399
- ### Data Generation & Model Training
447
+ ### 3. Model Training & Data Generation
400
448
  | Cookbook | Description |
401
449
  |:---|:---|
402
- | **[Data Generation with CAMEL and Finetuning with Unsloth](https://docs.camel-ai.org/cookbooks/data_generation/sft_data_generation_and_unsloth_finetuning_Qwen2_5_7B.html)** | Learn how to generate data with CAMEL and fine-tune models effectively with Unsloth. |
403
- | **[Data Gen with Real Function Calls and Hermes Format](https://docs.camel-ai.org/cookbooks/data_generation/data_gen_with_real_function_calls_and_hermes_format.html)** | Explore how to generate data with real function calls and the Hermes format. |
404
- | **[Self-instruct Data Generation](https://docs.camel-ai.org/cookbooks/data_generation/self_instruct_data_generation.html)** | Explore comprehensive guidelines and best practices for generating self-instructional data, enabling robust model training and improved performance. |
405
- | **[CoT Data Generation and SFT Qwen with Unsolth](https://docs.camel-ai.org/cookbooks/data_generation/cot_data_gen_sft_qwen_unsolth_upload_huggingface.html)** | Discover how to generate CoT data using CAMEL and SFT Qwen with Unsolth, and seamlessly upload your data and model to Huggingface. |
406
- | **[Agentic Data Generation, Evaluation & Filtering with Reward Models](https://docs.camel-ai.org/cookbooks/data_generation/synthetic_dataevaluation&filter_with_reward_model.html)** | Discover methods for generating, evaluating, and filtering agentic data using reward models to enhance the quality and efficiency of your synthetic data pipelines. |
407
- | **[Data Model Generation and Structured Output with Qwen Model](https://docs.camel-ai.org/cookbooks/data_generation/data_model_generation_and_structured_output_with_qwen.html)** |Learn how to generate data models and structured outputs using the Qwen Model for improved data representation.|
408
- | **[Distill Math Reasoning Data from DeepSeek R1](https://docs.camel-ai.org/cookbooks/data_generation/distill_math_reasoning_data_from_deepseek_r1.html)** |Learn how to set up and leverage CAMEL's data distillation pipline for distilling high-quality maths reasoning data with thought process (Long CoT data)from deepseek R1, and uploading the results to Hugging Face.|
409
- | **[Self-Improving Math Reasoning Data Distillation from DeepSeek R1](https://docs.camel-ai.org/cookbooks/data_generation/self_improving_math_reasoning_data_distillation_from_deepSeek_r1.html)** |Learn how to set up and leverage CAMEL's data distillation pipline for self-improving math reasoning data distillation from deepseek R1, and uploading the results to Hugging Face.|
410
-
411
- ### Multi-Agent Systems & Applications
450
+ | **[Data Generation with CAMEL and Finetuning with Unsloth](https://docs.camel-ai.org/cookbooks/model_training/sft_data_generation_and_unsloth_finetuning_Qwen2_5_7B.html)** | Learn how to generate data with CAMEL and fine-tune models effectively with Unsloth. |
451
+ | **[Data Gen with Real Function Calls and Hermes Format](https://docs.camel-ai.org/cookbooks/model_training/data_gen_with_real_function_calls_and_hermes_format.html)** | Explore how to generate data with real function calls and the Hermes format. |
452
+ | **[CoT Data Generation and Upload Data to Huggingface](https://docs.camel-ai.org/cookbooks/model_training/cot_data_gen_upload_to_huggingface.html)** | Uncover how to generate CoT data with CAMEL and seamlessly upload it to Huggingface. |
453
+ | **[CoT Data Generation and SFT Qwen with Unsolth](https://docs.camel-ai.org/cookbooks/model_training/cot_data_gen_sft_qwen_unsolth_upload_huggingface.html)** | Discover how to generate CoT data using CAMEL and SFT Qwen with Unsolth, and seamlessly upload your data and model to Huggingface. |
454
+
455
+ ### 4. Multi-Agent Systems & Applications
412
456
  | Cookbook | Description |
413
457
  |:---|:---|
414
458
  | **[Role-Playing Scraper for Report & Knowledge Graph Generation](https://docs.camel-ai.org/cookbooks/applications/roleplaying_scraper.html)** | Create role-playing agents for data scraping and reporting. |
415
459
  | **[Create A Hackathon Judge Committee with Workforce](https://docs.camel-ai.org/cookbooks/multi_agent_society/workforce_judge_committee.html)** | Building a team of agents for collaborative judging. |
416
- | **[Dynamic Travel Planner Role-Playing: Multi-Agent System with Real-Time Insights Powered by Dappier](https://docs.camel-ai.org/cookbooks/applications/dynamic_travel_planner.html)** | Explore an innovative approach to travel planning, blending AI-driven role-playing and real-time data for seamless experiences. |
417
460
  | **[Customer Service Discord Bot with Agentic RAG](https://docs.camel-ai.org/cookbooks/applications/customer_service_Discord_bot_using_SambaNova_with_agentic_RAG.html)** | Learn how to build a robust customer service bot for Discord using Agentic RAG. |
418
461
  | **[Customer Service Discord Bot with Local Model](https://docs.camel-ai.org/cookbooks/applications/customer_service_Discord_bot_using_local_model_with_agentic_RAG.html)** | Learn how to build a robust customer service bot for Discord using Agentic RAG which supports local deployment. |
419
- | **[Customer Service Discord Bot for Finance with OpenBB](https://docs.camel-ai.org/cookbooks/applications/finance_discord_bot.html)**| Learn how to build a sipmle yet powerful financial data assistant Discord bot using OpenBB tools. |
420
462
 
421
- ### Data Processing
463
+ ### 5. Data Processing
422
464
  | Cookbook | Description |
423
465
  |:---|:---|
424
466
  | **[Video Analysis](https://docs.camel-ai.org/cookbooks/data_processing/video_analysis.html)** | Techniques for agents in video data analysis. |
425
467
  | **[3 Ways to Ingest Data from Websites with Firecrawl](https://docs.camel-ai.org/cookbooks/data_processing/ingest_data_from_websites_with_Firecrawl.html)** | Explore three methods for extracting and processing data from websites using Firecrawl. |
426
468
  | **[Create AI Agents that work with your PDFs](https://docs.camel-ai.org/cookbooks/data_processing/agent_with_chunkr_for_pdf_parsing.html)** | Learn how to create AI agents that work with your PDFs using Chunkr and Mistral AI. |
427
469
 
428
- ## Utilize Various LLMs as Backends
429
-
430
- For more details, please see our [`Models Documentation`](https://docs.camel-ai.org/key_modules/models.html#).
431
-
432
- ## Data (Hosted on Hugging Face)
433
- | Dataset | Chat format | Instruction format | Chat format (translated) |
434
- |----------------|-----------------------------------------------------------------------------------------------------|------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------------------------------|
435
- | **AI Society** | [Chat format](https://huggingface.co/datasets/camel-ai/ai_society/blob/main/ai_society_chat.tar.gz) | [Instruction format](https://huggingface.co/datasets/camel-ai/ai_society/blob/main/ai_society_instructions.json) | [Chat format (translated)](https://huggingface.co/datasets/camel-ai/ai_society_translated) |
436
- | **Code** | [Chat format](https://huggingface.co/datasets/camel-ai/code/blob/main/code_chat.tar.gz) | [Instruction format](https://huggingface.co/datasets/camel-ai/code/blob/main/code_instructions.json) | x |
437
- | **Math** | [Chat format](https://huggingface.co/datasets/camel-ai/math) | x | x |
438
- | **Physics** | [Chat format](https://huggingface.co/datasets/camel-ai/physics) | x | x |
439
- | **Chemistry** | [Chat format](https://huggingface.co/datasets/camel-ai/chemistry) | x | x |
440
- | **Biology** | [Chat format](https://huggingface.co/datasets/camel-ai/biology) | x | x |
441
-
442
- ## Visualizations of Instructions and Tasks
443
470
 
444
- | Dataset | Instructions | Tasks |
445
- |------------------|----------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------|
446
- | **AI Society** | [Instructions](https://atlas.nomic.ai/map/3a559a06-87d0-4476-a879-962656242452/db961915-b254-48e8-8e5c-917f827b74c6) | [Tasks](https://atlas.nomic.ai/map/cb96f41b-a6fd-4fe4-ac40-08e101714483/ae06156c-a572-46e9-8345-ebe18586d02b) |
447
- | **Code** | [Instructions](https://atlas.nomic.ai/map/902d6ccb-0bbb-4294-83a8-1c7d2dae03c8/ace2e146-e49f-41db-a1f4-25a2c4be2457) | [Tasks](https://atlas.nomic.ai/map/efc38617-9180-490a-8630-43a05b35d22d/2576addf-a133-45d5-89a9-6b067b6652dd) |
448
- | **Misalignment** | [Instructions](https://atlas.nomic.ai/map/5c491035-a26e-4a05-9593-82ffb2c3ab40/2bd98896-894e-4807-9ed8-a203ccb14d5e) | [Tasks](https://atlas.nomic.ai/map/abc357dd-9c04-4913-9541-63e259d7ac1f/825139a4-af66-427c-9d0e-f36b5492ab3f) |
471
+ <br>
449
472
 
450
- ## Implemented Research Ideas from Other Works
451
- We implemented amazing research ideas from other works for you to build, compare and customize your agents. If you use any of these modules, please kindly cite the original works:
452
- - `TaskCreationAgent`, `TaskPrioritizationAgent` and `BabyAGI` from *Nakajima et al.*: [Task-Driven Autonomous Agent](https://yoheinakajima.com/task-driven-autonomous-agent-utilizing-gpt-4-pinecone-and-langchain-for-diverse-applications/). [[Example](https://github.com/camel-ai/camel/blob/master/examples/ai_society/babyagi_playing.py)]
453
473
 
454
- - `PersonaHub` from *Tao Ge et al.*: [Scaling Synthetic Data Creation with 1,000,000,000 Personas](https://arxiv.org/pdf/2406.20094). [[Example](https://github.com/camel-ai/camel/blob/master/examples/personas/personas_generation.py)]
474
+ ## Contributing to CAMEL
455
475
 
456
- - `Self-Instruct` from *Yizhong Wang et al.*: [SELF-INSTRUCT: Aligning Language Models with Self-Generated Instructions](https://arxiv.org/pdf/2212.10560). [[Example](https://github.com/camel-ai/camel/blob/master/examples/datagen/self_instruct/self_instruct.py)]
476
+ > For those who'd like to contribute code, we appreciate your interest in contributing to our open-source initiative. Please take a moment to review our [contributing guidelines](https://github.com/camel-ai/camel/blob/master/CONTRIBUTING.md) to get started on a smooth collaboration journey.🚀
477
+ >
478
+ > We also welcome you to help CAMEL grow by sharing it on social media, at events, or during conferences. Your support makes a big difference!
457
479
 
458
- - `Source2Synth` from *Alisia Lupidi et al.*: [Source2Synth: Synthetic Data Generation and Curation Grounded in Real Data Sources](https://arxiv.org/abs/2409.08239). [[Example](https://github.com/camel-ai/camel/blob/master/examples/datagen/source2synth.py)]
480
+ <br>
459
481
 
460
- - `STaR` from *Eric Zelikman et al.*: [STaR: Bootstrapping Reasoning With Reasoning](https://arxiv.org/abs/2203.14465). [[Example](https://github.com/camel-ai/camel/blob/master/examples/datagen/star)]
482
+ ## Community & Contact
483
+ For more information please contact camel-ai@eigent.ai
461
484
 
462
- ## Other Research Works Based on Camel
463
- - [Agent Trust](http://agent-trust.camel-ai.org/): Can Large Language Model Agents Simulate Human Trust Behavior?
485
+ - **GitHub Issues:** Report bugs, request features, and track development. [Submit an issue](https://github.com/camel-ai/camel/issues)
464
486
 
465
- - [CRAB](https://crab.camel-ai.org/): Cross-environment Agent Benchmark for Multimodal Language Model Agents.
487
+ - **Discord:** Get real-time support, chat with the community, and stay updated. [Join us](https://discord.camel-ai.org/)
466
488
 
467
- - OASIS: Open Agents Social Interaction Simulations on a Large Scale.
489
+ - **X (Twitter):** Follow for updates, AI insights, and key announcements. [Follow us](https://x.com/CamelAIOrg)
468
490
 
469
- We warmly invite you to use CAMEL for your impactful research.
491
+ - **Ambassador Project:** Advocate for CAMEL-AI, host events, and contribute content. [Learn more](https://www.camel-ai.org/community)
470
492
 
471
- ## News
472
- 📢 Added support for Qwen models, Deepseek models to the 🐫 CAMEL framework!. (Nov 28, 2024)
473
- - Integrate SGLang into the 🐫 CAMEL framework. (Dec, 13, 2024)
474
- - Integrated Reward Model into the 🐫 CAMEL framework. (Dec, 13, 2024)
475
- - Added GAIA Benchmark! (Dec, 09, 2024)
476
- - ...
477
- - Released AI Society and Code dataset (April 2, 2023)
478
- - Initial release of `CAMEL` python library (March 21, 2023)
493
+ <br>
479
494
 
480
495
  ## Citation
481
496
  ```
@@ -486,26 +501,27 @@ We warmly invite you to use CAMEL for your impactful research.
486
501
  year={2023}
487
502
  }
488
503
  ```
504
+
489
505
  ## Acknowledgment
490
506
  Special thanks to [Nomic AI](https://home.nomic.ai/) for giving us extended access to their data set exploration tool (Atlas).
491
507
 
492
508
  We would also like to thank Haya Hammoud for designing the initial logo of our project.
493
509
 
510
+ We implemented amazing research ideas from other works for you to build, compare and customize your agents. If you use any of these modules, please kindly cite the original works:
511
+ - `TaskCreationAgent`, `TaskPrioritizationAgent` and `BabyAGI` from *Nakajima et al.*: [Task-Driven Autonomous Agent](https://yoheinakajima.com/task-driven-autonomous-agent-utilizing-gpt-4-pinecone-and-langchain-for-diverse-applications/). [[Example](https://github.com/camel-ai/camel/blob/master/examples/ai_society/babyagi_playing.py)]
512
+
513
+ - `PersonaHub` from *Tao Ge et al.*: [Scaling Synthetic Data Creation with 1,000,000,000 Personas](https://arxiv.org/pdf/2406.20094). [[Example](https://github.com/camel-ai/camel/blob/master/examples/personas/personas_generation.py)]
514
+
515
+ - `Self-Instruct` from *Yizhong Wang et al.*: [SELF-INSTRUCT: Aligning Language Models with Self-Generated Instructions](https://arxiv.org/pdf/2212.10560). [[Example](https://github.com/camel-ai/camel/blob/master/examples/datagen/self_instruct/self_instruct.py)]
516
+
517
+
494
518
  ## License
495
519
 
496
520
  The source code is licensed under Apache 2.0.
497
521
 
498
- ## Contributing to CAMEL 🐫
499
- We appreciate your interest in contributing to our open-source initiative. We provide a document of [contributing guidelines](https://github.com/camel-ai/camel/blob/master/CONTRIBUTING.md) which outlines the steps for contributing to CAMEL. Please refer to this guide to ensure smooth collaboration and successful contributions. 🤝🚀
500
-
501
- ## Contact
502
- For more information please contact camel.ai.team@gmail.com.
522
+ <br>
503
523
 
504
- [python-image]: https://img.shields.io/badge/Python-3.10%2C%203.11%2C%203.12-brightgreen.svg
505
- [python-url]: https://www.python.org/
506
- [pytest-image]: https://github.com/camel-ai/camel/actions/workflows/pytest_package.yml/badge.svg
507
- [pytest-url]: https://github.com/camel-ai/camel/actions/workflows/pytest_package.yml
508
- [docs-image]: https://img.shields.io/badge/Documentation-grey.svg?logo=github
524
+ [docs-image]: https://img.shields.io/badge/Documentation-EB3ECC
509
525
  [docs-url]: https://camel-ai.github.io/camel/index.html
510
526
  [star-image]: https://img.shields.io/github/stars/camel-ai/camel?label=stars&logo=github&color=brightgreen
511
527
  [star-url]: https://github.com/camel-ai/camel/stargazers
@@ -516,12 +532,14 @@ For more information please contact camel.ai.team@gmail.com.
516
532
  [colab-image]: https://colab.research.google.com/assets/colab-badge.svg
517
533
  [huggingface-url]: https://huggingface.co/camel-ai
518
534
  [huggingface-image]: https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-CAMEL--AI-ffc107?color=ffc107&logoColor=white
519
- [slack-url]: https://join.slack.com/t/camel-ai/shared_invite/zt-2g7xc41gy-_7rcrNNAArIP6sLQqldkqQ
520
- [slack-image]: https://img.shields.io/badge/Slack-CAMEL--AI-blueviolet?logo=slack
521
535
  [discord-url]: https://discord.camel-ai.org/
522
- [discord-image]: https://img.shields.io/badge/Discord-CAMEL--AI-7289da?logo=discord&logoColor=white&color=7289da
536
+ [discord-image]: https://img.shields.io/discord/1082486657678311454?logo=discord&labelColor=%20%235462eb&logoColor=%20%23f5f5f5&color=%20%235462eb
523
537
  [wechat-url]: https://ghli.org/camel/wechat.png
524
538
  [wechat-image]: https://img.shields.io/badge/WeChat-CamelAIOrg-brightgreen?logo=wechat&logoColor=white
525
- [twitter-url]: https://twitter.com/CamelAIOrg
539
+ [x-url]: https://x.com/CamelAIOrg
540
+ [x-image]: https://img.shields.io/twitter/follow/CamelAIOrg?style=social
526
541
  [twitter-image]: https://img.shields.io/twitter/follow/CamelAIOrg?style=social&color=brightgreen&logo=twitter
542
+ [reddit-url]: https://www.reddit.com/r/CamelAI/
543
+ [reddit-image]: https://img.shields.io/reddit/subreddit-subscribers/CamelAI?style=plastic&logo=reddit&label=r%2FCAMEL&labelColor=white
544
+ [ambassador-url]: https://www.camel-ai.org/community
527
545