camel-ai 0.2.73a4__py3-none-any.whl → 0.2.80a2__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.
Files changed (173) hide show
  1. camel/__init__.py +1 -1
  2. camel/agents/_utils.py +38 -0
  3. camel/agents/chat_agent.py +2217 -519
  4. camel/agents/mcp_agent.py +30 -27
  5. camel/configs/__init__.py +15 -0
  6. camel/configs/aihubmix_config.py +88 -0
  7. camel/configs/amd_config.py +70 -0
  8. camel/configs/cometapi_config.py +104 -0
  9. camel/configs/minimax_config.py +93 -0
  10. camel/configs/nebius_config.py +103 -0
  11. camel/data_collectors/alpaca_collector.py +15 -6
  12. camel/datasets/base_generator.py +39 -10
  13. camel/environments/single_step.py +28 -3
  14. camel/environments/tic_tac_toe.py +1 -1
  15. camel/interpreters/__init__.py +2 -0
  16. camel/interpreters/docker/Dockerfile +3 -12
  17. camel/interpreters/e2b_interpreter.py +34 -1
  18. camel/interpreters/microsandbox_interpreter.py +395 -0
  19. camel/loaders/__init__.py +11 -2
  20. camel/loaders/chunkr_reader.py +9 -0
  21. camel/memories/agent_memories.py +48 -4
  22. camel/memories/base.py +26 -0
  23. camel/memories/blocks/chat_history_block.py +122 -4
  24. camel/memories/context_creators/score_based.py +25 -384
  25. camel/memories/records.py +88 -8
  26. camel/messages/base.py +153 -34
  27. camel/models/__init__.py +10 -0
  28. camel/models/aihubmix_model.py +83 -0
  29. camel/models/aiml_model.py +1 -16
  30. camel/models/amd_model.py +101 -0
  31. camel/models/anthropic_model.py +6 -19
  32. camel/models/aws_bedrock_model.py +2 -33
  33. camel/models/azure_openai_model.py +114 -89
  34. camel/models/base_audio_model.py +3 -1
  35. camel/models/base_model.py +32 -14
  36. camel/models/cohere_model.py +1 -16
  37. camel/models/cometapi_model.py +83 -0
  38. camel/models/crynux_model.py +1 -16
  39. camel/models/deepseek_model.py +1 -16
  40. camel/models/fish_audio_model.py +6 -0
  41. camel/models/gemini_model.py +36 -18
  42. camel/models/groq_model.py +1 -17
  43. camel/models/internlm_model.py +1 -16
  44. camel/models/litellm_model.py +1 -16
  45. camel/models/lmstudio_model.py +1 -17
  46. camel/models/minimax_model.py +83 -0
  47. camel/models/mistral_model.py +1 -16
  48. camel/models/model_factory.py +27 -1
  49. camel/models/modelscope_model.py +1 -16
  50. camel/models/moonshot_model.py +105 -24
  51. camel/models/nebius_model.py +83 -0
  52. camel/models/nemotron_model.py +0 -5
  53. camel/models/netmind_model.py +1 -16
  54. camel/models/novita_model.py +1 -16
  55. camel/models/nvidia_model.py +1 -16
  56. camel/models/ollama_model.py +4 -19
  57. camel/models/openai_compatible_model.py +62 -41
  58. camel/models/openai_model.py +62 -57
  59. camel/models/openrouter_model.py +1 -17
  60. camel/models/ppio_model.py +1 -16
  61. camel/models/qianfan_model.py +1 -16
  62. camel/models/qwen_model.py +1 -16
  63. camel/models/reka_model.py +1 -16
  64. camel/models/samba_model.py +34 -47
  65. camel/models/sglang_model.py +64 -31
  66. camel/models/siliconflow_model.py +1 -16
  67. camel/models/stub_model.py +0 -4
  68. camel/models/togetherai_model.py +1 -16
  69. camel/models/vllm_model.py +1 -16
  70. camel/models/volcano_model.py +0 -17
  71. camel/models/watsonx_model.py +1 -16
  72. camel/models/yi_model.py +1 -16
  73. camel/models/zhipuai_model.py +60 -16
  74. camel/parsers/__init__.py +18 -0
  75. camel/parsers/mcp_tool_call_parser.py +176 -0
  76. camel/retrievers/auto_retriever.py +1 -0
  77. camel/runtimes/daytona_runtime.py +11 -12
  78. camel/societies/__init__.py +2 -0
  79. camel/societies/workforce/__init__.py +2 -0
  80. camel/societies/workforce/events.py +122 -0
  81. camel/societies/workforce/prompts.py +146 -66
  82. camel/societies/workforce/role_playing_worker.py +15 -11
  83. camel/societies/workforce/single_agent_worker.py +302 -65
  84. camel/societies/workforce/structured_output_handler.py +30 -18
  85. camel/societies/workforce/task_channel.py +163 -27
  86. camel/societies/workforce/utils.py +107 -13
  87. camel/societies/workforce/workflow_memory_manager.py +772 -0
  88. camel/societies/workforce/workforce.py +1949 -579
  89. camel/societies/workforce/workforce_callback.py +74 -0
  90. camel/societies/workforce/workforce_logger.py +168 -145
  91. camel/societies/workforce/workforce_metrics.py +33 -0
  92. camel/storages/key_value_storages/json.py +15 -2
  93. camel/storages/key_value_storages/mem0_cloud.py +48 -47
  94. camel/storages/object_storages/google_cloud.py +1 -1
  95. camel/storages/vectordb_storages/oceanbase.py +13 -13
  96. camel/storages/vectordb_storages/qdrant.py +3 -3
  97. camel/storages/vectordb_storages/tidb.py +8 -6
  98. camel/tasks/task.py +4 -3
  99. camel/toolkits/__init__.py +20 -7
  100. camel/toolkits/aci_toolkit.py +45 -0
  101. camel/toolkits/base.py +6 -4
  102. camel/toolkits/code_execution.py +28 -1
  103. camel/toolkits/context_summarizer_toolkit.py +684 -0
  104. camel/toolkits/dappier_toolkit.py +5 -1
  105. camel/toolkits/dingtalk.py +1135 -0
  106. camel/toolkits/edgeone_pages_mcp_toolkit.py +11 -31
  107. camel/toolkits/excel_toolkit.py +1 -1
  108. camel/toolkits/{file_write_toolkit.py → file_toolkit.py} +430 -36
  109. camel/toolkits/function_tool.py +13 -3
  110. camel/toolkits/github_toolkit.py +104 -17
  111. camel/toolkits/gmail_toolkit.py +1839 -0
  112. camel/toolkits/google_calendar_toolkit.py +38 -4
  113. camel/toolkits/google_drive_mcp_toolkit.py +12 -31
  114. camel/toolkits/hybrid_browser_toolkit/config_loader.py +15 -0
  115. camel/toolkits/hybrid_browser_toolkit/hybrid_browser_toolkit.py +77 -8
  116. camel/toolkits/hybrid_browser_toolkit/hybrid_browser_toolkit_ts.py +884 -88
  117. camel/toolkits/hybrid_browser_toolkit/installer.py +203 -0
  118. camel/toolkits/hybrid_browser_toolkit/ts/package-lock.json +5 -612
  119. camel/toolkits/hybrid_browser_toolkit/ts/package.json +0 -1
  120. camel/toolkits/hybrid_browser_toolkit/ts/src/browser-session.ts +959 -89
  121. camel/toolkits/hybrid_browser_toolkit/ts/src/config-loader.ts +9 -2
  122. camel/toolkits/hybrid_browser_toolkit/ts/src/hybrid-browser-toolkit.ts +281 -213
  123. camel/toolkits/hybrid_browser_toolkit/ts/src/parent-child-filter.ts +226 -0
  124. camel/toolkits/hybrid_browser_toolkit/ts/src/snapshot-parser.ts +219 -0
  125. camel/toolkits/hybrid_browser_toolkit/ts/src/som-screenshot-injected.ts +543 -0
  126. camel/toolkits/hybrid_browser_toolkit/ts/src/types.ts +23 -3
  127. camel/toolkits/hybrid_browser_toolkit/ts/websocket-server.js +72 -7
  128. camel/toolkits/hybrid_browser_toolkit/ws_wrapper.py +582 -132
  129. camel/toolkits/hybrid_browser_toolkit_py/actions.py +158 -0
  130. camel/toolkits/hybrid_browser_toolkit_py/browser_session.py +55 -8
  131. camel/toolkits/hybrid_browser_toolkit_py/config_loader.py +43 -0
  132. camel/toolkits/hybrid_browser_toolkit_py/hybrid_browser_toolkit.py +321 -8
  133. camel/toolkits/hybrid_browser_toolkit_py/snapshot.py +10 -4
  134. camel/toolkits/hybrid_browser_toolkit_py/unified_analyzer.js +45 -4
  135. camel/toolkits/{openai_image_toolkit.py → image_generation_toolkit.py} +151 -53
  136. camel/toolkits/klavis_toolkit.py +5 -1
  137. camel/toolkits/markitdown_toolkit.py +27 -1
  138. camel/toolkits/math_toolkit.py +64 -10
  139. camel/toolkits/mcp_toolkit.py +366 -71
  140. camel/toolkits/memory_toolkit.py +5 -1
  141. camel/toolkits/message_integration.py +18 -13
  142. camel/toolkits/minimax_mcp_toolkit.py +195 -0
  143. camel/toolkits/note_taking_toolkit.py +19 -10
  144. camel/toolkits/notion_mcp_toolkit.py +16 -26
  145. camel/toolkits/openbb_toolkit.py +5 -1
  146. camel/toolkits/origene_mcp_toolkit.py +8 -49
  147. camel/toolkits/playwright_mcp_toolkit.py +12 -31
  148. camel/toolkits/resend_toolkit.py +168 -0
  149. camel/toolkits/search_toolkit.py +264 -91
  150. camel/toolkits/slack_toolkit.py +64 -10
  151. camel/toolkits/terminal_toolkit/__init__.py +18 -0
  152. camel/toolkits/terminal_toolkit/terminal_toolkit.py +957 -0
  153. camel/toolkits/terminal_toolkit/utils.py +532 -0
  154. camel/toolkits/vertex_ai_veo_toolkit.py +590 -0
  155. camel/toolkits/video_analysis_toolkit.py +17 -11
  156. camel/toolkits/wechat_official_toolkit.py +483 -0
  157. camel/toolkits/zapier_toolkit.py +5 -1
  158. camel/types/__init__.py +2 -2
  159. camel/types/enums.py +274 -7
  160. camel/types/openai_types.py +2 -2
  161. camel/types/unified_model_type.py +15 -0
  162. camel/utils/commons.py +36 -5
  163. camel/utils/constants.py +3 -0
  164. camel/utils/context_utils.py +1003 -0
  165. camel/utils/mcp.py +138 -4
  166. camel/utils/token_counting.py +43 -20
  167. {camel_ai-0.2.73a4.dist-info → camel_ai-0.2.80a2.dist-info}/METADATA +223 -83
  168. {camel_ai-0.2.73a4.dist-info → camel_ai-0.2.80a2.dist-info}/RECORD +170 -141
  169. camel/loaders/pandas_reader.py +0 -368
  170. camel/toolkits/openai_agent_toolkit.py +0 -135
  171. camel/toolkits/terminal_toolkit.py +0 -1550
  172. {camel_ai-0.2.73a4.dist-info → camel_ai-0.2.80a2.dist-info}/WHEEL +0 -0
  173. {camel_ai-0.2.73a4.dist-info → camel_ai-0.2.80a2.dist-info}/licenses/LICENSE +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: camel-ai
3
- Version: 0.2.73a4
3
+ Version: 0.2.80a2
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,9 +9,10 @@ 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
15
16
  Requires-Dist: httpx<1.0.0dev,>=0.28.0
16
17
  Requires-Dist: jsonschema<5,>=4
17
18
  Requires-Dist: mcp>=1.3.0
@@ -20,6 +21,7 @@ Requires-Dist: pillow<11.0.0,>=10.1.0
20
21
  Requires-Dist: psutil<6,>=5.9.8
21
22
  Requires-Dist: pydantic>=2.10.6
22
23
  Requires-Dist: tiktoken<0.8,>=0.7.0
24
+ Requires-Dist: websockets<15.1,>=13.0
23
25
  Provides-Extra: all
24
26
  Requires-Dist: aci-sdk>=1.0.0b1; extra == 'all'
25
27
  Requires-Dist: agentops<0.4,>=0.3.21; extra == 'all'
@@ -32,14 +34,14 @@ Requires-Dist: azure-storage-blob<13,>=12.21.0; extra == 'all'
32
34
  Requires-Dist: beautifulsoup4<5,>=4; extra == 'all'
33
35
  Requires-Dist: botocore<2,>=1.35.3; extra == 'all'
34
36
  Requires-Dist: chromadb<1.0.0,>=0.6.0; extra == 'all'
35
- Requires-Dist: chunkr-ai>=0.0.50; extra == 'all'
37
+ Requires-Dist: chunkr-ai<0.1.0,>=0.0.50; extra == 'all'
36
38
  Requires-Dist: cohere<6,>=5.11.0; extra == 'all'
37
39
  Requires-Dist: crawl4ai>=0.4.0; extra == 'all'
38
40
  Requires-Dist: dappier<0.4,>=0.3.3; extra == 'all'
39
41
  Requires-Dist: datacommons-pandas<0.0.4,>=0.0.3; extra == 'all'
40
42
  Requires-Dist: datacommons<2,>=1.4.3; extra == 'all'
41
43
  Requires-Dist: datasets<4,>=3; extra == 'all'
42
- Requires-Dist: daytona-sdk==0.20.0; extra == 'all'
44
+ Requires-Dist: daytona-sdk>=0.20.0; extra == 'all'
43
45
  Requires-Dist: diffusers<0.26,>=0.25.0; extra == 'all'
44
46
  Requires-Dist: discord-py<3,>=2.3.2; extra == 'all'
45
47
  Requires-Dist: docker<8,>=7.1.0; extra == 'all'
@@ -52,16 +54,19 @@ Requires-Dist: faiss-cpu<2,>=1.7.2; extra == 'all'
52
54
  Requires-Dist: fastapi>=0.115.11; extra == 'all'
53
55
  Requires-Dist: ffmpeg-python<0.3,>=0.2.0; extra == 'all'
54
56
  Requires-Dist: firecrawl-py<2,>=1.0.0; extra == 'all'
55
- Requires-Dist: fish-audio-sdk<2025,>=2024.12.5; extra == 'all'
57
+ Requires-Dist: fish-audio-sdk>=1.0.0; extra == 'all'
56
58
  Requires-Dist: flask>=2.0; extra == 'all'
57
59
  Requires-Dist: google-api-python-client==2.166.0; extra == 'all'
58
60
  Requires-Dist: google-auth-httplib2==0.2.0; extra == 'all'
59
61
  Requires-Dist: google-auth-oauthlib==1.2.1; extra == 'all'
62
+ Requires-Dist: google-auth<3.0.0,>=2.0.0; extra == 'all'
63
+ Requires-Dist: google-cloud-aiplatform>=1.111.0; extra == 'all'
60
64
  Requires-Dist: google-cloud-storage<3,>=2.18.0; extra == 'all'
61
65
  Requires-Dist: google-genai>=1.13.0; extra == 'all'
62
66
  Requires-Dist: googlemaps<5,>=4.10.0; extra == 'all'
63
67
  Requires-Dist: gradio<4,>=3; extra == 'all'
64
68
  Requires-Dist: html2text>=2024.2.26; extra == 'all'
69
+ Requires-Dist: httplib2>=0.31.0; extra == 'all'
65
70
  Requires-Dist: ibm-watsonx-ai>=1.3.11; extra == 'all'
66
71
  Requires-Dist: imageio[pyav]<3,>=2.34.2; extra == 'all'
67
72
  Requires-Dist: ipykernel<7,>=6.0.0; extra == 'all'
@@ -69,29 +74,29 @@ Requires-Dist: jupyter-client<9,>=8.6.2; extra == 'all'
69
74
  Requires-Dist: langfuse>=2.60.5; extra == 'all'
70
75
  Requires-Dist: linkup-sdk<0.3,>=0.2.1; extra == 'all'
71
76
  Requires-Dist: litellm<2,>=1.38.1; extra == 'all'
72
- Requires-Dist: markitdown>=0.1.1; extra == 'all'
77
+ Requires-Dist: markitdown>=0.1.1; (python_version >= '3.13') and extra == 'all'
73
78
  Requires-Dist: math-verify<0.8,>=0.7.0; extra == 'all'
74
79
  Requires-Dist: mcp>=1.3.0; extra == 'all'
75
80
  Requires-Dist: mem0ai>=0.1.67; extra == 'all'
81
+ Requires-Dist: microsandbox>=0.1.8; extra == 'all'
76
82
  Requires-Dist: mistralai<2,>=1.1.0; extra == 'all'
77
83
  Requires-Dist: mock<6,>=5; extra == 'all'
78
84
  Requires-Dist: mypy<2,>=1.5.1; extra == 'all'
79
85
  Requires-Dist: nebula3-python==3.8.2; extra == 'all'
80
86
  Requires-Dist: neo4j<6,>=5.18.0; extra == 'all'
81
87
  Requires-Dist: networkx<4,>=3.4.2; extra == 'all'
82
- Requires-Dist: newspaper3k<0.3,>=0.2.8; extra == 'all'
83
88
  Requires-Dist: notion-client<3,>=2.2.1; extra == 'all'
84
89
  Requires-Dist: numpy<=2.2,>=1.2; extra == 'all'
85
- Requires-Dist: onnxruntime<=1.20.1; extra == 'all'
90
+ Requires-Dist: onnxruntime<=1.19.2; extra == 'all'
86
91
  Requires-Dist: openapi-spec-validator<0.8,>=0.7.1; extra == 'all'
87
92
  Requires-Dist: openpyxl>=3.1.5; extra == 'all'
88
- Requires-Dist: pandas<2,>=1.5.3; extra == 'all'
89
- Requires-Dist: pandasai<3,>=2.3.0; extra == 'all'
93
+ Requires-Dist: pandas>=2; extra == 'all'
90
94
  Requires-Dist: pgvector<0.3,>=0.2.4; extra == 'all'
91
95
  Requires-Dist: playwright>=1.50.0; extra == 'all'
92
96
  Requires-Dist: prance<24,>=23.6.21.0; extra == 'all'
93
97
  Requires-Dist: praw<8,>=7.7.1; extra == 'all'
94
98
  Requires-Dist: pre-commit<4,>=3; extra == 'all'
99
+ Requires-Dist: protobuf>=6.0.0; extra == 'all'
95
100
  Requires-Dist: psycopg[binary]<4,>=3.1.18; extra == 'all'
96
101
  Requires-Dist: pyautogui<0.10,>=0.9.54; extra == 'all'
97
102
  Requires-Dist: pydub<0.26,>=0.25.1; extra == 'all'
@@ -99,7 +104,7 @@ Requires-Dist: pygithub<3,>=2.6.0; extra == 'all'
99
104
  Requires-Dist: pylatex>=1.4.2; extra == 'all'
100
105
  Requires-Dist: pymilvus<3,>=2.4.0; extra == 'all'
101
106
  Requires-Dist: pymupdf<2,>=1.22.5; extra == 'all'
102
- Requires-Dist: pyobvector>=0.1.18; extra == 'all'
107
+ Requires-Dist: pyobvector>=0.1.18; (python_version < '3.13') and extra == 'all'
103
108
  Requires-Dist: pyowm<4,>=3.3.0; extra == 'all'
104
109
  Requires-Dist: pytelegrambotapi<5,>=4.18.0; extra == 'all'
105
110
  Requires-Dist: pytesseract>=0.3.13; extra == 'all'
@@ -107,13 +112,14 @@ Requires-Dist: pytest-asyncio<0.24,>=0.23.0; extra == 'all'
107
112
  Requires-Dist: pytest-cov<5,>=4; extra == 'all'
108
113
  Requires-Dist: pytest<8,>=7; extra == 'all'
109
114
  Requires-Dist: python-pptx>=1.0.2; extra == 'all'
110
- Requires-Dist: pytidb-experimental==0.0.1.dev4; extra == 'all'
115
+ Requires-Dist: pytidb>=0.0.13; extra == 'all'
111
116
  Requires-Dist: qdrant-client<2,>=1.9.0; extra == 'all'
112
117
  Requires-Dist: rank-bm25<0.3,>=0.2.2; extra == 'all'
113
118
  Requires-Dist: redis<6,>=5.0.6; extra == 'all'
114
119
  Requires-Dist: reka-api<4,>=3.0.8; extra == 'all'
115
120
  Requires-Dist: reportlab>=4.4.2; extra == 'all'
116
121
  Requires-Dist: requests-oauthlib<2,>=1.3.1; extra == 'all'
122
+ Requires-Dist: resend<3,>=2.0.0; extra == 'all'
117
123
  Requires-Dist: rlcard<1.3.0,>=1.0.0; extra == 'all'
118
124
  Requires-Dist: rouge<2,>=1.0.1; extra == 'all'
119
125
  Requires-Dist: scenedetect>=0.6.5.2; extra == 'all'
@@ -129,7 +135,6 @@ Requires-Dist: sympy<2,>=1.13.3; extra == 'all'
129
135
  Requires-Dist: tabulate>=0.9.0; extra == 'all'
130
136
  Requires-Dist: tavily-python<0.6,>=0.5.0; extra == 'all'
131
137
  Requires-Dist: textblob<0.18,>=0.17.1; extra == 'all'
132
- Requires-Dist: traceroot==0.0.4a5; extra == 'all'
133
138
  Requires-Dist: transformers<5,>=4; extra == 'all'
134
139
  Requires-Dist: tree-sitter-python<0.24,>=0.23.6; extra == 'all'
135
140
  Requires-Dist: tree-sitter<0.24,>=0.23.2; extra == 'all'
@@ -140,7 +145,7 @@ Requires-Dist: types-pyyaml<7,>=6.0.12; extra == 'all'
140
145
  Requires-Dist: types-requests<3,>=2.31.0; extra == 'all'
141
146
  Requires-Dist: types-setuptools<70,>=69.2.0; extra == 'all'
142
147
  Requires-Dist: types-tqdm<5,>=4.66.0; extra == 'all'
143
- Requires-Dist: unstructured==0.16.20; extra == 'all'
148
+ Requires-Dist: unstructured==0.16.20; (python_version < '3.13') and extra == 'all'
144
149
  Requires-Dist: weaviate-client>=4.15.0; extra == 'all'
145
150
  Requires-Dist: websockets<15.1,>=13.0; extra == 'all'
146
151
  Requires-Dist: wikipedia<2,>=1; extra == 'all'
@@ -153,6 +158,7 @@ Requires-Dist: notion-client<3,>=2.2.1; extra == 'communication-tools'
153
158
  Requires-Dist: praw<8,>=7.7.1; extra == 'communication-tools'
154
159
  Requires-Dist: pygithub<3,>=2.6.0; extra == 'communication-tools'
155
160
  Requires-Dist: pytelegrambotapi<5,>=4.18.0; extra == 'communication-tools'
161
+ Requires-Dist: resend<3,>=2.0.0; extra == 'communication-tools'
156
162
  Requires-Dist: slack-bolt<2,>=1.20.1; extra == 'communication-tools'
157
163
  Requires-Dist: slack-sdk<4,>=3.27.2; extra == 'communication-tools'
158
164
  Provides-Extra: data-tools
@@ -162,7 +168,7 @@ Requires-Dist: datacommons<2,>=1.4.3; extra == 'data-tools'
162
168
  Requires-Dist: math-verify<0.8,>=0.7.0; extra == 'data-tools'
163
169
  Requires-Dist: networkx<4,>=3.4.2; extra == 'data-tools'
164
170
  Requires-Dist: numpy<=2.2,>=1.2; extra == 'data-tools'
165
- Requires-Dist: pandas<2,>=1.5.3; extra == 'data-tools'
171
+ Requires-Dist: pandas>=2; extra == 'data-tools'
166
172
  Requires-Dist: rouge<2,>=1.0.1; extra == 'data-tools'
167
173
  Requires-Dist: stripe<12,>=11.3.0; extra == 'data-tools'
168
174
  Requires-Dist: textblob<0.18,>=0.17.1; extra == 'data-tools'
@@ -187,14 +193,14 @@ Requires-Dist: uv<0.8,>=0.7.0; extra == 'dev'
187
193
  Provides-Extra: dev-tools
188
194
  Requires-Dist: aci-sdk>=1.0.0b1; extra == 'dev-tools'
189
195
  Requires-Dist: agentops<0.4,>=0.3.21; extra == 'dev-tools'
190
- Requires-Dist: daytona-sdk==0.20.0; extra == 'dev-tools'
196
+ Requires-Dist: daytona-sdk>=0.20.0; extra == 'dev-tools'
191
197
  Requires-Dist: docker<8,>=7.1.0; extra == 'dev-tools'
192
198
  Requires-Dist: e2b-code-interpreter<2,>=1.0.3; extra == 'dev-tools'
193
199
  Requires-Dist: ipykernel<7,>=6.0.0; extra == 'dev-tools'
194
200
  Requires-Dist: jupyter-client<9,>=8.6.2; extra == 'dev-tools'
195
201
  Requires-Dist: langfuse>=2.60.5; extra == 'dev-tools'
196
202
  Requires-Dist: mcp>=1.3.0; extra == 'dev-tools'
197
- Requires-Dist: traceroot==0.0.4a5; extra == 'dev-tools'
203
+ Requires-Dist: microsandbox>=0.1.8; extra == 'dev-tools'
198
204
  Requires-Dist: tree-sitter-python<0.24,>=0.23.6; extra == 'dev-tools'
199
205
  Requires-Dist: tree-sitter<0.24,>=0.23.2; extra == 'dev-tools'
200
206
  Requires-Dist: typer>=0.15.2; extra == 'dev-tools'
@@ -207,24 +213,56 @@ Requires-Dist: sphinx<8,>=7; extra == 'docs'
207
213
  Requires-Dist: sphinxext-rediraffe<0.3,>=0.2.7; extra == 'docs'
208
214
  Provides-Extra: document-tools
209
215
  Requires-Dist: beautifulsoup4<5,>=4; extra == 'document-tools'
210
- Requires-Dist: chunkr-ai>=0.0.50; extra == 'document-tools'
216
+ Requires-Dist: chunkr-ai<0.1.0,>=0.0.50; extra == 'document-tools'
211
217
  Requires-Dist: crawl4ai>=0.3.745; extra == 'document-tools'
212
218
  Requires-Dist: docx2txt<0.9,>=0.8; extra == 'document-tools'
213
219
  Requires-Dist: docx>=0.2.4; extra == 'document-tools'
214
- Requires-Dist: markitdown>=0.1.1; extra == 'document-tools'
220
+ Requires-Dist: markitdown>=0.1.1; (python_version >= '3.13') and extra == 'document-tools'
215
221
  Requires-Dist: numpy<=2.2,>=1.2; extra == 'document-tools'
216
- Requires-Dist: onnxruntime<=1.20.1; extra == 'document-tools'
222
+ Requires-Dist: onnxruntime<=1.19.2; extra == 'document-tools'
217
223
  Requires-Dist: openapi-spec-validator<0.8,>=0.7.1; extra == 'document-tools'
218
224
  Requires-Dist: openpyxl>=3.1.5; extra == 'document-tools'
219
- Requires-Dist: pandasai<3,>=2.3.0; extra == 'document-tools'
220
225
  Requires-Dist: prance<24,>=23.6.21.0; extra == 'document-tools'
221
226
  Requires-Dist: pylatex>=1.4.2; extra == 'document-tools'
222
227
  Requires-Dist: pymupdf<2,>=1.22.5; extra == 'document-tools'
223
228
  Requires-Dist: python-pptx>=1.0.2; extra == 'document-tools'
224
229
  Requires-Dist: reportlab>=4.4.2; extra == 'document-tools'
225
230
  Requires-Dist: tabulate>=0.9.0; extra == 'document-tools'
226
- Requires-Dist: unstructured==0.16.20; extra == 'document-tools'
231
+ Requires-Dist: unstructured==0.16.20; (python_version < '3.13') and extra == 'document-tools'
227
232
  Requires-Dist: xls2xlsx>=0.2.0; extra == 'document-tools'
233
+ Provides-Extra: eigent
234
+ Requires-Dist: anthropic<0.50.0,>=0.47.0; extra == 'eigent'
235
+ Requires-Dist: datasets<4,>=3; extra == 'eigent'
236
+ Requires-Dist: docx>=0.2.4; extra == 'eigent'
237
+ Requires-Dist: exa-py<2,>=1.10.0; extra == 'eigent'
238
+ Requires-Dist: ffmpeg-python<0.3,>=0.2.0; extra == 'eigent'
239
+ Requires-Dist: google-api-python-client==2.166.0; extra == 'eigent'
240
+ Requires-Dist: google-auth-httplib2==0.2.0; extra == 'eigent'
241
+ Requires-Dist: google-auth-oauthlib==1.2.1; extra == 'eigent'
242
+ Requires-Dist: httplib2>=0.31.0; extra == 'eigent'
243
+ Requires-Dist: imageio[pyav]<3,>=2.34.2; extra == 'eigent'
244
+ Requires-Dist: markitdown>=0.1.1; (python_version >= '3.13') and extra == 'eigent'
245
+ Requires-Dist: markitdown[all]>=0.1.1; (python_version < '3.13') and extra == 'eigent'
246
+ Requires-Dist: mcp-server-fetch==2025.1.17; extra == 'eigent'
247
+ Requires-Dist: mcp-simple-arxiv==0.2.2; extra == 'eigent'
248
+ Requires-Dist: numpy<=2.2,>=1.2; extra == 'eigent'
249
+ Requires-Dist: onnxruntime<=1.19.2; extra == 'eigent'
250
+ Requires-Dist: openpyxl>=3.1.5; extra == 'eigent'
251
+ Requires-Dist: pandas>=2; extra == 'eigent'
252
+ Requires-Dist: pydub<0.26,>=0.25.1; extra == 'eigent'
253
+ Requires-Dist: pylatex>=1.4.2; extra == 'eigent'
254
+ Requires-Dist: pytesseract>=0.3.13; extra == 'eigent'
255
+ Requires-Dist: python-dotenv<2,>=1.0.0; extra == 'eigent'
256
+ Requires-Dist: python-pptx>=1.0.2; extra == 'eigent'
257
+ Requires-Dist: reportlab>=4.4.2; extra == 'eigent'
258
+ Requires-Dist: requests-oauthlib<2,>=1.3.1; extra == 'eigent'
259
+ Requires-Dist: scenedetect>=0.6.5.2; extra == 'eigent'
260
+ Requires-Dist: slack-sdk<4,>=3.27.2; extra == 'eigent'
261
+ Requires-Dist: tabulate>=0.9.0; extra == 'eigent'
262
+ Requires-Dist: websockets<15.1,>=13.0; extra == 'eigent'
263
+ Requires-Dist: wikipedia<2,>=1; extra == 'eigent'
264
+ Requires-Dist: xls2xlsx>=0.2.0; extra == 'eigent'
265
+ Requires-Dist: yt-dlp<2025,>=2024.11.4; extra == 'eigent'
228
266
  Provides-Extra: huggingface
229
267
  Requires-Dist: datasets<4,>=3; extra == 'huggingface'
230
268
  Requires-Dist: diffusers<0.26,>=0.25.0; extra == 'huggingface'
@@ -242,7 +280,7 @@ Requires-Dist: yt-dlp<2025,>=2024.11.4; extra == 'media-tools'
242
280
  Provides-Extra: model-platforms
243
281
  Requires-Dist: anthropic<0.50.0,>=0.47.0; extra == 'model-platforms'
244
282
  Requires-Dist: cohere<6,>=5.11.0; extra == 'model-platforms'
245
- Requires-Dist: fish-audio-sdk<2025,>=2024.12.5; extra == 'model-platforms'
283
+ Requires-Dist: fish-audio-sdk>=1.0.0; extra == 'model-platforms'
246
284
  Requires-Dist: ibm-watsonx-ai>=1.3.11; extra == 'model-platforms'
247
285
  Requires-Dist: litellm<2,>=1.38.1; extra == 'model-platforms'
248
286
  Requires-Dist: mistralai<2,>=1.1.0; extra == 'model-platforms'
@@ -251,8 +289,8 @@ Provides-Extra: owl
251
289
  Requires-Dist: aci-sdk>=1.0.0b1; extra == 'owl'
252
290
  Requires-Dist: anthropic<0.50.0,>=0.47.0; extra == 'owl'
253
291
  Requires-Dist: beautifulsoup4<5,>=4; extra == 'owl'
292
+ Requires-Dist: chunkr-ai<0.1.0,>=0.0.50; extra == 'owl'
254
293
  Requires-Dist: chunkr-ai>=0.0.41; extra == 'owl'
255
- Requires-Dist: chunkr-ai>=0.0.50; extra == 'owl'
256
294
  Requires-Dist: crawl4ai>=0.3.745; extra == 'owl'
257
295
  Requires-Dist: datasets<4,>=3; extra == 'owl'
258
296
  Requires-Dist: docx2txt<0.9,>=0.8; extra == 'owl'
@@ -263,16 +301,14 @@ Requires-Dist: exa-py<2,>=1.10.0; extra == 'owl'
263
301
  Requires-Dist: ffmpeg-python<0.3,>=0.2.0; extra == 'owl'
264
302
  Requires-Dist: html2text>=2024.2.26; extra == 'owl'
265
303
  Requires-Dist: imageio[pyav]<3,>=2.34.2; extra == 'owl'
266
- Requires-Dist: markitdown>=0.1.1; extra == 'owl'
304
+ Requires-Dist: markitdown>=0.1.1; (python_version >= '3.13') and extra == 'owl'
267
305
  Requires-Dist: mcp-server-fetch==2025.1.17; extra == 'owl'
268
306
  Requires-Dist: mcp-simple-arxiv==0.2.2; extra == 'owl'
269
- Requires-Dist: newspaper3k<0.3,>=0.2.8; extra == 'owl'
270
307
  Requires-Dist: numpy<=2.2,>=1.2; extra == 'owl'
271
- Requires-Dist: onnxruntime<=1.20.1; extra == 'owl'
308
+ Requires-Dist: onnxruntime<=1.19.2; extra == 'owl'
272
309
  Requires-Dist: openapi-spec-validator<0.8,>=0.7.1; extra == 'owl'
273
310
  Requires-Dist: openpyxl>=3.1.5; extra == 'owl'
274
- Requires-Dist: pandas<2,>=1.5.3; extra == 'owl'
275
- Requires-Dist: pandasai<3,>=2.3.0; extra == 'owl'
311
+ Requires-Dist: pandas>=2; extra == 'owl'
276
312
  Requires-Dist: playwright>=1.50.0; extra == 'owl'
277
313
  Requires-Dist: prance<24,>=23.6.21.0; extra == 'owl'
278
314
  Requires-Dist: pyautogui<0.10,>=0.9.54; extra == 'owl'
@@ -294,14 +330,14 @@ Requires-Dist: transformers<5,>=4; extra == 'owl'
294
330
  Requires-Dist: tree-sitter-python<0.24,>=0.23.6; extra == 'owl'
295
331
  Requires-Dist: tree-sitter<0.24,>=0.23.2; extra == 'owl'
296
332
  Requires-Dist: typer>=0.15.2; extra == 'owl'
297
- Requires-Dist: unstructured==0.16.20; extra == 'owl'
333
+ Requires-Dist: unstructured==0.16.20; (python_version < '3.13') and extra == 'owl'
298
334
  Requires-Dist: websockets<15.1,>=13.0; extra == 'owl'
299
335
  Requires-Dist: wikipedia<2,>=1; extra == 'owl'
300
336
  Requires-Dist: xls2xlsx>=0.2.0; extra == 'owl'
301
337
  Requires-Dist: yt-dlp<2025,>=2024.11.4; extra == 'owl'
302
338
  Provides-Extra: rag
303
339
  Requires-Dist: chromadb<1.0.0,>=0.6.0; extra == 'rag'
304
- Requires-Dist: chunkr-ai>=0.0.50; extra == 'rag'
340
+ Requires-Dist: chunkr-ai<0.1.0,>=0.0.50; extra == 'rag'
305
341
  Requires-Dist: cohere<6,>=5.11.0; extra == 'rag'
306
342
  Requires-Dist: crawl4ai>=0.3.745; extra == 'rag'
307
343
  Requires-Dist: faiss-cpu<2,>=1.7.2; extra == 'rag'
@@ -309,13 +345,13 @@ Requires-Dist: google-genai>=1.13.0; extra == 'rag'
309
345
  Requires-Dist: nebula3-python==3.8.2; extra == 'rag'
310
346
  Requires-Dist: neo4j<6,>=5.18.0; extra == 'rag'
311
347
  Requires-Dist: numpy<=2.2,>=1.2; extra == 'rag'
312
- Requires-Dist: pandasai<3,>=2.3.0; extra == 'rag'
348
+ Requires-Dist: protobuf>=6.0.0; extra == 'rag'
313
349
  Requires-Dist: pymilvus<3,>=2.4.0; extra == 'rag'
314
- Requires-Dist: pyobvector>=0.1.18; extra == 'rag'
315
- Requires-Dist: pytidb-experimental==0.0.1.dev4; extra == 'rag'
350
+ Requires-Dist: pyobvector>=0.1.18; (python_version < '3.13') and extra == 'rag'
351
+ Requires-Dist: pytidb>=0.0.13; extra == 'rag'
316
352
  Requires-Dist: qdrant-client<2,>=1.9.0; extra == 'rag'
317
353
  Requires-Dist: rank-bm25<0.3,>=0.2.2; extra == 'rag'
318
- Requires-Dist: unstructured==0.16.20; extra == 'rag'
354
+ Requires-Dist: unstructured==0.16.20; (python_version < '3.13') and extra == 'rag'
319
355
  Requires-Dist: weaviate-client>=4.15.0; extra == 'rag'
320
356
  Provides-Extra: research-tools
321
357
  Requires-Dist: arxiv2text<0.2,>=0.1.14; extra == 'research-tools'
@@ -331,10 +367,11 @@ Requires-Dist: mem0ai>=0.1.73; extra == 'storage'
331
367
  Requires-Dist: nebula3-python==3.8.2; extra == 'storage'
332
368
  Requires-Dist: neo4j<6,>=5.18.0; extra == 'storage'
333
369
  Requires-Dist: pgvector<0.3,>=0.2.4; extra == 'storage'
370
+ Requires-Dist: protobuf>=6.0.0; extra == 'storage'
334
371
  Requires-Dist: psycopg[binary]<4,>=3.1.18; extra == 'storage'
335
372
  Requires-Dist: pymilvus<3,>=2.4.0; extra == 'storage'
336
- Requires-Dist: pyobvector>=0.1.18; extra == 'storage'
337
- Requires-Dist: pytidb-experimental==0.0.1.dev4; extra == 'storage'
373
+ Requires-Dist: pyobvector>=0.1.18; (python_version < '3.13') and extra == 'storage'
374
+ Requires-Dist: pytidb>=0.0.13; extra == 'storage'
338
375
  Requires-Dist: qdrant-client<2,>=1.9.0; extra == 'storage'
339
376
  Requires-Dist: redis<6,>=5.0.6; extra == 'storage'
340
377
  Requires-Dist: surrealdb>=1.0.6; extra == 'storage'
@@ -350,10 +387,10 @@ Requires-Dist: firecrawl-py<2,>=1.0.0; extra == 'web-tools'
350
387
  Requires-Dist: google-api-python-client==2.166.0; extra == 'web-tools'
351
388
  Requires-Dist: google-auth-httplib2==0.2.0; extra == 'web-tools'
352
389
  Requires-Dist: google-auth-oauthlib==1.2.1; extra == 'web-tools'
390
+ Requires-Dist: google-auth<3.0.0,>=2.0.0; extra == 'web-tools'
353
391
  Requires-Dist: googlemaps<5,>=4.10.0; extra == 'web-tools'
354
392
  Requires-Dist: html2text>=2024.2.26; extra == 'web-tools'
355
393
  Requires-Dist: linkup-sdk<0.3,>=0.2.1; extra == 'web-tools'
356
- Requires-Dist: newspaper3k<0.3,>=0.2.8; extra == 'web-tools'
357
394
  Requires-Dist: playwright>=1.50.0; extra == 'web-tools'
358
395
  Requires-Dist: pyowm<4,>=3.3.0; extra == 'web-tools'
359
396
  Requires-Dist: requests-oauthlib<2,>=1.3.1; extra == 'web-tools'
@@ -384,9 +421,14 @@ Description-Content-Type: text/markdown
384
421
  [![Star][star-image]][star-url]
385
422
  [![Package License][package-license-image]][package-license-url]
386
423
  [![PyPI Download][package-download-image]][package-download-url]
424
+ [![][join-us-image]][join-us]
387
425
 
388
426
  <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>
389
427
 
428
+ [English](README.md) |
429
+ [简体中文](README.zh.md) |
430
+ [日本語](README.ja.md)
431
+
390
432
  </div>
391
433
 
392
434
 
@@ -418,12 +460,54 @@ Join us ([*Discord*](https://discord.camel-ai.org/) or [*WeChat*](https://ghli.o
418
460
  </div>
419
461
 
420
462
  <div align="center">
421
- <img src="docs/images/star.gif" alt="Star" width="186" height="60">
463
+ <img src="docs/images/stars.gif" alt="Star">
422
464
  </a>
423
465
  </div>
424
466
 
425
467
  <br>
426
468
 
469
+ [![][image-join-us]][join-us]
470
+
471
+ <details>
472
+ <summary><kbd>Table of contents</kbd></summary>
473
+
474
+ <br/>
475
+
476
+ - [CAMEL Framework Design Principles](#camel-framework-design-principles)
477
+ - [Why Use CAMEL for Your Research?](#why-use-camel-for-your-research)
478
+ - [What Can You Build With CAMEL?](#what-can-you-build-with-camel)
479
+ - [Data Generation](#1-data-generation)
480
+ - [Task Automation](#2-task-automation)
481
+ - [World Simulation](#3-world-simulation)
482
+ - [Quick Start](#quick-start)
483
+ - [Starting with ChatAgent](#starting-with-chatagent)
484
+ - [Seeking Help](#seeking-help)
485
+ - [Tech Stack](#tech-stack)
486
+ - [Research](#research)
487
+ - [Synthetic Datasets](#synthetic-datasets)
488
+ - [Cookbooks (Usecases)](#cookbooks-usecases)
489
+ - [Basic Concepts](#1-basic-concepts)
490
+ - [Advanced Features](#2-advanced-features)
491
+ - [Model Training & Data Generation](#3-model-training--data-generation)
492
+ - [Multi-Agent Systems & Applications](#4-multi-agent-systems--applications)
493
+ - [Data Processing](#5-data-processing)
494
+ - [Real-World Usecases](#real-world-usecases)
495
+ - [🧱 Built with CAMEL (Real-world Producs & Research)](#-built-with-camel-real-world-producs--research)
496
+ - [Research Projects](#research-projects)
497
+ - [Product Projects](#product-projects)
498
+ - [🗓️ Events](#️-events)
499
+ - [Contributing to CAMEL](#contributing-to-camel)
500
+ - [Community & Contact](#community--contact)
501
+ - [Citation](#citation)
502
+ - [Acknowledgment](#acknowledgment)
503
+ - [License](#license)
504
+
505
+ ####
506
+
507
+ <br/>
508
+
509
+ </details>
510
+
427
511
 
428
512
  ## CAMEL Framework Design Principles
429
513
 
@@ -533,7 +617,7 @@ We are a community-driven research collective comprising over 100 researchers de
533
617
  </div>
534
618
 
535
619
  <div align="center">
536
- <a href="https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_rag.html">
620
+ <a href="https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_rag">
537
621
  <img src="docs/images/rag_pipeline.png" alt="RAG Pipeline">
538
622
  </a>
539
623
  </div>
@@ -573,6 +657,13 @@ This example demonstrates how to create a `ChatAgent` using the CAMEL framework
573
657
  export OPENAI_API_KEY='your_openai_api_key'
574
658
  ```
575
659
 
660
+ Alternatively, use a `.env` file:
661
+
662
+ ```bash
663
+ cp .env.example .env
664
+ # then edit .env and add your keys
665
+ ```
666
+
576
667
  3. **Run the following Python code:**
577
668
 
578
669
  ```python
@@ -612,10 +703,10 @@ We provide a [![Google Colab](https://colab.research.google.com/assets/colab-bad
612
703
 
613
704
  Explore different types of agents, their roles, and their applications.
614
705
 
615
- - **[Creating Your First Agent](https://docs.camel-ai.org/cookbooks/basic_concepts/create_your_first_agent.html)**
616
- - **[Creating Your First Agent Society](https://docs.camel-ai.org/cookbooks/basic_concepts/create_your_first_agents_society.html)**
617
- - **[Embodied Agents](https://docs.camel-ai.org/cookbooks/advanced_features/embodied_agents.html)**
618
- - **[Critic Agents](https://docs.camel-ai.org/cookbooks/advanced_features/critic_agents_and_tree_search.html)**
706
+ - **[Creating Your First Agent](https://docs.camel-ai.org/cookbooks/basic_concepts/create_your_first_agent)**
707
+ - **[Creating Your First Agent Society](https://docs.camel-ai.org/cookbooks/basic_concepts/create_your_first_agents_society)**
708
+ - **[Embodied Agents](https://docs.camel-ai.org/cookbooks/advanced_features/embodied_agents)**
709
+ - **[Critic Agents](https://docs.camel-ai.org/cookbooks/advanced_features/critic_agents_and_tree_search)**
619
710
 
620
711
  ### Seeking Help
621
712
 
@@ -636,19 +727,19 @@ Core components and utilities to build, operate, and enhance CAMEL-AI agents and
636
727
 
637
728
  | Module | Description |
638
729
  |:---|:---|
639
- | **[Agents](https://docs.camel-ai.org/key_modules/agents.html)** | Core agent architectures and behaviors for autonomous operation. |
640
- | **[Agent Societies](https://docs.camel-ai.org/key_modules/society.html)** | Components for building and managing multi-agent systems and collaboration. |
641
- | **[Data Generation](https://docs.camel-ai.org/key_modules/datagen.html)** | Tools and methods for synthetic data creation and augmentation. |
642
- | **[Models](https://docs.camel-ai.org/key_modules/models.html)** | Model architectures and customization options for agent intelligence. |
643
- | **[Tools](https://docs.camel-ai.org/key_modules/tools.html)** | Tools integration for specialized agent tasks. |
644
- | **[Memory](https://docs.camel-ai.org/key_modules/memory.html)** | Memory storage and retrieval mechanisms for agent state management. |
645
- | **[Storage](https://docs.camel-ai.org/key_modules/storages.html)** | Persistent storage solutions for agent data and states. |
730
+ | **[Agents](https://docs.camel-ai.org/key_modules/agents)** | Core agent architectures and behaviors for autonomous operation. |
731
+ | **[Agent Societies](https://docs.camel-ai.org/key_modules/society)** | Components for building and managing multi-agent systems and collaboration. |
732
+ | **[Data Generation](https://docs.camel-ai.org/key_modules/datagen)** | Tools and methods for synthetic data creation and augmentation. |
733
+ | **[Models](https://docs.camel-ai.org/key_modules/models)** | Model architectures and customization options for agent intelligence. |
734
+ | **[Tools](https://docs.camel-ai.org/key_modules/tools)** | Tools integration for specialized agent tasks. |
735
+ | **[Memory](https://docs.camel-ai.org/key_modules/memory)** | Memory storage and retrieval mechanisms for agent state management. |
736
+ | **[Storage](https://docs.camel-ai.org/key_modules/storages)** | Persistent storage solutions for agent data and states. |
646
737
  | **[Benchmarks](https://github.com/camel-ai/camel/tree/master/camel/benchmarks)** | Performance evaluation and testing frameworks. |
647
- | **[Interpreters](https://docs.camel-ai.org/key_modules/interpreters.html)** | Code and command interpretation capabilities. |
648
- | **[Data Loaders](https://docs.camel-ai.org/key_modules/loaders.html)** | Data ingestion and preprocessing tools. |
649
- | **[Retrievers](https://docs.camel-ai.org/key_modules/retrievers.html)** | Knowledge retrieval and RAG components. |
738
+ | **[Interpreters](https://docs.camel-ai.org/key_modules/interpreters)** | Code and command interpretation capabilities. |
739
+ | **[Data Loaders](https://docs.camel-ai.org/key_modules/loaders)** | Data ingestion and preprocessing tools. |
740
+ | **[Retrievers](https://docs.camel-ai.org/key_modules/retrievers)** | Knowledge retrieval and RAG components. |
650
741
  | **[Runtime](https://github.com/camel-ai/camel/tree/master/camel/runtime)** | Execution environment and process management. |
651
- | **[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. |
742
+ | **[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. |
652
743
  ---
653
744
 
654
745
  ## Research
@@ -657,6 +748,18 @@ We believe that studying these agents on a large scale offers valuable insights
657
748
 
658
749
  **Explore our research projects:**
659
750
 
751
+ <div align="center">
752
+ <a href="https://github.com/camel-ai/owl">
753
+ <img src="docs/images/owl.png" alt="OWL">
754
+ </a>
755
+ </div>
756
+
757
+ <div align="center">
758
+ <a href="https://oasis.camel-ai.org/">
759
+ <img src="docs/images/oasis.png" alt="OASIS">
760
+ </a>
761
+ </div>
762
+
660
763
  <div align="center">
661
764
  <a href="https://crab.camel-ai.org/">
662
765
  <img src="docs/images/crab.png" alt="CRAB">
@@ -664,14 +767,14 @@ We believe that studying these agents on a large scale offers valuable insights
664
767
  </div>
665
768
 
666
769
  <div align="center">
667
- <a href="https://agent-trust.camel-ai.org/">
668
- <img src="docs/images/agent_trust.png" alt="Agent Trust">
770
+ <a href="https://github.com/camel-ai/loong">
771
+ <img src="docs/images/loong.png" alt="Loong">
669
772
  </a>
670
773
  </div>
671
774
 
672
775
  <div align="center">
673
- <a href="https://oasis.camel-ai.org/">
674
- <img src="docs/images/oasis.png" alt="OASIS">
776
+ <a href="https://agent-trust.camel-ai.org/">
777
+ <img src="docs/images/agent_trust.png" alt="Agent Trust">
675
778
  </a>
676
779
  </div>
677
780
 
@@ -697,7 +800,7 @@ We believe that studying these agents on a large scale offers valuable insights
697
800
 
698
801
  ### 1. Utilize Various LLMs as Backends
699
802
 
700
- For more details, please see our [`Models Documentation`](https://docs.camel-ai.org/key_modules/models.html#).
803
+ For more details, please see our [`Models Documentation`](https://docs.camel-ai.org/key_modules/models#).
701
804
 
702
805
  > **Data (Hosted on Hugging Face)**
703
806
 
@@ -726,42 +829,42 @@ Practical guides and tutorials for implementing specific functionalities in CAME
726
829
  ### 1. Basic Concepts
727
830
  | Cookbook | Description |
728
831
  |:---|:---|
729
- | **[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. |
730
- | **[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. |
731
- | **[Message Cookbook](https://docs.camel-ai.org/cookbooks/basic_concepts/agents_message.html)** | Best practices for message handling in agents. |
832
+ | **[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. |
833
+ | **[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. |
834
+ | **[Message Cookbook](https://docs.camel-ai.org/cookbooks/basic_concepts/agents_message)** | Best practices for message handling in agents. |
732
835
 
733
836
  ### 2. Advanced Features
734
837
  | Cookbook | Description |
735
838
  |:---|:---|
736
- | **[Tools Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_tools.html)** | Integrating tools for enhanced functionality. |
737
- | **[Memory Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_memory.html)** | Implementing memory systems in agents. |
738
- | **[RAG Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_rag.html)** | Recipes for Retrieval-Augmented Generation. |
739
- | **[Graph RAG Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_graph_rag.html)** | Leveraging knowledge graphs with RAG. |
740
- | **[Track CAMEL Agents with AgentOps](https://docs.camel-ai.org/cookbooks/advanced_features/agents_tracking.html)** | Tools for tracking and managing agents in operations. |
839
+ | **[Tools Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_tools)** | Integrating tools for enhanced functionality. |
840
+ | **[Memory Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_memory)** | Implementing memory systems in agents. |
841
+ | **[RAG Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_rag)** | Recipes for Retrieval-Augmented Generation. |
842
+ | **[Graph RAG Cookbook](https://docs.camel-ai.org/cookbooks/advanced_features/agents_with_graph_rag)** | Leveraging knowledge graphs with RAG. |
843
+ | **[Track CAMEL Agents with AgentOps](https://docs.camel-ai.org/cookbooks/advanced_features/agents_tracking)** | Tools for tracking and managing agents in operations. |
741
844
 
742
845
  ### 3. Model Training & Data Generation
743
846
  | Cookbook | Description |
744
847
  |:---|:---|
745
- | **[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. |
746
- | **[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. |
747
- | **[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. |
748
- | **[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. |
848
+ | **[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. |
849
+ | **[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. |
850
+ | **[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. |
851
+ | **[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. |
749
852
 
750
853
  ### 4. Multi-Agent Systems & Applications
751
854
  | Cookbook | Description |
752
855
  |:---|:---|
753
- | **[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. |
754
- | **[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. |
755
- | **[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. |
756
- | **[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. |
757
- | **[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. |
856
+ | **[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. |
857
+ | **[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. |
858
+ | **[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. |
859
+ | **[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. |
860
+ | **[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. |
758
861
 
759
862
  ### 5. Data Processing
760
863
  | Cookbook | Description |
761
864
  |:---|:---|
762
- | **[Video Analysis](https://docs.camel-ai.org/cookbooks/data_processing/video_analysis.html)** | Techniques for agents in video data analysis. |
763
- | **[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. |
764
- | **[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. |
865
+ | **[Video Analysis](https://docs.camel-ai.org/cookbooks/data_processing/video_analysis)** | Techniques for agents in video data analysis. |
866
+ | **[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. |
867
+ | **[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. |
765
868
 
766
869
  <br>
767
870
 
@@ -805,6 +908,32 @@ Real-world usecases demonstrating how CAMEL’s multi-agent framework enables re
805
908
 
806
909
  <br>
807
910
 
911
+ ## 🧱 Built with CAMEL (Real-world Producs & Research)
912
+ <div align="left">
913
+ <a href="https://www.camel-ai.org/">
914
+ <img src="docs/images/built_with_CAMEL.png" alt="Built with CAMEL" height="40px">
915
+ </a>
916
+ </div>
917
+
918
+ ### Research Projects
919
+
920
+ | Name | Description |
921
+ |:---|:---|
922
+ | **[ChatDev](https://github.com/OpenBMB/ChatDev/tree/main/camel)** | Communicative Agents for software Development |
923
+ | **[Paper2Poster](https://github.com/Paper2Poster/Paper2Poster)** | Multimodal poster automation from scientific papers |
924
+ | **[Paper2Video](https://github.com/showlab/Paper2Video)** | Automatic video generation from scientific papers |
925
+
926
+ ### Product Projects
927
+
928
+ | Name | Description |
929
+ |:---|:---|
930
+ | **[Eigent](https://www.eigent.ai/)** | The World First Multi-agent Workforce |
931
+ | **[EigentBot](https://bot.eigent.ai/)** | One EigentBot,
932
+ Every Code Answer |
933
+ | **[Matrix](https://matrix.eigent.ai/)** | Social Media Simulation |
934
+ | **[AI Geometric](https://www.linkedin.com/posts/aigeometric_ai-interviewpreparation-careerdevelopment-activity-7261428422516555776-MtaK/?utm_source=share&utm_medium=member_desktop&rcm=ACoAAChHluEB9xRwkjiJ6VSAzqM2Y-U4NI2sKGY)** | AI-powered interview copilot |
935
+ | **[Log10](https://github.com/log10-io/log10/blob/main/src/log10/agents/camel.py)** | AI accuracy, delivered |
936
+
808
937
 
809
938
  ## 🗓️ Events
810
939
 
@@ -825,6 +954,14 @@ We are actively involved in community events including:
825
954
  >
826
955
  > 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!
827
956
 
957
+ ## Contributors
958
+
959
+ <a href="https://github.com/camel-ai/camel/graphs/contributors">
960
+ <img src="https://contrib.rocks/image?repo=camel-ai/camel" />
961
+ </a>
962
+
963
+ Made with [contrib.rocks](https://contrib.rocks).
964
+
828
965
  <br>
829
966
 
830
967
  ## Community & Contact
@@ -877,7 +1014,7 @@ The source code is licensed under Apache 2.0.
877
1014
  <br>
878
1015
 
879
1016
  [docs-image]: https://img.shields.io/badge/Documentation-EB3ECC
880
- [docs-url]: https://camel-ai.github.io/camel/index.html
1017
+ [docs-url]: https://camel-ai.github.io/camel/index
881
1018
  [star-image]: https://img.shields.io/github/stars/camel-ai/camel?label=stars&logo=github&color=brightgreen
882
1019
  [star-url]: https://github.com/camel-ai/camel/stargazers
883
1020
  [package-license-image]: https://img.shields.io/badge/License-Apache_2.0-blue.svg
@@ -898,4 +1035,7 @@ The source code is licensed under Apache 2.0.
898
1035
  [reddit-url]: https://www.reddit.com/r/CamelAI/
899
1036
  [reddit-image]: https://img.shields.io/reddit/subreddit-subscribers/CamelAI?style=plastic&logo=reddit&label=r%2FCAMEL&labelColor=white
900
1037
  [ambassador-url]: https://www.camel-ai.org/community
901
- [package-download-url]: https://pypi.org/project/camel-ai
1038
+ [package-download-url]: https://pypi.org/project/camel-ai
1039
+ [join-us]:https://eigent-ai.notion.site/eigent-ai-careers
1040
+ [join-us-image]:https://img.shields.io/badge/Join%20Us-yellow?style=plastic
1041
+ [image-join-us]: https://camel-ai.github.io/camel_asset/graphics/join_us.png