camel-ai 0.2.65__py3-none-any.whl → 0.2.83a6__py3-none-any.whl

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 (509) hide show
  1. camel/__init__.py +3 -3
  2. camel/agents/__init__.py +2 -2
  3. camel/agents/_types.py +9 -4
  4. camel/agents/_utils.py +40 -2
  5. camel/agents/base.py +2 -2
  6. camel/agents/chat_agent.py +5107 -995
  7. camel/agents/critic_agent.py +2 -2
  8. camel/agents/deductive_reasoner_agent.py +56 -56
  9. camel/agents/embodied_agent.py +2 -2
  10. camel/agents/knowledge_graph_agent.py +20 -20
  11. camel/agents/mcp_agent.py +35 -36
  12. camel/agents/multi_hop_generator_agent.py +3 -3
  13. camel/agents/programmed_agent_instruction.py +2 -2
  14. camel/agents/repo_agent.py +4 -3
  15. camel/agents/role_assignment_agent.py +2 -2
  16. camel/agents/search_agent.py +2 -2
  17. camel/agents/task_agent.py +2 -2
  18. camel/agents/tool_agents/__init__.py +2 -2
  19. camel/agents/tool_agents/base.py +2 -2
  20. camel/agents/tool_agents/hugging_face_tool_agent.py +3 -3
  21. camel/benchmarks/__init__.py +2 -2
  22. camel/benchmarks/apibank.py +5 -5
  23. camel/benchmarks/apibench.py +2 -2
  24. camel/benchmarks/base.py +2 -2
  25. camel/benchmarks/browsecomp.py +44 -33
  26. camel/benchmarks/gaia.py +17 -13
  27. camel/benchmarks/mock_website/README.md +1 -3
  28. camel/benchmarks/mock_website/mock_web.py +2 -2
  29. camel/benchmarks/mock_website/requirements.txt +1 -1
  30. camel/benchmarks/mock_website/shopping_mall/app.py +2 -2
  31. camel/benchmarks/mock_website/task.json +1 -1
  32. camel/benchmarks/nexus.py +3 -3
  33. camel/benchmarks/ragbench.py +2 -2
  34. camel/bots/__init__.py +2 -2
  35. camel/bots/discord/__init__.py +2 -2
  36. camel/bots/discord/discord_app.py +2 -2
  37. camel/bots/discord/discord_installation.py +2 -2
  38. camel/bots/discord/discord_store.py +3 -3
  39. camel/bots/slack/__init__.py +2 -2
  40. camel/bots/slack/models.py +4 -4
  41. camel/bots/slack/slack_app.py +2 -2
  42. camel/bots/telegram_bot.py +2 -2
  43. camel/configs/__init__.py +29 -2
  44. camel/configs/aihubmix_config.py +90 -0
  45. camel/configs/aiml_config.py +2 -2
  46. camel/configs/amd_config.py +70 -0
  47. camel/configs/anthropic_config.py +2 -2
  48. camel/configs/base_config.py +2 -2
  49. camel/configs/bedrock_config.py +5 -3
  50. camel/configs/cerebras_config.py +98 -0
  51. camel/configs/cohere_config.py +2 -2
  52. camel/configs/cometapi_config.py +106 -0
  53. camel/configs/crynux_config.py +2 -2
  54. camel/configs/deepseek_config.py +9 -8
  55. camel/configs/function_gemma_config.py +59 -0
  56. camel/configs/gemini_config.py +6 -4
  57. camel/configs/groq_config.py +6 -4
  58. camel/configs/internlm_config.py +6 -4
  59. camel/configs/litellm_config.py +2 -2
  60. camel/configs/lmstudio_config.py +6 -4
  61. camel/configs/minimax_config.py +95 -0
  62. camel/configs/mistral_config.py +2 -2
  63. camel/configs/modelscope_config.py +5 -3
  64. camel/configs/moonshot_config.py +2 -2
  65. camel/configs/nebius_config.py +105 -0
  66. camel/configs/netmind_config.py +2 -2
  67. camel/configs/novita_config.py +2 -2
  68. camel/configs/nvidia_config.py +2 -2
  69. camel/configs/ollama_config.py +2 -2
  70. camel/configs/openai_config.py +5 -3
  71. camel/configs/openrouter_config.py +6 -4
  72. camel/configs/ppio_config.py +2 -2
  73. camel/configs/qianfan_config.py +85 -0
  74. camel/configs/qwen_config.py +2 -2
  75. camel/configs/reka_config.py +2 -2
  76. camel/configs/samba_config.py +6 -4
  77. camel/configs/sglang_config.py +2 -2
  78. camel/configs/siliconflow_config.py +2 -2
  79. camel/configs/togetherai_config.py +2 -2
  80. camel/configs/vllm_config.py +4 -2
  81. camel/configs/watsonx_config.py +2 -2
  82. camel/configs/yi_config.py +6 -4
  83. camel/configs/zhipuai_config.py +6 -4
  84. camel/data_collectors/__init__.py +2 -2
  85. camel/data_collectors/alpaca_collector.py +18 -9
  86. camel/data_collectors/base.py +2 -2
  87. camel/data_collectors/sharegpt_collector.py +2 -2
  88. camel/datagen/__init__.py +2 -2
  89. camel/datagen/cot_datagen.py +3 -3
  90. camel/datagen/evol_instruct/__init__.py +2 -2
  91. camel/datagen/evol_instruct/evol_instruct.py +2 -2
  92. camel/datagen/evol_instruct/scorer.py +12 -12
  93. camel/datagen/evol_instruct/templates.py +16 -16
  94. camel/datagen/self_improving_cot.py +5 -5
  95. camel/datagen/self_instruct/__init__.py +2 -2
  96. camel/datagen/self_instruct/filter/__init__.py +2 -2
  97. camel/datagen/self_instruct/filter/filter_function.py +2 -2
  98. camel/datagen/self_instruct/filter/filter_registry.py +2 -2
  99. camel/datagen/self_instruct/filter/instruction_filter.py +2 -2
  100. camel/datagen/self_instruct/self_instruct.py +2 -2
  101. camel/datagen/self_instruct/templates.py +47 -47
  102. camel/datagen/source2synth/__init__.py +2 -2
  103. camel/datagen/source2synth/data_processor.py +2 -2
  104. camel/datagen/source2synth/models.py +2 -2
  105. camel/datagen/source2synth/user_data_processor_config.py +2 -2
  106. camel/datahubs/__init__.py +2 -2
  107. camel/datahubs/base.py +2 -2
  108. camel/datahubs/huggingface.py +2 -2
  109. camel/datahubs/models.py +2 -2
  110. camel/datasets/__init__.py +2 -2
  111. camel/datasets/base_generator.py +41 -12
  112. camel/datasets/few_shot_generator.py +18 -18
  113. camel/datasets/models.py +2 -2
  114. camel/datasets/self_instruct_generator.py +2 -2
  115. camel/datasets/static_dataset.py +2 -2
  116. camel/embeddings/__init__.py +2 -2
  117. camel/embeddings/azure_embedding.py +2 -2
  118. camel/embeddings/base.py +2 -2
  119. camel/embeddings/gemini_embedding.py +2 -2
  120. camel/embeddings/jina_embedding.py +2 -2
  121. camel/embeddings/mistral_embedding.py +2 -2
  122. camel/embeddings/openai_compatible_embedding.py +2 -2
  123. camel/embeddings/openai_embedding.py +2 -2
  124. camel/embeddings/sentence_transformers_embeddings.py +2 -2
  125. camel/embeddings/together_embedding.py +2 -2
  126. camel/embeddings/vlm_embedding.py +2 -2
  127. camel/environments/__init__.py +14 -2
  128. camel/environments/models.py +2 -2
  129. camel/environments/multi_step.py +2 -2
  130. camel/environments/rlcards_env.py +860 -0
  131. camel/environments/single_step.py +30 -5
  132. camel/environments/tic_tac_toe.py +3 -3
  133. camel/extractors/__init__.py +2 -2
  134. camel/extractors/base.py +2 -2
  135. camel/extractors/python_strategies.py +2 -2
  136. camel/generators.py +2 -2
  137. camel/human.py +2 -2
  138. camel/interpreters/__init__.py +4 -2
  139. camel/interpreters/base.py +2 -2
  140. camel/interpreters/docker/Dockerfile +14 -24
  141. camel/interpreters/docker_interpreter.py +5 -4
  142. camel/interpreters/e2b_interpreter.py +36 -3
  143. camel/interpreters/internal_python_interpreter.py +53 -4
  144. camel/interpreters/interpreter_error.py +2 -2
  145. camel/interpreters/ipython_interpreter.py +2 -2
  146. camel/interpreters/microsandbox_interpreter.py +395 -0
  147. camel/interpreters/subprocess_interpreter.py +2 -2
  148. camel/loaders/__init__.py +13 -4
  149. camel/loaders/apify_reader.py +2 -2
  150. camel/loaders/base_io.py +2 -2
  151. camel/loaders/base_loader.py +85 -0
  152. camel/loaders/chunkr_reader.py +11 -2
  153. camel/loaders/crawl4ai_reader.py +2 -2
  154. camel/loaders/firecrawl_reader.py +6 -6
  155. camel/loaders/jina_url_reader.py +2 -2
  156. camel/loaders/markitdown.py +2 -2
  157. camel/loaders/mineru_extractor.py +2 -2
  158. camel/loaders/mistral_reader.py +2 -2
  159. camel/loaders/scrapegraph_reader.py +2 -2
  160. camel/loaders/unstructured_io.py +2 -2
  161. camel/logger.py +5 -5
  162. camel/memories/__init__.py +2 -2
  163. camel/memories/agent_memories.py +86 -3
  164. camel/memories/base.py +36 -2
  165. camel/memories/blocks/__init__.py +2 -2
  166. camel/memories/blocks/chat_history_block.py +125 -7
  167. camel/memories/blocks/vectordb_block.py +10 -3
  168. camel/memories/context_creators/__init__.py +2 -2
  169. camel/memories/context_creators/score_based.py +109 -230
  170. camel/memories/records.py +90 -10
  171. camel/messages/__init__.py +2 -2
  172. camel/messages/base.py +178 -43
  173. camel/messages/conversion/__init__.py +2 -2
  174. camel/messages/conversion/alpaca.py +2 -2
  175. camel/messages/conversion/conversation_models.py +2 -2
  176. camel/messages/conversion/sharegpt/__init__.py +2 -2
  177. camel/messages/conversion/sharegpt/function_call_formatter.py +2 -2
  178. camel/messages/conversion/sharegpt/hermes/__init__.py +2 -2
  179. camel/messages/conversion/sharegpt/hermes/hermes_function_formatter.py +2 -2
  180. camel/messages/func_message.py +54 -17
  181. camel/models/__init__.py +18 -2
  182. camel/models/_utils.py +3 -3
  183. camel/models/aihubmix_model.py +83 -0
  184. camel/models/aiml_model.py +11 -18
  185. camel/models/amd_model.py +101 -0
  186. camel/models/anthropic_model.py +127 -20
  187. camel/models/aws_bedrock_model.py +12 -35
  188. camel/models/azure_openai_model.py +214 -115
  189. camel/models/base_audio_model.py +5 -3
  190. camel/models/base_model.py +378 -31
  191. camel/models/cerebras_model.py +83 -0
  192. camel/models/cohere_model.py +18 -49
  193. camel/models/cometapi_model.py +83 -0
  194. camel/models/crynux_model.py +11 -18
  195. camel/models/deepseek_model.py +20 -84
  196. camel/models/fish_audio_model.py +8 -2
  197. camel/models/function_gemma_model.py +889 -0
  198. camel/models/gemini_model.py +391 -52
  199. camel/models/groq_model.py +11 -19
  200. camel/models/internlm_model.py +11 -18
  201. camel/models/litellm_model.py +57 -49
  202. camel/models/lmstudio_model.py +17 -20
  203. camel/models/minimax_model.py +83 -0
  204. camel/models/mistral_model.py +20 -47
  205. camel/models/model_factory.py +39 -3
  206. camel/models/model_manager.py +26 -8
  207. camel/models/modelscope_model.py +13 -193
  208. camel/models/moonshot_model.py +183 -21
  209. camel/models/nebius_model.py +83 -0
  210. camel/models/nemotron_model.py +19 -9
  211. camel/models/netmind_model.py +11 -18
  212. camel/models/novita_model.py +11 -18
  213. camel/models/nvidia_model.py +11 -18
  214. camel/models/ollama_model.py +14 -21
  215. camel/models/openai_audio_models.py +2 -2
  216. camel/models/openai_compatible_model.py +190 -71
  217. camel/models/openai_model.py +192 -86
  218. camel/models/openrouter_model.py +11 -19
  219. camel/models/ppio_model.py +11 -18
  220. camel/models/qianfan_model.py +89 -0
  221. camel/models/qwen_model.py +13 -193
  222. camel/models/reka_model.py +23 -49
  223. camel/models/reward/__init__.py +2 -2
  224. camel/models/reward/base_reward_model.py +2 -2
  225. camel/models/reward/evaluator.py +2 -2
  226. camel/models/reward/nemotron_model.py +2 -2
  227. camel/models/reward/skywork_model.py +2 -2
  228. camel/models/samba_model.py +50 -75
  229. camel/models/sglang_model.py +90 -68
  230. camel/models/siliconflow_model.py +12 -35
  231. camel/models/stub_model.py +10 -7
  232. camel/models/togetherai_model.py +11 -18
  233. camel/models/vllm_model.py +10 -18
  234. camel/models/volcano_model.py +158 -19
  235. camel/models/watsonx_model.py +9 -47
  236. camel/models/yi_model.py +11 -18
  237. camel/models/zhipuai_model.py +70 -18
  238. camel/parsers/__init__.py +18 -0
  239. camel/parsers/mcp_tool_call_parser.py +176 -0
  240. camel/personas/__init__.py +2 -2
  241. camel/personas/persona.py +2 -2
  242. camel/personas/persona_hub.py +2 -2
  243. camel/prompts/__init__.py +2 -2
  244. camel/prompts/ai_society.py +2 -2
  245. camel/prompts/base.py +2 -2
  246. camel/prompts/code.py +2 -2
  247. camel/prompts/evaluation.py +2 -2
  248. camel/prompts/generate_text_embedding_data.py +2 -2
  249. camel/prompts/image_craft.py +2 -2
  250. camel/prompts/misalignment.py +2 -2
  251. camel/prompts/multi_condition_image_craft.py +2 -2
  252. camel/prompts/object_recognition.py +2 -2
  253. camel/prompts/persona_hub.py +3 -3
  254. camel/prompts/prompt_templates.py +2 -2
  255. camel/prompts/role_description_prompt_template.py +2 -2
  256. camel/prompts/solution_extraction.py +8 -8
  257. camel/prompts/task_prompt_template.py +2 -2
  258. camel/prompts/translation.py +2 -2
  259. camel/prompts/video_description_prompt.py +3 -3
  260. camel/responses/__init__.py +2 -2
  261. camel/responses/agent_responses.py +2 -2
  262. camel/retrievers/__init__.py +2 -2
  263. camel/retrievers/auto_retriever.py +3 -2
  264. camel/retrievers/base.py +2 -2
  265. camel/retrievers/bm25_retriever.py +2 -2
  266. camel/retrievers/cohere_rerank_retriever.py +2 -2
  267. camel/retrievers/hybrid_retrival.py +2 -2
  268. camel/retrievers/vector_retriever.py +2 -2
  269. camel/runtimes/Dockerfile.multi-toolkit +90 -0
  270. camel/runtimes/__init__.py +2 -2
  271. camel/runtimes/api.py +79 -23
  272. camel/runtimes/base.py +2 -2
  273. camel/runtimes/configs.py +13 -13
  274. camel/runtimes/daytona_runtime.py +17 -18
  275. camel/runtimes/docker_runtime.py +12 -12
  276. camel/runtimes/llm_guard_runtime.py +26 -26
  277. camel/runtimes/remote_http_runtime.py +11 -11
  278. camel/runtimes/ubuntu_docker_runtime.py +2 -2
  279. camel/runtimes/utils/__init__.py +2 -2
  280. camel/runtimes/utils/function_risk_toolkit.py +2 -2
  281. camel/runtimes/utils/ignore_risk_toolkit.py +2 -2
  282. camel/schemas/__init__.py +2 -2
  283. camel/schemas/base.py +2 -2
  284. camel/schemas/openai_converter.py +3 -3
  285. camel/schemas/outlines_converter.py +2 -2
  286. camel/services/agent_openapi_server.py +380 -0
  287. camel/societies/__init__.py +4 -2
  288. camel/societies/babyagi_playing.py +2 -2
  289. camel/societies/role_playing.py +201 -80
  290. camel/societies/workforce/__init__.py +10 -3
  291. camel/societies/workforce/base.py +2 -2
  292. camel/societies/workforce/events.py +145 -0
  293. camel/societies/workforce/prompts.py +259 -33
  294. camel/societies/workforce/role_playing_worker.py +88 -31
  295. camel/societies/workforce/single_agent_worker.py +638 -40
  296. camel/societies/workforce/structured_output_handler.py +512 -0
  297. camel/societies/workforce/task_channel.py +182 -38
  298. camel/societies/workforce/utils.py +780 -65
  299. camel/societies/workforce/worker.py +92 -26
  300. camel/societies/workforce/workflow_memory_manager.py +1746 -0
  301. camel/societies/workforce/workforce.py +5354 -372
  302. camel/societies/workforce/workforce_callback.py +103 -0
  303. camel/societies/workforce/workforce_logger.py +647 -0
  304. camel/societies/workforce/workforce_metrics.py +33 -0
  305. camel/storages/__init__.py +6 -2
  306. camel/storages/graph_storages/__init__.py +2 -2
  307. camel/storages/graph_storages/base.py +2 -2
  308. camel/storages/graph_storages/graph_element.py +2 -2
  309. camel/storages/graph_storages/nebula_graph.py +4 -4
  310. camel/storages/graph_storages/neo4j_graph.py +7 -7
  311. camel/storages/key_value_storages/__init__.py +2 -2
  312. camel/storages/key_value_storages/base.py +2 -2
  313. camel/storages/key_value_storages/in_memory.py +2 -2
  314. camel/storages/key_value_storages/json.py +17 -4
  315. camel/storages/key_value_storages/mem0_cloud.py +50 -49
  316. camel/storages/key_value_storages/redis.py +2 -2
  317. camel/storages/object_storages/__init__.py +2 -2
  318. camel/storages/object_storages/amazon_s3.py +2 -2
  319. camel/storages/object_storages/azure_blob.py +2 -2
  320. camel/storages/object_storages/base.py +2 -2
  321. camel/storages/object_storages/google_cloud.py +3 -3
  322. camel/storages/vectordb_storages/__init__.py +8 -2
  323. camel/storages/vectordb_storages/base.py +2 -2
  324. camel/storages/vectordb_storages/chroma.py +731 -0
  325. camel/storages/vectordb_storages/faiss.py +2 -2
  326. camel/storages/vectordb_storages/milvus.py +2 -2
  327. camel/storages/vectordb_storages/oceanbase.py +15 -15
  328. camel/storages/vectordb_storages/pgvector.py +349 -0
  329. camel/storages/vectordb_storages/qdrant.py +6 -6
  330. camel/storages/vectordb_storages/surreal.py +372 -0
  331. camel/storages/vectordb_storages/tidb.py +11 -8
  332. camel/storages/vectordb_storages/weaviate.py +2 -2
  333. camel/tasks/__init__.py +2 -2
  334. camel/tasks/task.py +348 -26
  335. camel/tasks/task_prompt.py +3 -3
  336. camel/terminators/__init__.py +2 -2
  337. camel/terminators/base.py +2 -2
  338. camel/terminators/response_terminator.py +2 -2
  339. camel/terminators/token_limit_terminator.py +2 -2
  340. camel/toolkits/__init__.py +57 -10
  341. camel/toolkits/aci_toolkit.py +66 -21
  342. camel/toolkits/arxiv_toolkit.py +8 -8
  343. camel/toolkits/ask_news_toolkit.py +2 -2
  344. camel/toolkits/async_browser_toolkit.py +4 -4
  345. camel/toolkits/audio_analysis_toolkit.py +3 -3
  346. camel/toolkits/base.py +106 -6
  347. camel/toolkits/bohrium_toolkit.py +2 -2
  348. camel/toolkits/browser_toolkit.py +34 -21
  349. camel/toolkits/browser_toolkit_commons.py +4 -4
  350. camel/toolkits/code_execution.py +31 -4
  351. camel/toolkits/context_summarizer_toolkit.py +684 -0
  352. camel/toolkits/craw4ai_toolkit.py +93 -0
  353. camel/toolkits/dappier_toolkit.py +12 -8
  354. camel/toolkits/data_commons_toolkit.py +2 -2
  355. camel/toolkits/dingtalk.py +1135 -0
  356. camel/toolkits/earth_science_toolkit.py +5367 -0
  357. camel/toolkits/edgeone_pages_mcp_toolkit.py +49 -0
  358. camel/toolkits/excel_toolkit.py +905 -71
  359. camel/toolkits/file_toolkit.py +1402 -0
  360. camel/toolkits/function_tool.py +205 -27
  361. camel/toolkits/github_toolkit.py +109 -22
  362. camel/toolkits/gmail_toolkit.py +1839 -0
  363. camel/toolkits/google_calendar_toolkit.py +40 -6
  364. camel/toolkits/google_drive_mcp_toolkit.py +54 -0
  365. camel/toolkits/google_maps_toolkit.py +2 -2
  366. camel/toolkits/google_scholar_toolkit.py +2 -2
  367. camel/toolkits/human_toolkit.py +36 -12
  368. camel/toolkits/hybrid_browser_toolkit/__init__.py +18 -0
  369. camel/toolkits/hybrid_browser_toolkit/config_loader.py +185 -0
  370. camel/toolkits/hybrid_browser_toolkit/hybrid_browser_toolkit.py +246 -0
  371. camel/toolkits/hybrid_browser_toolkit/hybrid_browser_toolkit_ts.py +1958 -0
  372. camel/toolkits/hybrid_browser_toolkit/installer.py +203 -0
  373. camel/toolkits/hybrid_browser_toolkit/ts/package-lock.json +4589 -0
  374. camel/toolkits/hybrid_browser_toolkit/ts/package.json +33 -0
  375. camel/toolkits/hybrid_browser_toolkit/ts/src/browser-scripts.js +125 -0
  376. camel/toolkits/hybrid_browser_toolkit/ts/src/browser-session.ts +1940 -0
  377. camel/toolkits/hybrid_browser_toolkit/ts/src/config-loader.ts +233 -0
  378. camel/toolkits/hybrid_browser_toolkit/ts/src/hybrid-browser-toolkit.ts +589 -0
  379. camel/toolkits/hybrid_browser_toolkit/ts/src/index.ts +7 -0
  380. camel/toolkits/hybrid_browser_toolkit/ts/src/parent-child-filter.ts +226 -0
  381. camel/toolkits/hybrid_browser_toolkit/ts/src/snapshot-parser.ts +219 -0
  382. camel/toolkits/hybrid_browser_toolkit/ts/src/som-screenshot-injected.ts +543 -0
  383. camel/toolkits/hybrid_browser_toolkit/ts/src/types.ts +129 -0
  384. camel/toolkits/hybrid_browser_toolkit/ts/tsconfig.json +27 -0
  385. camel/toolkits/hybrid_browser_toolkit/ts/websocket-server.js +325 -0
  386. camel/toolkits/hybrid_browser_toolkit/ws_wrapper.py +1037 -0
  387. camel/toolkits/hybrid_browser_toolkit_py/__init__.py +17 -0
  388. camel/toolkits/hybrid_browser_toolkit_py/actions.py +575 -0
  389. camel/toolkits/hybrid_browser_toolkit_py/agent.py +311 -0
  390. camel/toolkits/hybrid_browser_toolkit_py/browser_session.py +787 -0
  391. camel/toolkits/hybrid_browser_toolkit_py/config_loader.py +490 -0
  392. camel/toolkits/hybrid_browser_toolkit_py/hybrid_browser_toolkit.py +2390 -0
  393. camel/toolkits/hybrid_browser_toolkit_py/snapshot.py +233 -0
  394. camel/toolkits/hybrid_browser_toolkit_py/stealth_script.js +0 -0
  395. camel/toolkits/hybrid_browser_toolkit_py/unified_analyzer.js +1043 -0
  396. camel/toolkits/image_analysis_toolkit.py +3 -6
  397. camel/toolkits/image_generation_toolkit.py +390 -0
  398. camel/toolkits/jina_reranker_toolkit.py +5 -6
  399. camel/toolkits/klavis_toolkit.py +7 -3
  400. camel/toolkits/linkedin_toolkit.py +2 -2
  401. camel/toolkits/markitdown_toolkit.py +104 -0
  402. camel/toolkits/math_toolkit.py +66 -12
  403. camel/toolkits/mcp_toolkit.py +412 -36
  404. camel/toolkits/memory_toolkit.py +7 -3
  405. camel/toolkits/meshy_toolkit.py +2 -2
  406. camel/toolkits/message_agent_toolkit.py +608 -0
  407. camel/toolkits/message_integration.py +728 -0
  408. camel/toolkits/microsoft_outlook_mail_toolkit.py +1885 -0
  409. camel/toolkits/mineru_toolkit.py +2 -2
  410. camel/toolkits/minimax_mcp_toolkit.py +195 -0
  411. camel/toolkits/networkx_toolkit.py +2 -2
  412. camel/toolkits/note_taking_toolkit.py +277 -0
  413. camel/toolkits/notion_mcp_toolkit.py +224 -0
  414. camel/toolkits/notion_toolkit.py +2 -2
  415. camel/toolkits/open_api_specs/biztoc/__init__.py +2 -2
  416. camel/toolkits/open_api_specs/biztoc/ai-plugin.json +1 -1
  417. camel/toolkits/open_api_specs/coursera/__init__.py +2 -2
  418. camel/toolkits/open_api_specs/create_qr_code/__init__.py +2 -2
  419. camel/toolkits/open_api_specs/klarna/__init__.py +2 -2
  420. camel/toolkits/open_api_specs/nasa_apod/__init__.py +2 -2
  421. camel/toolkits/open_api_specs/outschool/__init__.py +2 -2
  422. camel/toolkits/open_api_specs/outschool/ai-plugin.json +1 -1
  423. camel/toolkits/open_api_specs/outschool/openapi.yaml +1 -1
  424. camel/toolkits/open_api_specs/outschool/paths/__init__.py +2 -2
  425. camel/toolkits/open_api_specs/outschool/paths/get_classes.py +2 -2
  426. camel/toolkits/open_api_specs/outschool/paths/search_teachers.py +2 -2
  427. camel/toolkits/open_api_specs/security_config.py +2 -2
  428. camel/toolkits/open_api_specs/speak/__init__.py +2 -2
  429. camel/toolkits/open_api_specs/web_scraper/__init__.py +2 -2
  430. camel/toolkits/open_api_specs/web_scraper/ai-plugin.json +1 -1
  431. camel/toolkits/open_api_specs/web_scraper/paths/__init__.py +2 -2
  432. camel/toolkits/open_api_specs/web_scraper/paths/scraper.py +2 -2
  433. camel/toolkits/open_api_toolkit.py +2 -2
  434. camel/toolkits/openbb_toolkit.py +7 -3
  435. camel/toolkits/origene_mcp_toolkit.py +56 -0
  436. camel/toolkits/page_script.js +53 -53
  437. camel/toolkits/playwright_mcp_toolkit.py +13 -31
  438. camel/toolkits/pptx_toolkit.py +36 -23
  439. camel/toolkits/pubmed_toolkit.py +2 -2
  440. camel/toolkits/pulse_mcp_search_toolkit.py +2 -2
  441. camel/toolkits/pyautogui_toolkit.py +2 -2
  442. camel/toolkits/reddit_toolkit.py +2 -2
  443. camel/toolkits/resend_toolkit.py +168 -0
  444. camel/toolkits/retrieval_toolkit.py +2 -2
  445. camel/toolkits/screenshot_toolkit.py +213 -0
  446. camel/toolkits/search_toolkit.py +606 -156
  447. camel/toolkits/searxng_toolkit.py +2 -2
  448. camel/toolkits/semantic_scholar_toolkit.py +2 -2
  449. camel/toolkits/slack_toolkit.py +108 -58
  450. camel/toolkits/sql_toolkit.py +712 -0
  451. camel/toolkits/stripe_toolkit.py +2 -2
  452. camel/toolkits/sympy_toolkit.py +3 -3
  453. camel/toolkits/task_planning_toolkit.py +5 -5
  454. camel/toolkits/terminal_toolkit/__init__.py +18 -0
  455. camel/toolkits/terminal_toolkit/terminal_toolkit.py +1281 -0
  456. camel/toolkits/terminal_toolkit/utils.py +659 -0
  457. camel/toolkits/thinking_toolkit.py +3 -3
  458. camel/toolkits/twitter_toolkit.py +2 -2
  459. camel/toolkits/vertex_ai_veo_toolkit.py +590 -0
  460. camel/toolkits/video_analysis_toolkit.py +109 -29
  461. camel/toolkits/video_download_toolkit.py +19 -16
  462. camel/toolkits/weather_toolkit.py +2 -2
  463. camel/toolkits/web_deploy_toolkit.py +1219 -0
  464. camel/toolkits/wechat_official_toolkit.py +483 -0
  465. camel/toolkits/whatsapp_toolkit.py +2 -2
  466. camel/toolkits/wolfram_alpha_toolkit.py +2 -2
  467. camel/toolkits/zapier_toolkit.py +7 -3
  468. camel/types/__init__.py +4 -4
  469. camel/types/agents/__init__.py +2 -2
  470. camel/types/agents/tool_calling_record.py +6 -3
  471. camel/types/enums.py +381 -41
  472. camel/types/mcp_registries.py +2 -2
  473. camel/types/openai_types.py +4 -4
  474. camel/types/unified_model_type.py +46 -10
  475. camel/utils/__init__.py +5 -2
  476. camel/utils/agent_context.py +41 -0
  477. camel/utils/async_func.py +2 -2
  478. camel/utils/chunker/__init__.py +2 -2
  479. camel/utils/chunker/base.py +2 -2
  480. camel/utils/chunker/code_chunker.py +2 -2
  481. camel/utils/chunker/uio_chunker.py +2 -2
  482. camel/utils/commons.py +38 -7
  483. camel/utils/constants.py +5 -2
  484. camel/utils/context_utils.py +1134 -0
  485. camel/utils/deduplication.py +2 -2
  486. camel/utils/filename.py +2 -2
  487. camel/utils/langfuse.py +18 -10
  488. camel/utils/mcp.py +140 -6
  489. camel/utils/mcp_client.py +48 -38
  490. camel/utils/message_summarizer.py +148 -0
  491. camel/utils/response_format.py +2 -2
  492. camel/utils/token_counting.py +45 -22
  493. camel/utils/tool_result.py +44 -0
  494. camel/verifiers/__init__.py +2 -2
  495. camel/verifiers/base.py +2 -2
  496. camel/verifiers/math_verifier.py +2 -2
  497. camel/verifiers/models.py +2 -2
  498. camel/verifiers/physics_verifier.py +2 -2
  499. camel/verifiers/python_verifier.py +2 -2
  500. {camel_ai-0.2.65.dist-info → camel_ai-0.2.83a6.dist-info}/METADATA +355 -117
  501. camel_ai-0.2.83a6.dist-info/RECORD +511 -0
  502. {camel_ai-0.2.65.dist-info → camel_ai-0.2.83a6.dist-info}/WHEEL +1 -1
  503. {camel_ai-0.2.65.dist-info → camel_ai-0.2.83a6.dist-info}/licenses/LICENSE +1 -1
  504. camel/loaders/pandas_reader.py +0 -368
  505. camel/toolkits/dalle_toolkit.py +0 -175
  506. camel/toolkits/file_write_toolkit.py +0 -444
  507. camel/toolkits/openai_agent_toolkit.py +0 -135
  508. camel/toolkits/terminal_toolkit.py +0 -1037
  509. camel_ai-0.2.65.dist-info/RECORD +0 -426
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: camel-ai
3
- Version: 0.2.65
3
+ Version: 0.2.83a6
4
4
  Summary: Communicative Agents for AI Society Study
5
5
  Project-URL: Homepage, https://www.camel-ai.org/
6
6
  Project-URL: Repository, https://github.com/camel-ai/camel
@@ -9,17 +9,20 @@ Author: CAMEL-AI.org
9
9
  License-Expression: Apache-2.0
10
10
  License-File: LICENSE
11
11
  Keywords: ai-societies,artificial-intelligence,communicative-ai,cooperative-ai,deep-learning,large-language-models,multi-agent-systems,natural-language-processing
12
- Requires-Python: <3.13,>=3.10
12
+ Requires-Python: <3.15,>=3.10
13
+ Requires-Dist: astor>=0.8.1
13
14
  Requires-Dist: colorama<0.5,>=0.4.6
14
- Requires-Dist: docstring-parser<0.16,>=0.15
15
+ Requires-Dist: docstring-parser<0.18,>=0.17.0
16
+ Requires-Dist: google-search-results>=2.4.2
15
17
  Requires-Dist: httpx<1.0.0dev,>=0.28.0
16
18
  Requires-Dist: jsonschema<5,>=4
17
19
  Requires-Dist: mcp>=1.3.0
18
- Requires-Dist: openai<2,>=1.68.0
19
- Requires-Dist: pillow<11.0.0,>=10.1.0
20
+ Requires-Dist: openai>=1.86.0
21
+ Requires-Dist: pillow>=10.0.0
20
22
  Requires-Dist: psutil<6,>=5.9.8
21
- Requires-Dist: pydantic>=2.10.6
23
+ Requires-Dist: pydantic<=2.12.0,>=2.10.6
22
24
  Requires-Dist: tiktoken<0.8,>=0.7.0
25
+ Requires-Dist: websockets<15.1,>=13.0
23
26
  Provides-Extra: all
24
27
  Requires-Dist: aci-sdk>=1.0.0b1; extra == 'all'
25
28
  Requires-Dist: agentops<0.4,>=0.3.21; extra == 'all'
@@ -28,96 +31,118 @@ Requires-Dist: anthropic<0.50.0,>=0.47.0; extra == 'all'
28
31
  Requires-Dist: apify-client<2,>=1.8.1; extra == 'all'
29
32
  Requires-Dist: arxiv2text<0.2,>=0.1.14; extra == 'all'
30
33
  Requires-Dist: arxiv<3,>=2.1.3; extra == 'all'
34
+ Requires-Dist: azure-identity<2,>=1.25.1; extra == 'all'
31
35
  Requires-Dist: azure-storage-blob<13,>=12.21.0; extra == 'all'
32
36
  Requires-Dist: beautifulsoup4<5,>=4; extra == 'all'
33
37
  Requires-Dist: botocore<2,>=1.35.3; extra == 'all'
34
- Requires-Dist: chunkr-ai>=0.0.50; extra == 'all'
38
+ Requires-Dist: chromadb<1.0.0,>=0.6.0; extra == 'all'
39
+ Requires-Dist: chunkr-ai<0.1.0,>=0.0.50; extra == 'all'
35
40
  Requires-Dist: cohere<6,>=5.11.0; extra == 'all'
36
- Requires-Dist: crawl4ai>=0.3.745; extra == 'all'
41
+ Requires-Dist: crawl4ai>=0.4.0; extra == 'all'
37
42
  Requires-Dist: dappier<0.4,>=0.3.3; extra == 'all'
38
43
  Requires-Dist: datacommons-pandas<0.0.4,>=0.0.3; extra == 'all'
39
44
  Requires-Dist: datacommons<2,>=1.4.3; extra == 'all'
40
45
  Requires-Dist: datasets<4,>=3; extra == 'all'
41
- Requires-Dist: daytona-sdk==0.14.0; extra == 'all'
46
+ Requires-Dist: daytona-sdk>=0.20.0; extra == 'all'
47
+ Requires-Dist: ddgs<10,>=9.0.0; extra == 'all'
42
48
  Requires-Dist: diffusers<0.26,>=0.25.0; extra == 'all'
43
49
  Requires-Dist: discord-py<3,>=2.3.2; extra == 'all'
44
50
  Requires-Dist: docker<8,>=7.1.0; extra == 'all'
45
51
  Requires-Dist: docx2txt<0.9,>=0.8; extra == 'all'
46
52
  Requires-Dist: docx>=0.2.4; extra == 'all'
47
- Requires-Dist: duckduckgo-search<7,>=6.3.5; extra == 'all'
53
+ Requires-Dist: duckdb>=1.4.3; extra == 'all'
48
54
  Requires-Dist: e2b-code-interpreter<2,>=1.0.3; extra == 'all'
49
55
  Requires-Dist: exa-py<2,>=1.10.0; extra == 'all'
50
56
  Requires-Dist: faiss-cpu<2,>=1.7.2; extra == 'all'
51
57
  Requires-Dist: fastapi>=0.115.11; extra == 'all'
52
58
  Requires-Dist: ffmpeg-python<0.3,>=0.2.0; extra == 'all'
53
59
  Requires-Dist: firecrawl-py<2,>=1.0.0; extra == 'all'
54
- Requires-Dist: fish-audio-sdk<2025,>=2024.12.5; extra == 'all'
60
+ Requires-Dist: fish-audio-sdk>=1.0.0; extra == 'all'
55
61
  Requires-Dist: flask>=2.0; extra == 'all'
56
- Requires-Dist: fpdf>=1.7.2; extra == 'all'
57
62
  Requires-Dist: google-api-python-client==2.166.0; extra == 'all'
58
63
  Requires-Dist: google-auth-httplib2==0.2.0; extra == 'all'
59
64
  Requires-Dist: google-auth-oauthlib==1.2.1; extra == 'all'
65
+ Requires-Dist: google-auth<3.0.0,>=2.0.0; extra == 'all'
66
+ Requires-Dist: google-cloud-aiplatform>=1.111.0; extra == 'all'
60
67
  Requires-Dist: google-cloud-storage<3,>=2.18.0; extra == 'all'
61
68
  Requires-Dist: google-genai>=1.13.0; extra == 'all'
62
69
  Requires-Dist: googlemaps<5,>=4.10.0; extra == 'all'
63
70
  Requires-Dist: gradio<4,>=3; extra == 'all'
71
+ Requires-Dist: grpcio>=1.72.0; extra == 'all'
64
72
  Requires-Dist: html2text>=2024.2.26; extra == 'all'
73
+ Requires-Dist: httplib2>=0.31.0; extra == 'all'
65
74
  Requires-Dist: ibm-watsonx-ai>=1.3.11; extra == 'all'
66
75
  Requires-Dist: imageio[pyav]<3,>=2.34.2; extra == 'all'
67
76
  Requires-Dist: ipykernel<7,>=6.0.0; extra == 'all'
68
77
  Requires-Dist: jupyter-client<9,>=8.6.2; extra == 'all'
69
78
  Requires-Dist: langfuse>=2.60.5; extra == 'all'
70
79
  Requires-Dist: linkup-sdk<0.3,>=0.2.1; extra == 'all'
71
- Requires-Dist: litellm<2,>=1.38.1; extra == 'all'
72
- Requires-Dist: markitdown==0.1.1; extra == 'all'
80
+ Requires-Dist: litellm<1.80.12,>=1.38.1; extra == 'all'
81
+ Requires-Dist: markitdown>=0.1.1; (python_version >= '3.13') and extra == 'all'
73
82
  Requires-Dist: math-verify<0.8,>=0.7.0; extra == 'all'
74
83
  Requires-Dist: mcp>=1.3.0; extra == 'all'
75
84
  Requires-Dist: mem0ai>=0.1.67; extra == 'all'
85
+ Requires-Dist: microsandbox>=0.1.8; extra == 'all'
76
86
  Requires-Dist: mistralai<2,>=1.1.0; extra == 'all'
77
87
  Requires-Dist: mock<6,>=5; extra == 'all'
88
+ Requires-Dist: msal<2,>=1.34.0; extra == 'all'
89
+ Requires-Dist: msgraph-sdk<2,>=1.46.0; extra == 'all'
78
90
  Requires-Dist: mypy<2,>=1.5.1; extra == 'all'
79
91
  Requires-Dist: nebula3-python==3.8.2; extra == 'all'
80
92
  Requires-Dist: neo4j<6,>=5.18.0; extra == 'all'
81
93
  Requires-Dist: networkx<4,>=3.4.2; extra == 'all'
82
- Requires-Dist: newspaper3k<0.3,>=0.2.8; extra == 'all'
83
94
  Requires-Dist: notion-client<3,>=2.2.1; extra == 'all'
84
95
  Requires-Dist: numpy<=2.2,>=1.2; extra == 'all'
96
+ Requires-Dist: onnxruntime<=1.19.2; extra == 'all'
85
97
  Requires-Dist: openapi-spec-validator<0.8,>=0.7.1; extra == 'all'
98
+ Requires-Dist: opencv-python>=4.11.0.86; extra == 'all'
86
99
  Requires-Dist: openpyxl>=3.1.5; extra == 'all'
87
- Requires-Dist: pandas<2,>=1.5.3; extra == 'all'
88
- Requires-Dist: pandasai<3,>=2.3.0; extra == 'all'
100
+ Requires-Dist: pandas>=2; extra == 'all'
101
+ Requires-Dist: pgvector<0.3,>=0.2.4; extra == 'all'
89
102
  Requires-Dist: playwright>=1.50.0; extra == 'all'
90
103
  Requires-Dist: prance<24,>=23.6.21.0; extra == 'all'
91
104
  Requires-Dist: praw<8,>=7.7.1; extra == 'all'
92
105
  Requires-Dist: pre-commit<4,>=3; extra == 'all'
106
+ Requires-Dist: protobuf>=6.0.0; extra == 'all'
107
+ Requires-Dist: psycopg[binary]<4,>=3.1.18; extra == 'all'
93
108
  Requires-Dist: pyautogui<0.10,>=0.9.54; extra == 'all'
94
109
  Requires-Dist: pydub<0.26,>=0.25.1; extra == 'all'
95
110
  Requires-Dist: pygithub<3,>=2.6.0; extra == 'all'
96
111
  Requires-Dist: pylatex>=1.4.2; extra == 'all'
97
112
  Requires-Dist: pymilvus<3,>=2.4.0; extra == 'all'
98
113
  Requires-Dist: pymupdf<2,>=1.22.5; extra == 'all'
99
- Requires-Dist: pyobvector>=0.1.18; extra == 'all'
114
+ Requires-Dist: pyobvector>=0.1.18; (python_version < '3.13') and extra == 'all'
100
115
  Requires-Dist: pyowm<4,>=3.3.0; extra == 'all'
101
116
  Requires-Dist: pytelegrambotapi<5,>=4.18.0; extra == 'all'
117
+ Requires-Dist: pytesseract>=0.3.13; extra == 'all'
102
118
  Requires-Dist: pytest-asyncio<0.24,>=0.23.0; extra == 'all'
103
119
  Requires-Dist: pytest-cov<5,>=4; extra == 'all'
104
120
  Requires-Dist: pytest<8,>=7; extra == 'all'
105
121
  Requires-Dist: python-pptx>=1.0.2; extra == 'all'
106
- Requires-Dist: pytidb-experimental==0.0.1.dev4; extra == 'all'
122
+ Requires-Dist: pytidb>=0.0.13; extra == 'all'
107
123
  Requires-Dist: qdrant-client<2,>=1.9.0; extra == 'all'
108
124
  Requires-Dist: rank-bm25<0.3,>=0.2.2; extra == 'all'
125
+ Requires-Dist: rasterio>=1.4.4; extra == 'all'
109
126
  Requires-Dist: redis<6,>=5.0.6; extra == 'all'
110
127
  Requires-Dist: reka-api<4,>=3.0.8; extra == 'all'
128
+ Requires-Dist: reportlab>=4.4.2; extra == 'all'
111
129
  Requires-Dist: requests-oauthlib<2,>=1.3.1; extra == 'all'
130
+ Requires-Dist: resend<3,>=2.0.0; extra == 'all'
131
+ Requires-Dist: rlcard<1.3.0,>=1.0.0; extra == 'all'
112
132
  Requires-Dist: rouge<2,>=1.0.1; extra == 'all'
133
+ Requires-Dist: ruptures>=1.1.10; extra == 'all'
113
134
  Requires-Dist: scenedetect>=0.6.5.2; extra == 'all'
114
135
  Requires-Dist: scholarly[tor]==1.7.11; extra == 'all'
136
+ Requires-Dist: scikit-image>=0.25.2; extra == 'all'
137
+ Requires-Dist: scipy>=1.15.3; extra == 'all'
115
138
  Requires-Dist: scrapegraph-py<2,>=1.12.0; extra == 'all'
116
139
  Requires-Dist: sentencepiece<0.3,>=0.2; extra == 'all'
117
140
  Requires-Dist: slack-bolt<2,>=1.20.1; extra == 'all'
118
141
  Requires-Dist: slack-sdk<4,>=3.27.2; extra == 'all'
119
142
  Requires-Dist: soundfile<0.14,>=0.13; extra == 'all'
143
+ Requires-Dist: statsmodels>=0.14.6; extra == 'all'
120
144
  Requires-Dist: stripe<12,>=11.3.0; extra == 'all'
145
+ Requires-Dist: surrealdb>=1.0.6; extra == 'all'
121
146
  Requires-Dist: sympy<2,>=1.13.3; extra == 'all'
122
147
  Requires-Dist: tabulate>=0.9.0; extra == 'all'
123
148
  Requires-Dist: tavily-python<0.6,>=0.5.0; extra == 'all'
@@ -132,18 +157,23 @@ Requires-Dist: types-pyyaml<7,>=6.0.12; extra == 'all'
132
157
  Requires-Dist: types-requests<3,>=2.31.0; extra == 'all'
133
158
  Requires-Dist: types-setuptools<70,>=69.2.0; extra == 'all'
134
159
  Requires-Dist: types-tqdm<5,>=4.66.0; extra == 'all'
135
- Requires-Dist: unstructured==0.16.20; extra == 'all'
160
+ Requires-Dist: unstructured==0.16.20; (python_version < '3.13') and extra == 'all'
136
161
  Requires-Dist: weaviate-client>=4.15.0; extra == 'all'
162
+ Requires-Dist: websockets<15.1,>=13.0; extra == 'all'
137
163
  Requires-Dist: wikipedia<2,>=1; extra == 'all'
138
164
  Requires-Dist: wolframalpha<6,>=5.0.0; extra == 'all'
139
165
  Requires-Dist: xls2xlsx>=0.2.0; extra == 'all'
140
166
  Requires-Dist: yt-dlp<2025,>=2024.11.4; extra == 'all'
141
167
  Provides-Extra: communication-tools
168
+ Requires-Dist: azure-identity<2,>=1.25.1; extra == 'communication-tools'
142
169
  Requires-Dist: discord-py<3,>=2.3.2; extra == 'communication-tools'
170
+ Requires-Dist: msal<2,>=1.34.0; extra == 'communication-tools'
171
+ Requires-Dist: msgraph-sdk<2,>=1.46.0; extra == 'communication-tools'
143
172
  Requires-Dist: notion-client<3,>=2.2.1; extra == 'communication-tools'
144
173
  Requires-Dist: praw<8,>=7.7.1; extra == 'communication-tools'
145
174
  Requires-Dist: pygithub<3,>=2.6.0; extra == 'communication-tools'
146
175
  Requires-Dist: pytelegrambotapi<5,>=4.18.0; extra == 'communication-tools'
176
+ Requires-Dist: resend<3,>=2.0.0; extra == 'communication-tools'
147
177
  Requires-Dist: slack-bolt<2,>=1.20.1; extra == 'communication-tools'
148
178
  Requires-Dist: slack-sdk<4,>=3.27.2; extra == 'communication-tools'
149
179
  Provides-Extra: data-tools
@@ -153,7 +183,7 @@ Requires-Dist: datacommons<2,>=1.4.3; extra == 'data-tools'
153
183
  Requires-Dist: math-verify<0.8,>=0.7.0; extra == 'data-tools'
154
184
  Requires-Dist: networkx<4,>=3.4.2; extra == 'data-tools'
155
185
  Requires-Dist: numpy<=2.2,>=1.2; extra == 'data-tools'
156
- Requires-Dist: pandas<2,>=1.5.3; extra == 'data-tools'
186
+ Requires-Dist: pandas>=2; extra == 'data-tools'
157
187
  Requires-Dist: rouge<2,>=1.0.1; extra == 'data-tools'
158
188
  Requires-Dist: stripe<12,>=11.3.0; extra == 'data-tools'
159
189
  Requires-Dist: textblob<0.18,>=0.17.1; extra == 'data-tools'
@@ -174,17 +204,18 @@ Requires-Dist: types-pyyaml<7,>=6.0.12; extra == 'dev'
174
204
  Requires-Dist: types-requests<3,>=2.31.0; extra == 'dev'
175
205
  Requires-Dist: types-setuptools<70,>=69.2.0; extra == 'dev'
176
206
  Requires-Dist: types-tqdm<5,>=4.66.0; extra == 'dev'
177
- Requires-Dist: uv==0.6.5; extra == 'dev'
207
+ Requires-Dist: uv<0.8,>=0.7.0; extra == 'dev'
178
208
  Provides-Extra: dev-tools
179
209
  Requires-Dist: aci-sdk>=1.0.0b1; extra == 'dev-tools'
180
210
  Requires-Dist: agentops<0.4,>=0.3.21; extra == 'dev-tools'
181
- Requires-Dist: daytona-sdk==0.14.0; extra == 'dev-tools'
211
+ Requires-Dist: daytona-sdk>=0.20.0; extra == 'dev-tools'
182
212
  Requires-Dist: docker<8,>=7.1.0; extra == 'dev-tools'
183
213
  Requires-Dist: e2b-code-interpreter<2,>=1.0.3; extra == 'dev-tools'
184
214
  Requires-Dist: ipykernel<7,>=6.0.0; extra == 'dev-tools'
185
215
  Requires-Dist: jupyter-client<9,>=8.6.2; extra == 'dev-tools'
186
216
  Requires-Dist: langfuse>=2.60.5; extra == 'dev-tools'
187
217
  Requires-Dist: mcp>=1.3.0; extra == 'dev-tools'
218
+ Requires-Dist: microsandbox>=0.1.8; extra == 'dev-tools'
188
219
  Requires-Dist: tree-sitter-python<0.24,>=0.23.6; extra == 'dev-tools'
189
220
  Requires-Dist: tree-sitter<0.24,>=0.23.2; extra == 'dev-tools'
190
221
  Requires-Dist: typer>=0.15.2; extra == 'dev-tools'
@@ -197,23 +228,66 @@ Requires-Dist: sphinx<8,>=7; extra == 'docs'
197
228
  Requires-Dist: sphinxext-rediraffe<0.3,>=0.2.7; extra == 'docs'
198
229
  Provides-Extra: document-tools
199
230
  Requires-Dist: beautifulsoup4<5,>=4; extra == 'document-tools'
200
- Requires-Dist: chunkr-ai>=0.0.50; extra == 'document-tools'
231
+ Requires-Dist: chunkr-ai<0.1.0,>=0.0.50; extra == 'document-tools'
201
232
  Requires-Dist: crawl4ai>=0.3.745; extra == 'document-tools'
202
233
  Requires-Dist: docx2txt<0.9,>=0.8; extra == 'document-tools'
203
234
  Requires-Dist: docx>=0.2.4; extra == 'document-tools'
204
- Requires-Dist: fpdf>=1.7.2; extra == 'document-tools'
205
- Requires-Dist: markitdown==0.1.1; extra == 'document-tools'
235
+ Requires-Dist: markitdown>=0.1.1; (python_version >= '3.13') and extra == 'document-tools'
206
236
  Requires-Dist: numpy<=2.2,>=1.2; extra == 'document-tools'
237
+ Requires-Dist: onnxruntime<=1.19.2; extra == 'document-tools'
207
238
  Requires-Dist: openapi-spec-validator<0.8,>=0.7.1; extra == 'document-tools'
208
239
  Requires-Dist: openpyxl>=3.1.5; extra == 'document-tools'
209
- Requires-Dist: pandasai<3,>=2.3.0; extra == 'document-tools'
210
240
  Requires-Dist: prance<24,>=23.6.21.0; extra == 'document-tools'
211
241
  Requires-Dist: pylatex>=1.4.2; extra == 'document-tools'
212
242
  Requires-Dist: pymupdf<2,>=1.22.5; extra == 'document-tools'
213
243
  Requires-Dist: python-pptx>=1.0.2; extra == 'document-tools'
244
+ Requires-Dist: reportlab>=4.4.2; extra == 'document-tools'
214
245
  Requires-Dist: tabulate>=0.9.0; extra == 'document-tools'
215
- Requires-Dist: unstructured==0.16.20; extra == 'document-tools'
246
+ Requires-Dist: unstructured==0.16.20; (python_version < '3.13') and extra == 'document-tools'
216
247
  Requires-Dist: xls2xlsx>=0.2.0; extra == 'document-tools'
248
+ Provides-Extra: earth-science
249
+ Requires-Dist: matplotlib>=3.10.7; extra == 'earth-science'
250
+ Requires-Dist: numpy<=2.2,>=1.2; extra == 'earth-science'
251
+ Requires-Dist: opencv-python>=4.11.0.86; extra == 'earth-science'
252
+ Requires-Dist: pandas>=2; extra == 'earth-science'
253
+ Requires-Dist: rasterio>=1.4.4; extra == 'earth-science'
254
+ Requires-Dist: ruptures>=1.1.10; extra == 'earth-science'
255
+ Requires-Dist: scikit-image>=0.25.2; extra == 'earth-science'
256
+ Requires-Dist: scipy>=1.15.3; extra == 'earth-science'
257
+ Requires-Dist: statsmodels>=0.14.6; extra == 'earth-science'
258
+ Provides-Extra: eigent
259
+ Requires-Dist: anthropic<0.50.0,>=0.47.0; extra == 'eigent'
260
+ Requires-Dist: datasets<4,>=3; extra == 'eigent'
261
+ Requires-Dist: docx>=0.2.4; extra == 'eigent'
262
+ Requires-Dist: exa-py<2,>=1.10.0; extra == 'eigent'
263
+ Requires-Dist: ffmpeg-python<0.3,>=0.2.0; extra == 'eigent'
264
+ Requires-Dist: google-api-python-client==2.166.0; extra == 'eigent'
265
+ Requires-Dist: google-auth-httplib2==0.2.0; extra == 'eigent'
266
+ Requires-Dist: google-auth-oauthlib==1.2.1; extra == 'eigent'
267
+ Requires-Dist: httplib2>=0.31.0; extra == 'eigent'
268
+ Requires-Dist: imageio[pyav]<3,>=2.34.2; extra == 'eigent'
269
+ Requires-Dist: markitdown>=0.1.1; (python_version >= '3.13') and extra == 'eigent'
270
+ Requires-Dist: markitdown[all]>=0.1.1; (python_version < '3.13') and extra == 'eigent'
271
+ Requires-Dist: mcp-server-fetch==2025.1.17; extra == 'eigent'
272
+ Requires-Dist: mcp-simple-arxiv==0.2.2; extra == 'eigent'
273
+ Requires-Dist: numpy<=2.2,>=1.2; extra == 'eigent'
274
+ Requires-Dist: onnxruntime<=1.19.2; extra == 'eigent'
275
+ Requires-Dist: openpyxl>=3.1.5; extra == 'eigent'
276
+ Requires-Dist: pandas>=2; extra == 'eigent'
277
+ Requires-Dist: pydub<0.26,>=0.25.1; extra == 'eigent'
278
+ Requires-Dist: pylatex>=1.4.2; extra == 'eigent'
279
+ Requires-Dist: pytesseract>=0.3.13; extra == 'eigent'
280
+ Requires-Dist: python-dotenv<2,>=1.0.0; extra == 'eigent'
281
+ Requires-Dist: python-pptx>=1.0.2; extra == 'eigent'
282
+ Requires-Dist: reportlab>=4.4.2; extra == 'eigent'
283
+ Requires-Dist: requests-oauthlib<2,>=1.3.1; extra == 'eigent'
284
+ Requires-Dist: scenedetect>=0.6.5.2; extra == 'eigent'
285
+ Requires-Dist: slack-sdk<4,>=3.27.2; extra == 'eigent'
286
+ Requires-Dist: tabulate>=0.9.0; extra == 'eigent'
287
+ Requires-Dist: websockets<15.1,>=13.0; extra == 'eigent'
288
+ Requires-Dist: wikipedia<2,>=1; extra == 'eigent'
289
+ Requires-Dist: xls2xlsx>=0.2.0; extra == 'eigent'
290
+ Requires-Dist: yt-dlp<2025,>=2024.11.4; extra == 'eigent'
217
291
  Provides-Extra: huggingface
218
292
  Requires-Dist: datasets<4,>=3; extra == 'huggingface'
219
293
  Requires-Dist: diffusers<0.26,>=0.25.0; extra == 'huggingface'
@@ -225,48 +299,51 @@ Provides-Extra: media-tools
225
299
  Requires-Dist: ffmpeg-python<0.3,>=0.2.0; extra == 'media-tools'
226
300
  Requires-Dist: imageio[pyav]<3,>=2.34.2; extra == 'media-tools'
227
301
  Requires-Dist: pydub<0.26,>=0.25.1; extra == 'media-tools'
302
+ Requires-Dist: pytesseract>=0.3.13; extra == 'media-tools'
228
303
  Requires-Dist: scenedetect>=0.6.5.2; extra == 'media-tools'
229
304
  Requires-Dist: yt-dlp<2025,>=2024.11.4; extra == 'media-tools'
230
305
  Provides-Extra: model-platforms
231
306
  Requires-Dist: anthropic<0.50.0,>=0.47.0; extra == 'model-platforms'
232
307
  Requires-Dist: cohere<6,>=5.11.0; extra == 'model-platforms'
233
- Requires-Dist: fish-audio-sdk<2025,>=2024.12.5; extra == 'model-platforms'
308
+ Requires-Dist: fish-audio-sdk>=1.0.0; extra == 'model-platforms'
234
309
  Requires-Dist: ibm-watsonx-ai>=1.3.11; extra == 'model-platforms'
235
- Requires-Dist: litellm<2,>=1.38.1; extra == 'model-platforms'
310
+ Requires-Dist: litellm<1.80.12,>=1.38.1; extra == 'model-platforms'
236
311
  Requires-Dist: mistralai<2,>=1.1.0; extra == 'model-platforms'
237
312
  Requires-Dist: reka-api<4,>=3.0.8; extra == 'model-platforms'
238
313
  Provides-Extra: owl
239
314
  Requires-Dist: aci-sdk>=1.0.0b1; extra == 'owl'
240
315
  Requires-Dist: anthropic<0.50.0,>=0.47.0; extra == 'owl'
241
316
  Requires-Dist: beautifulsoup4<5,>=4; extra == 'owl'
317
+ Requires-Dist: chunkr-ai<0.1.0,>=0.0.50; extra == 'owl'
242
318
  Requires-Dist: chunkr-ai>=0.0.41; extra == 'owl'
243
- Requires-Dist: chunkr-ai>=0.0.50; extra == 'owl'
244
319
  Requires-Dist: crawl4ai>=0.3.745; extra == 'owl'
245
320
  Requires-Dist: datasets<4,>=3; extra == 'owl'
321
+ Requires-Dist: ddgs<10,>=9.0.0; extra == 'owl'
246
322
  Requires-Dist: docx2txt<0.9,>=0.8; extra == 'owl'
247
323
  Requires-Dist: docx>=0.2.4; extra == 'owl'
248
- Requires-Dist: duckduckgo-search<7,>=6.3.5; extra == 'owl'
249
324
  Requires-Dist: e2b-code-interpreter<2,>=1.0.3; extra == 'owl'
325
+ Requires-Dist: exa-py<2,>=1.10.0; extra == 'owl'
250
326
  Requires-Dist: ffmpeg-python<0.3,>=0.2.0; extra == 'owl'
251
- Requires-Dist: fpdf>=1.7.2; extra == 'owl'
252
327
  Requires-Dist: html2text>=2024.2.26; extra == 'owl'
253
328
  Requires-Dist: imageio[pyav]<3,>=2.34.2; extra == 'owl'
329
+ Requires-Dist: markitdown>=0.1.1; (python_version >= '3.13') and extra == 'owl'
254
330
  Requires-Dist: mcp-server-fetch==2025.1.17; extra == 'owl'
255
331
  Requires-Dist: mcp-simple-arxiv==0.2.2; extra == 'owl'
256
- Requires-Dist: newspaper3k<0.3,>=0.2.8; extra == 'owl'
257
332
  Requires-Dist: numpy<=2.2,>=1.2; extra == 'owl'
333
+ Requires-Dist: onnxruntime<=1.19.2; extra == 'owl'
258
334
  Requires-Dist: openapi-spec-validator<0.8,>=0.7.1; extra == 'owl'
259
335
  Requires-Dist: openpyxl>=3.1.5; extra == 'owl'
260
- Requires-Dist: pandas<2,>=1.5.3; extra == 'owl'
261
- Requires-Dist: pandasai<3,>=2.3.0; extra == 'owl'
336
+ Requires-Dist: pandas>=2; extra == 'owl'
262
337
  Requires-Dist: playwright>=1.50.0; extra == 'owl'
263
338
  Requires-Dist: prance<24,>=23.6.21.0; extra == 'owl'
264
339
  Requires-Dist: pyautogui<0.10,>=0.9.54; extra == 'owl'
265
340
  Requires-Dist: pydub<0.26,>=0.25.1; extra == 'owl'
266
341
  Requires-Dist: pylatex>=1.4.2; extra == 'owl'
267
342
  Requires-Dist: pymupdf<2,>=1.22.5; extra == 'owl'
343
+ Requires-Dist: pytesseract>=0.3.13; extra == 'owl'
268
344
  Requires-Dist: python-dotenv<2,>=1.0.0; extra == 'owl'
269
345
  Requires-Dist: python-pptx>=1.0.2; extra == 'owl'
346
+ Requires-Dist: reportlab>=4.4.2; extra == 'owl'
270
347
  Requires-Dist: requests-oauthlib<2,>=1.3.1; extra == 'owl'
271
348
  Requires-Dist: rouge<2,>=1.0.1; extra == 'owl'
272
349
  Requires-Dist: scenedetect>=0.6.5.2; extra == 'owl'
@@ -278,26 +355,29 @@ Requires-Dist: transformers<5,>=4; extra == 'owl'
278
355
  Requires-Dist: tree-sitter-python<0.24,>=0.23.6; extra == 'owl'
279
356
  Requires-Dist: tree-sitter<0.24,>=0.23.2; extra == 'owl'
280
357
  Requires-Dist: typer>=0.15.2; extra == 'owl'
281
- Requires-Dist: unstructured==0.16.20; extra == 'owl'
358
+ Requires-Dist: unstructured==0.16.20; (python_version < '3.13') and extra == 'owl'
359
+ Requires-Dist: websockets<15.1,>=13.0; extra == 'owl'
282
360
  Requires-Dist: wikipedia<2,>=1; extra == 'owl'
283
361
  Requires-Dist: xls2xlsx>=0.2.0; extra == 'owl'
284
362
  Requires-Dist: yt-dlp<2025,>=2024.11.4; extra == 'owl'
285
363
  Provides-Extra: rag
286
- Requires-Dist: chunkr-ai>=0.0.50; extra == 'rag'
364
+ Requires-Dist: chromadb<1.0.0,>=0.6.0; extra == 'rag'
365
+ Requires-Dist: chunkr-ai<0.1.0,>=0.0.50; extra == 'rag'
287
366
  Requires-Dist: cohere<6,>=5.11.0; extra == 'rag'
288
367
  Requires-Dist: crawl4ai>=0.3.745; extra == 'rag'
289
368
  Requires-Dist: faiss-cpu<2,>=1.7.2; extra == 'rag'
290
369
  Requires-Dist: google-genai>=1.13.0; extra == 'rag'
370
+ Requires-Dist: grpcio>=1.72.0; extra == 'rag'
291
371
  Requires-Dist: nebula3-python==3.8.2; extra == 'rag'
292
372
  Requires-Dist: neo4j<6,>=5.18.0; extra == 'rag'
293
373
  Requires-Dist: numpy<=2.2,>=1.2; extra == 'rag'
294
- Requires-Dist: pandasai<3,>=2.3.0; extra == 'rag'
374
+ Requires-Dist: protobuf>=6.0.0; extra == 'rag'
295
375
  Requires-Dist: pymilvus<3,>=2.4.0; extra == 'rag'
296
- Requires-Dist: pyobvector>=0.1.18; extra == 'rag'
297
- Requires-Dist: pytidb-experimental==0.0.1.dev4; extra == 'rag'
376
+ Requires-Dist: pyobvector>=0.1.18; (python_version < '3.13') and extra == 'rag'
377
+ Requires-Dist: pytidb>=0.0.13; extra == 'rag'
298
378
  Requires-Dist: qdrant-client<2,>=1.9.0; extra == 'rag'
299
379
  Requires-Dist: rank-bm25<0.3,>=0.2.2; extra == 'rag'
300
- Requires-Dist: unstructured==0.16.20; extra == 'rag'
380
+ Requires-Dist: unstructured==0.16.20; (python_version < '3.13') and extra == 'rag'
301
381
  Requires-Dist: weaviate-client>=4.15.0; extra == 'rag'
302
382
  Provides-Extra: research-tools
303
383
  Requires-Dist: arxiv2text<0.2,>=0.1.14; extra == 'research-tools'
@@ -306,42 +386,46 @@ Requires-Dist: scholarly[tor]==1.7.11; extra == 'research-tools'
306
386
  Provides-Extra: storage
307
387
  Requires-Dist: azure-storage-blob<13,>=12.21.0; extra == 'storage'
308
388
  Requires-Dist: botocore<2,>=1.35.3; extra == 'storage'
389
+ Requires-Dist: chromadb<1.0.0,>=0.6.0; extra == 'storage'
390
+ Requires-Dist: duckdb>=1.4.3; extra == 'storage'
309
391
  Requires-Dist: faiss-cpu<2,>=1.7.2; extra == 'storage'
310
392
  Requires-Dist: google-cloud-storage<3,>=2.18.0; extra == 'storage'
393
+ Requires-Dist: grpcio>=1.72.0; extra == 'storage'
311
394
  Requires-Dist: mem0ai>=0.1.73; extra == 'storage'
312
395
  Requires-Dist: nebula3-python==3.8.2; extra == 'storage'
313
396
  Requires-Dist: neo4j<6,>=5.18.0; extra == 'storage'
397
+ Requires-Dist: pgvector<0.3,>=0.2.4; extra == 'storage'
398
+ Requires-Dist: protobuf>=6.0.0; extra == 'storage'
399
+ Requires-Dist: psycopg[binary]<4,>=3.1.18; extra == 'storage'
314
400
  Requires-Dist: pymilvus<3,>=2.4.0; extra == 'storage'
315
- Requires-Dist: pyobvector>=0.1.18; extra == 'storage'
316
- Requires-Dist: pytidb-experimental==0.0.1.dev4; extra == 'storage'
401
+ Requires-Dist: pyobvector>=0.1.18; (python_version < '3.13') and extra == 'storage'
402
+ Requires-Dist: pytidb>=0.0.13; extra == 'storage'
317
403
  Requires-Dist: qdrant-client<2,>=1.9.0; extra == 'storage'
318
404
  Requires-Dist: redis<6,>=5.0.6; extra == 'storage'
405
+ Requires-Dist: surrealdb>=1.0.6; extra == 'storage'
319
406
  Requires-Dist: weaviate-client>=4.15.0; extra == 'storage'
320
- Provides-Extra: test
321
- Requires-Dist: mock<6,>=5; extra == 'test'
322
- Requires-Dist: pytest-asyncio<0.24,>=0.23.0; extra == 'test'
323
- Requires-Dist: pytest<8,>=7; extra == 'test'
324
407
  Provides-Extra: web-tools
325
408
  Requires-Dist: apify-client<2,>=1.8.1; extra == 'web-tools'
326
409
  Requires-Dist: beautifulsoup4<5,>=4; extra == 'web-tools'
327
410
  Requires-Dist: dappier<0.4,>=0.3.3; extra == 'web-tools'
328
- Requires-Dist: duckduckgo-search<7,>=6.3.5; extra == 'web-tools'
411
+ Requires-Dist: ddgs<10,>=9.0.0; extra == 'web-tools'
329
412
  Requires-Dist: exa-py<2,>=1.10.0; extra == 'web-tools'
330
413
  Requires-Dist: fastapi>=0.115.11; extra == 'web-tools'
331
414
  Requires-Dist: firecrawl-py<2,>=1.0.0; extra == 'web-tools'
332
415
  Requires-Dist: google-api-python-client==2.166.0; extra == 'web-tools'
333
416
  Requires-Dist: google-auth-httplib2==0.2.0; extra == 'web-tools'
334
417
  Requires-Dist: google-auth-oauthlib==1.2.1; extra == 'web-tools'
418
+ Requires-Dist: google-auth<3.0.0,>=2.0.0; extra == 'web-tools'
335
419
  Requires-Dist: googlemaps<5,>=4.10.0; extra == 'web-tools'
336
420
  Requires-Dist: html2text>=2024.2.26; extra == 'web-tools'
337
421
  Requires-Dist: linkup-sdk<0.3,>=0.2.1; extra == 'web-tools'
338
- Requires-Dist: newspaper3k<0.3,>=0.2.8; extra == 'web-tools'
339
422
  Requires-Dist: playwright>=1.50.0; extra == 'web-tools'
340
423
  Requires-Dist: pyowm<4,>=3.3.0; extra == 'web-tools'
341
424
  Requires-Dist: requests-oauthlib<2,>=1.3.1; extra == 'web-tools'
342
425
  Requires-Dist: scrapegraph-py<2,>=1.12.0; extra == 'web-tools'
343
426
  Requires-Dist: sympy<2,>=1.13.3; extra == 'web-tools'
344
427
  Requires-Dist: tavily-python<0.6,>=0.5.0; extra == 'web-tools'
428
+ Requires-Dist: websockets<15.1,>=13.0; extra == 'web-tools'
345
429
  Requires-Dist: wikipedia<2,>=1; extra == 'web-tools'
346
430
  Requires-Dist: wolframalpha<6,>=5.0.0; extra == 'web-tools'
347
431
  Description-Content-Type: text/markdown
@@ -365,9 +449,14 @@ Description-Content-Type: text/markdown
365
449
  [![Star][star-image]][star-url]
366
450
  [![Package License][package-license-image]][package-license-url]
367
451
  [![PyPI Download][package-download-image]][package-download-url]
452
+ [![][join-us-image]][join-us]
368
453
 
369
454
  <a href="https://trendshift.io/repositories/649" target="_blank"><img src="https://trendshift.io/api/badge/repositories/649" alt="camel-ai/camel | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
370
455
 
456
+ [English](README.md) |
457
+ [简体中文](README.zh.md) |
458
+ [日本語](README.ja.md)
459
+
371
460
  </div>
372
461
 
373
462
 
@@ -392,19 +481,61 @@ Description-Content-Type: text/markdown
392
481
  <br>
393
482
 
394
483
 
395
- 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.
484
+ 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.
396
485
 
397
486
  🌟 Star CAMEL on GitHub and be instantly notified of new releases.
398
487
 
399
488
  </div>
400
489
 
401
490
  <div align="center">
402
- <img src="docs/images/star.gif" alt="Star" width="186" height="60">
491
+ <img src="docs/images/stars.gif" alt="Star">
403
492
  </a>
404
493
  </div>
405
494
 
406
495
  <br>
407
496
 
497
+ [![][image-join-us]][join-us]
498
+
499
+ <details>
500
+ <summary><kbd>Table of contents</kbd></summary>
501
+
502
+ <br/>
503
+
504
+ - [CAMEL Framework Design Principles](#camel-framework-design-principles)
505
+ - [Why Use CAMEL for Your Research?](#why-use-camel-for-your-research)
506
+ - [What Can You Build With CAMEL?](#what-can-you-build-with-camel)
507
+ - [Data Generation](#1-data-generation)
508
+ - [Task Automation](#2-task-automation)
509
+ - [World Simulation](#3-world-simulation)
510
+ - [Quick Start](#quick-start)
511
+ - [Starting with ChatAgent](#starting-with-chatagent)
512
+ - [Seeking Help](#seeking-help)
513
+ - [Tech Stack](#tech-stack)
514
+ - [Research](#research)
515
+ - [Synthetic Datasets](#synthetic-datasets)
516
+ - [Cookbooks (Usecases)](#cookbooks-usecases)
517
+ - [Basic Concepts](#1-basic-concepts)
518
+ - [Advanced Features](#2-advanced-features)
519
+ - [Model Training & Data Generation](#3-model-training--data-generation)
520
+ - [Multi-Agent Systems & Applications](#4-multi-agent-systems--applications)
521
+ - [Data Processing](#5-data-processing)
522
+ - [Real-World Usecases](#real-world-usecases)
523
+ - [🧱 Built with CAMEL (Real-world Producs & Research)](#-built-with-camel-real-world-producs--research)
524
+ - [Research Projects](#research-projects)
525
+ - [Product Projects](#product-projects)
526
+ - [🗓️ Events](#️-events)
527
+ - [Contributing to CAMEL](#contributing-to-camel)
528
+ - [Community & Contact](#community--contact)
529
+ - [Citation](#citation)
530
+ - [Acknowledgment](#acknowledgment)
531
+ - [License](#license)
532
+
533
+ ####
534
+
535
+ <br/>
536
+
537
+ </details>
538
+
408
539
 
409
540
  ## CAMEL Framework Design Principles
410
541
 
@@ -514,7 +645,7 @@ We are a community-driven research collective comprising over 100 researchers de
514
645
  </div>
515
646
 
516
647
  <div align="center">
517
- <a href="https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_rag.html">
648
+ <a href="https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_rag">
518
649
  <img src="docs/images/rag_pipeline.png" alt="RAG Pipeline">
519
650
  </a>
520
651
  </div>
@@ -554,6 +685,13 @@ This example demonstrates how to create a `ChatAgent` using the CAMEL framework
554
685
  export OPENAI_API_KEY='your_openai_api_key'
555
686
  ```
556
687
 
688
+ Alternatively, use a `.env` file:
689
+
690
+ ```bash
691
+ cp .env.example .env
692
+ # then edit .env and add your keys
693
+ ```
694
+
557
695
  3. **Run the following Python code:**
558
696
 
559
697
  ```python
@@ -593,10 +731,10 @@ We provide a [![Google Colab](https://colab.research.google.com/assets/colab-bad
593
731
 
594
732
  Explore different types of agents, their roles, and their applications.
595
733
 
596
- - **[Creating Your First Agent](https://docs.camel-ai.org/cookbooks/basic_concepts/create_your_first_agent.html)**
597
- - **[Creating Your First Agent Society](https://docs.camel-ai.org/cookbooks/basic_concepts/create_your_first_agents_society.html)**
598
- - **[Embodied Agents](https://docs.camel-ai.org/cookbooks/advanced_features/embodied_agents.html)**
599
- - **[Critic Agents](https://docs.camel-ai.org/cookbooks/advanced_features/critic_agents_and_tree_search.html)**
734
+ - **[Creating Your First Agent](https://docs.camel-ai.org/cookbooks/basic_concepts/create_your_first_agent)**
735
+ - **[Creating Your First Agent Society](https://docs.camel-ai.org/cookbooks/basic_concepts/create_your_first_agents_society)**
736
+ - **[Embodied Agents](https://docs.camel-ai.org/cookbooks/advanced_features/embodied_agents)**
737
+ - **[Critic Agents](https://docs.camel-ai.org/cookbooks/advanced_features/critic_agents_and_tree_search)**
600
738
 
601
739
  ### Seeking Help
602
740
 
@@ -617,19 +755,19 @@ Core components and utilities to build, operate, and enhance CAMEL-AI agents and
617
755
 
618
756
  | Module | Description |
619
757
  |:---|:---|
620
- | **[Agents](https://docs.camel-ai.org/key_modules/agents.html)** | Core agent architectures and behaviors for autonomous operation. |
621
- | **[Agent Societies](https://docs.camel-ai.org/key_modules/society.html)** | Components for building and managing multi-agent systems and collaboration. |
622
- | **[Data Generation](https://docs.camel-ai.org/key_modules/datagen.html)** | Tools and methods for synthetic data creation and augmentation. |
623
- | **[Models](https://docs.camel-ai.org/key_modules/models.html)** | Model architectures and customization options for agent intelligence. |
624
- | **[Tools](https://docs.camel-ai.org/key_modules/tools.html)** | Tools integration for specialized agent tasks. |
625
- | **[Memory](https://docs.camel-ai.org/key_modules/memory.html)** | Memory storage and retrieval mechanisms for agent state management. |
626
- | **[Storage](https://docs.camel-ai.org/key_modules/storages.html)** | Persistent storage solutions for agent data and states. |
758
+ | **[Agents](https://docs.camel-ai.org/key_modules/agents)** | Core agent architectures and behaviors for autonomous operation. |
759
+ | **[Agent Societies](https://docs.camel-ai.org/key_modules/society)** | Components for building and managing multi-agent systems and collaboration. |
760
+ | **[Data Generation](https://docs.camel-ai.org/key_modules/datagen)** | Tools and methods for synthetic data creation and augmentation. |
761
+ | **[Models](https://docs.camel-ai.org/key_modules/models)** | Model architectures and customization options for agent intelligence. |
762
+ | **[Tools](https://docs.camel-ai.org/key_modules/tools)** | Tools integration for specialized agent tasks. |
763
+ | **[Memory](https://docs.camel-ai.org/key_modules/memory)** | Memory storage and retrieval mechanisms for agent state management. |
764
+ | **[Storage](https://docs.camel-ai.org/key_modules/storages)** | Persistent storage solutions for agent data and states. |
627
765
  | **[Benchmarks](https://github.com/camel-ai/camel/tree/master/camel/benchmarks)** | Performance evaluation and testing frameworks. |
628
- | **[Interpreters](https://docs.camel-ai.org/key_modules/interpreters.html)** | Code and command interpretation capabilities. |
629
- | **[Data Loaders](https://docs.camel-ai.org/key_modules/loaders.html)** | Data ingestion and preprocessing tools. |
630
- | **[Retrievers](https://docs.camel-ai.org/key_modules/retrievers.html)** | Knowledge retrieval and RAG components. |
766
+ | **[Interpreters](https://docs.camel-ai.org/key_modules/interpreters)** | Code and command interpretation capabilities. |
767
+ | **[Data Loaders](https://docs.camel-ai.org/key_modules/loaders)** | Data ingestion and preprocessing tools. |
768
+ | **[Retrievers](https://docs.camel-ai.org/key_modules/retrievers)** | Knowledge retrieval and RAG components. |
631
769
  | **[Runtime](https://github.com/camel-ai/camel/tree/master/camel/runtime)** | Execution environment and process management. |
632
- | **[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. |
770
+ | **[Human-in-the-Loop](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_human_in_loop_and_tool_approval)** | Interactive components for human oversight and intervention. |
633
771
  ---
634
772
 
635
773
  ## Research
@@ -638,6 +776,18 @@ We believe that studying these agents on a large scale offers valuable insights
638
776
 
639
777
  **Explore our research projects:**
640
778
 
779
+ <div align="center">
780
+ <a href="https://github.com/camel-ai/owl">
781
+ <img src="docs/images/owl.png" alt="OWL">
782
+ </a>
783
+ </div>
784
+
785
+ <div align="center">
786
+ <a href="https://oasis.camel-ai.org/">
787
+ <img src="docs/images/oasis.png" alt="OASIS">
788
+ </a>
789
+ </div>
790
+
641
791
  <div align="center">
642
792
  <a href="https://crab.camel-ai.org/">
643
793
  <img src="docs/images/crab.png" alt="CRAB">
@@ -645,14 +795,14 @@ We believe that studying these agents on a large scale offers valuable insights
645
795
  </div>
646
796
 
647
797
  <div align="center">
648
- <a href="https://agent-trust.camel-ai.org/">
649
- <img src="docs/images/agent_trust.png" alt="Agent Trust">
798
+ <a href="https://github.com/camel-ai/loong">
799
+ <img src="docs/images/loong.png" alt="Loong">
650
800
  </a>
651
801
  </div>
652
802
 
653
803
  <div align="center">
654
- <a href="https://oasis.camel-ai.org/">
655
- <img src="docs/images/oasis.png" alt="OASIS">
804
+ <a href="https://agent-trust.camel-ai.org/">
805
+ <img src="docs/images/agent_trust.png" alt="Agent Trust">
656
806
  </a>
657
807
  </div>
658
808
 
@@ -664,7 +814,7 @@ We believe that studying these agents on a large scale offers valuable insights
664
814
 
665
815
  >### Research with US
666
816
  >
667
- >We warmly invite you to use CAMEL for your impactful research.
817
+ >We warmly invite you to use CAMEL for your impactful research.
668
818
  >
669
819
  > 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.
670
820
  >
@@ -678,7 +828,7 @@ We believe that studying these agents on a large scale offers valuable insights
678
828
 
679
829
  ### 1. Utilize Various LLMs as Backends
680
830
 
681
- For more details, please see our [`Models Documentation`](https://docs.camel-ai.org/key_modules/models.html#).
831
+ For more details, please see our [`Models Documentation`](https://docs.camel-ai.org/key_modules/models#).
682
832
 
683
833
  > **Data (Hosted on Hugging Face)**
684
834
 
@@ -707,46 +857,119 @@ Practical guides and tutorials for implementing specific functionalities in CAME
707
857
  ### 1. Basic Concepts
708
858
  | Cookbook | Description |
709
859
  |:---|:---|
710
- | **[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. |
711
- | **[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. |
712
- | **[Message Cookbook](https://docs.camel-ai.org/cookbooks/basic_concepts/agents_message.html)** | Best practices for message handling in agents. |
860
+ | **[Creating Your First Agent](https://docs.camel-ai.org/cookbooks/basic_concepts/create_your_first_agent)** | A step-by-step guide to building your first agent. |
861
+ | **[Creating Your First Agent Society](https://docs.camel-ai.org/cookbooks/basic_concepts/create_your_first_agents_society)** | Learn to build a collaborative society of agents. |
862
+ | **[Message Cookbook](https://docs.camel-ai.org/cookbooks/basic_concepts/agents_message)** | Best practices for message handling in agents. |
713
863
 
714
864
  ### 2. Advanced Features
715
865
  | Cookbook | Description |
716
866
  |:---|:---|
717
- | **[Tools Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_tools.html)** | Integrating tools for enhanced functionality. |
718
- | **[Memory Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_memory.html)** | Implementing memory systems in agents. |
719
- | **[RAG Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_rag.html)** | Recipes for Retrieval-Augmented Generation. |
720
- | **[Graph RAG Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_graph_rag.html)** | Leveraging knowledge graphs with RAG. |
721
- | **[Track CAMEL Agents with AgentOps](https://docs.camel-ai.org/cookbooks/advanced_features/agents_tracking.html)** | Tools for tracking and managing agents in operations. |
867
+ | **[Tools Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_tools)** | Integrating tools for enhanced functionality. |
868
+ | **[Memory Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_memory)** | Implementing memory systems in agents. |
869
+ | **[RAG Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_rag)** | Recipes for Retrieval-Augmented Generation. |
870
+ | **[Graph RAG Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_graph_rag)** | Leveraging knowledge graphs with RAG. |
871
+ | **[Track CAMEL Agents with AgentOps](https://docs.camel-ai.org/cookbooks/advanced_features/agents_tracking)** | Tools for tracking and managing agents in operations. |
722
872
 
723
873
  ### 3. Model Training & Data Generation
724
874
  | Cookbook | Description |
725
875
  |:---|:---|
726
- | **[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. |
727
- | **[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. |
728
- | **[CoT Data Generation and Upload Data to Huggingface](https://docs.camel-ai.org/cookbooks/data_generation/distill_math_reasoning_data_from_deepseek_r1.html)** | Uncover how to generate CoT data with CAMEL and seamlessly upload it to Huggingface. |
729
- | **[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. |
876
+ | **[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)** | Learn how to generate data with CAMEL and fine-tune models effectively with Unsloth. |
877
+ | **[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)** | Explore how to generate data with real function calls and the Hermes format. |
878
+ | **[CoT Data Generation and Upload Data to Huggingface](https://docs.camel-ai.org/cookbooks/data_generation/distill_math_reasoning_data_from_deepseek_r1)** | Uncover how to generate CoT data with CAMEL and seamlessly upload it to Huggingface. |
879
+ | **[CoT Data Generation and SFT Qwen with Unsolth](https://docs.camel-ai.org/cookbooks/data_generation/cot_data_gen_sft_qwen_unsolth_upload_huggingface)** | Discover how to generate CoT data using CAMEL and SFT Qwen with Unsolth, and seamlessly upload your data and model to Huggingface. |
730
880
 
731
881
  ### 4. Multi-Agent Systems & Applications
732
882
  | Cookbook | Description |
733
883
  |:---|:---|
734
- | **[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. |
735
- | **[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. |
736
- | **[Dynamic Knowledge Graph Role-Playing: Multi-Agent System with dynamic, temporally-aware knowledge graphs](https://docs.camel-ai.org/cookbooks/applications/dyamic_knowledge_graph.html)** | Builds dynamic, temporally-aware knowledge graphs for financial applications using a multi-agent system. It processes financial reports, news articles, and research papers to help traders analyze data, identify relationships, and uncover market insights. The system also utilizes diverse and optional element node deduplication techniques to ensure data integrity and optimize graph structure for financial decision-making. |
737
- | **[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. |
738
- | **[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. |
884
+ | **[Role-Playing Scraper for Report & Knowledge Graph Generation](https://docs.camel-ai.org/cookbooks/applications/roleplaying_scraper)** | Create role-playing agents for data scraping and reporting. |
885
+ | **[Create A Hackathon Judge Committee with Workforce](https://docs.camel-ai.org/cookbooks/multi_agent_society/workforce_judge_committee)** | Building a team of agents for collaborative judging. |
886
+ | **[Dynamic Knowledge Graph Role-Playing: Multi-Agent System with dynamic, temporally-aware knowledge graphs](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_dkg)** | Builds dynamic, temporally-aware knowledge graphs for financial applications using a multi-agent system. It processes financial reports, news articles, and research papers to help traders analyze data, identify relationships, and uncover market insights. The system also utilizes diverse and optional element node deduplication techniques to ensure data integrity and optimize graph structure for financial decision-making. |
887
+ | **[Customer Service Discord Bot with Agentic RAG](https://docs.camel-ai.org/cookbooks/applications/customer_service_Discord_bot_using_SambaNova_with_agentic_RAG)** | Learn how to build a robust customer service bot for Discord using Agentic RAG. |
888
+ | **[Customer Service Discord Bot with Local Model](https://docs.camel-ai.org/cookbooks/applications/customer_service_Discord_bot_using_local_model_with_agentic_RAG)** | Learn how to build a robust customer service bot for Discord using Agentic RAG which supports local deployment. |
739
889
 
740
890
  ### 5. Data Processing
741
891
  | Cookbook | Description |
742
892
  |:---|:---|
743
- | **[Video Analysis](https://docs.camel-ai.org/cookbooks/data_processing/video_analysis.html)** | Techniques for agents in video data analysis. |
744
- | **[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. |
745
- | **[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. |
893
+ | **[Video Analysis](https://docs.camel-ai.org/cookbooks/data_processing/video_analysis)** | Techniques for agents in video data analysis. |
894
+ | **[3 Ways to Ingest Data from Websites with Firecrawl](https://docs.camel-ai.org/cookbooks/data_processing/ingest_data_from_websites_with_Firecrawl)** | Explore three methods for extracting and processing data from websites using Firecrawl. |
895
+ | **[Create AI Agents that work with your PDFs](https://docs.camel-ai.org/cookbooks/data_processing/agent_with_chunkr_for_pdf_parsing)** | Learn how to create AI agents that work with your PDFs using Chunkr and Mistral AI. |
896
+
897
+ <br>
898
+
899
+ ## Real-World Usecases
900
+
901
+ Real-world usecases demonstrating how CAMEL’s multi-agent framework enables real business value across infrastructure automation, productivity workflows, retrieval-augmented conversations, intelligent document/video analysis, and collaborative research.
746
902
 
903
+ ### 1 Infrastructure Automation
904
+
905
+ | Usecase | Description |
906
+ | :----------------------------------------------------------- | :----------------------------------------------------------- |
907
+ | **[ACI MCP](https://github.com/camel-ai/camel/tree/master/examples/usecases/aci_mcp)** | Real-world usecases demonstrating how CAMEL’s multi-agent framework enables real business value across infrastructure automation, productivity workflows, retrieval-augmented conversations, intelligent document/video analysis, and collaborative research. |
908
+ | **[Cloudflare MCP CAMEL](https://github.com/camel-ai/camel/tree/master/examples/usecases/cloudfare_mcp_camel)** | Intelligent agents manage Cloudflare resources dynamically, enabling scalable and efficient cloud security and performance tuning. |
909
+
910
+ ### 2 Productivity & Business Workflows
911
+
912
+ | Usecase | Description |
913
+ | :----------------------------------------------------------- | :----------------------------------------------------------- |
914
+ | **[Airbnb MCP](https://github.com/camel-ai/camel/tree/master/examples/usecases/airbnb_mcp)** | Coordinate agents to optimize and manage Airbnb listings and host operations. |
915
+ | **[PPTX Toolkit Usecase](https://github.com/camel-ai/camel/tree/master/examples/usecases/pptx_toolkit_usecase)** | Analyze PowerPoint documents and extract structured insights through multi-agent collaboration. |
916
+
917
+ ### 3 Retrieval-Augmented Multi-Agent Chat
918
+
919
+ | Usecase | Description |
920
+ | :----------------------------------------------------------- | :----------------------------------------------------------- |
921
+ | **[Chat with GitHub](https://github.com/camel-ai/camel/tree/master/examples/usecases/chat_with_github)** | Query and understand GitHub codebases through CAMEL agents leveraging RAG-style workflows, accelerating developer onboarding and codebase navigation. |
922
+ | **[Chat with YouTube](https://github.com/camel-ai/camel/tree/master/examples/usecases/chat_with_youtube)** | Conversational agents extract and summarize video transcripts, enabling faster content understanding and repurposing. |
923
+
924
+ ### 4 Video & Document Intelligence
925
+
926
+ | Usecase | Description |
927
+ | :----------------------------------------------------------- | :----------------------------------------------------------- |
928
+ | **[YouTube OCR](https://github.com/camel-ai/camel/tree/master/examples/usecases/youtube_ocr)** | Agents perform OCR on video screenshots to summarize visual content, supporting media monitoring and compliance. |
929
+ | **[Mistral OCR](https://github.com/camel-ai/camel/tree/master/examples/usecases/mistral_OCR)** | CAMEL agents use OCR with Mistral to analyze documents, reducing manual effort in document understanding workflows. |
930
+
931
+ ### 5 Research & Collaboration
932
+
933
+ | Usecase | Description |
934
+ | :----------------------------------------------------------- | :----------------------------------------------------------- |
935
+ | **[Multi-Agent Research Assistant](https://github.com/camel-ai/camel/tree/master/examples/usecases/multi_agent_research_assistant)** | Simulates a team of research agents collaborating on literature review, improving efficiency in exploratory analysis and reporting. |
747
936
 
748
937
  <br>
749
938
 
939
+ ## 🧱 Built with CAMEL (Real-world Producs & Research)
940
+ <div align="left">
941
+ <a href="https://www.camel-ai.org/">
942
+ <img src="docs/images/built_with_CAMEL.png" alt="Built with CAMEL" height="40px">
943
+ </a>
944
+ </div>
945
+
946
+ ### Research Projects
947
+
948
+ | Name | Description |
949
+ |:---|:---|
950
+ | **[ChatDev](https://github.com/OpenBMB/ChatDev/tree/main/camel)** | Communicative Agents for software Development |
951
+ | **[Paper2Poster](https://github.com/Paper2Poster/Paper2Poster)** | Multimodal poster automation from scientific papers |
952
+ | **[Paper2Video](https://github.com/showlab/Paper2Video)** | Automatic video generation from scientific papers |
953
+
954
+ ### Product Projects
955
+
956
+ | Name | Description |
957
+ |:---|:---|
958
+ | **[Eigent](https://www.eigent.ai/)** | The World First Multi-agent Workforce |
959
+
960
+
961
+ ## 🗓️ Events
962
+
963
+ We are actively involved in community events including:
964
+
965
+ - 🎙️ **Community Meetings** — Weekly virtual syncs with the CAMEL team
966
+ - 🏆 **Competitions** — Hackathons, Bounty Tasks and coding challenges hosted by CAMEL
967
+ - 🤝 **Volunteer Activities** — Contributions, documentation drives, and mentorship
968
+ - 🌍 **Ambassador Programs** — Represent CAMEL in your university or local tech groups
969
+
970
+ > Want to host or participate in a CAMEL event? Join our [Discord](https://discord.com/invite/CNcNpquyDc) or want to be part of [Ambassador Program](https://www.camel-ai.org/ambassador).
971
+
972
+
750
973
 
751
974
  ## Contributing to CAMEL
752
975
 
@@ -754,27 +977,32 @@ Practical guides and tutorials for implementing specific functionalities in CAME
754
977
  >
755
978
  > 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!
756
979
 
757
- <br>
980
+ ## Contributors
758
981
 
759
- ## Community & Contact
760
- For more information please contact camel-ai@eigent.ai
982
+ <a href="https://github.com/camel-ai/camel/graphs/contributors">
983
+ <img src="https://contrib.rocks/image?repo=camel-ai/camel" />
984
+ </a>
761
985
 
762
- - **GitHub Issues:** Report bugs, request features, and track development. [Submit an issue](https://github.com/camel-ai/camel/issues)
986
+ Made with [contrib.rocks](https://contrib.rocks).
763
987
 
764
- - **Discord:** Get real-time support, chat with the community, and stay updated. [Join us](https://discord.camel-ai.org/)
988
+ <br>
765
989
 
766
- - **X (Twitter):** Follow for updates, AI insights, and key announcements. [Follow us](https://x.com/CamelAIOrg)
990
+ ## Acknowledgment
767
991
 
768
- - **Ambassador Project:** Advocate for CAMEL-AI, host events, and contribute content. [Learn more](https://www.camel-ai.org/community)
992
+ Special thanks to [Nomic AI](https://home.nomic.ai/) for giving us extended access to their data set exploration tool (Atlas).
769
993
 
770
- - **WeChat Community:** Scan the QR code below to join our WeChat community.
994
+ We would also like to thank Haya Hammoud for designing the initial logo of our project.
771
995
 
772
- <div align="center">
773
- <img src="misc/wechat.jpeg" alt="WeChat QR Code" width="200">
774
- </div>
996
+ 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:
997
+ - `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)]
775
998
 
999
+ - `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)]
776
1000
 
777
- <br>
1001
+ - `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)]
1002
+
1003
+ ## License
1004
+
1005
+ The source code is licensed under Apache 2.0.
778
1006
 
779
1007
  ## Citation
780
1008
  ```
@@ -786,27 +1014,34 @@ For more information please contact camel-ai@eigent.ai
786
1014
  }
787
1015
  ```
788
1016
 
789
- ## Acknowledgment
790
- Special thanks to [Nomic AI](https://home.nomic.ai/) for giving us extended access to their data set exploration tool (Atlas).
1017
+ Here is an example of how to cite our work:
1018
+ ```
1019
+ We use the CAMEL framework \cite{li2023camel} to develop the agents used in our experiments.
1020
+ ```
791
1021
 
792
- We would also like to thank Haya Hammoud for designing the initial logo of our project.
1022
+ ## Community & Contact
793
1023
 
794
- 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:
795
- - `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)]
1024
+ For more information please contact camel-ai@eigent.ai
796
1025
 
797
- - `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)]
1026
+ - **GitHub Issues:** Report bugs, request features, and track development. [Submit an issue](https://github.com/camel-ai/camel/issues)
798
1027
 
799
- - `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)]
1028
+ - **Discord:** Get real-time support, chat with the community, and stay updated. [Join us](https://discord.camel-ai.org/)
800
1029
 
1030
+ - **X (Twitter):** Follow for updates, AI insights, and key announcements. [Follow us](https://x.com/CamelAIOrg)
801
1031
 
802
- ## License
1032
+ - **Ambassador Project:** Advocate for CAMEL-AI, host events, and contribute content. [Learn more](https://www.camel-ai.org/community)
1033
+
1034
+ - **WeChat Community:** Scan the QR code below to join our WeChat community.
1035
+
1036
+ <div align="center">
1037
+ <img src="misc/wechat.jpeg" alt="WeChat QR Code" width="200">
1038
+ </div>
803
1039
 
804
- The source code is licensed under Apache 2.0.
805
1040
 
806
1041
  <br>
807
1042
 
808
1043
  [docs-image]: https://img.shields.io/badge/Documentation-EB3ECC
809
- [docs-url]: https://camel-ai.github.io/camel/index.html
1044
+ [docs-url]: https://camel-ai.github.io/camel/index
810
1045
  [star-image]: https://img.shields.io/github/stars/camel-ai/camel?label=stars&logo=github&color=brightgreen
811
1046
  [star-url]: https://github.com/camel-ai/camel/stargazers
812
1047
  [package-license-image]: https://img.shields.io/badge/License-Apache_2.0-blue.svg
@@ -827,4 +1062,7 @@ The source code is licensed under Apache 2.0.
827
1062
  [reddit-url]: https://www.reddit.com/r/CamelAI/
828
1063
  [reddit-image]: https://img.shields.io/reddit/subreddit-subscribers/CamelAI?style=plastic&logo=reddit&label=r%2FCAMEL&labelColor=white
829
1064
  [ambassador-url]: https://www.camel-ai.org/community
830
- [package-download-url]: https://pypi.org/project/camel-ai
1065
+ [package-download-url]: https://pypi.org/project/camel-ai
1066
+ [join-us]:https://eigent-ai.notion.site/eigent-ai-careers
1067
+ [join-us-image]:https://img.shields.io/badge/Join%20Us-yellow?style=plastic
1068
+ [image-join-us]: https://camel-ai.github.io/camel_asset/graphics/join_us.png