camel-ai 0.2.77__py3-none-any.whl → 0.2.79a0__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.
- camel/__init__.py +1 -1
- camel/agents/chat_agent.py +321 -325
- camel/datasets/base_generator.py +39 -10
- camel/environments/single_step.py +28 -3
- camel/memories/__init__.py +1 -2
- camel/memories/blocks/chat_history_block.py +2 -17
- camel/models/aws_bedrock_model.py +1 -17
- camel/models/moonshot_model.py +102 -5
- camel/societies/workforce/events.py +122 -0
- camel/societies/workforce/single_agent_worker.py +164 -34
- camel/societies/workforce/workforce.py +417 -156
- camel/societies/workforce/workforce_callback.py +74 -0
- camel/societies/workforce/workforce_logger.py +144 -140
- camel/societies/workforce/workforce_metrics.py +33 -0
- camel/toolkits/excel_toolkit.py +1 -1
- camel/toolkits/file_toolkit.py +3 -2
- camel/utils/context_utils.py +53 -0
- {camel_ai-0.2.77.dist-info → camel_ai-0.2.79a0.dist-info}/METADATA +23 -13
- {camel_ai-0.2.77.dist-info → camel_ai-0.2.79a0.dist-info}/RECORD +21 -18
- {camel_ai-0.2.77.dist-info → camel_ai-0.2.79a0.dist-info}/WHEEL +0 -0
- {camel_ai-0.2.77.dist-info → camel_ai-0.2.79a0.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.
|
|
3
|
+
Version: 0.2.79a0
|
|
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,7 +9,7 @@ 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.
|
|
12
|
+
Requires-Python: <3.15,>=3.10
|
|
13
13
|
Requires-Dist: astor>=0.8.1
|
|
14
14
|
Requires-Dist: colorama<0.5,>=0.4.6
|
|
15
15
|
Requires-Dist: docstring-parser<0.18,>=0.17.0
|
|
@@ -72,7 +72,7 @@ Requires-Dist: jupyter-client<9,>=8.6.2; extra == 'all'
|
|
|
72
72
|
Requires-Dist: langfuse>=2.60.5; extra == 'all'
|
|
73
73
|
Requires-Dist: linkup-sdk<0.3,>=0.2.1; extra == 'all'
|
|
74
74
|
Requires-Dist: litellm<2,>=1.38.1; extra == 'all'
|
|
75
|
-
Requires-Dist: markitdown>=0.1.1; extra == 'all'
|
|
75
|
+
Requires-Dist: markitdown>=0.1.1; (python_version >= '3.13') and extra == 'all'
|
|
76
76
|
Requires-Dist: math-verify<0.8,>=0.7.0; extra == 'all'
|
|
77
77
|
Requires-Dist: mcp>=1.3.0; extra == 'all'
|
|
78
78
|
Requires-Dist: mem0ai>=0.1.67; extra == 'all'
|
|
@@ -102,7 +102,7 @@ Requires-Dist: pygithub<3,>=2.6.0; extra == 'all'
|
|
|
102
102
|
Requires-Dist: pylatex>=1.4.2; extra == 'all'
|
|
103
103
|
Requires-Dist: pymilvus<3,>=2.4.0; extra == 'all'
|
|
104
104
|
Requires-Dist: pymupdf<2,>=1.22.5; extra == 'all'
|
|
105
|
-
Requires-Dist: pyobvector>=0.1.18; extra == 'all'
|
|
105
|
+
Requires-Dist: pyobvector>=0.1.18; (python_version < '3.13') and extra == 'all'
|
|
106
106
|
Requires-Dist: pyowm<4,>=3.3.0; extra == 'all'
|
|
107
107
|
Requires-Dist: pytelegrambotapi<5,>=4.18.0; extra == 'all'
|
|
108
108
|
Requires-Dist: pytesseract>=0.3.13; extra == 'all'
|
|
@@ -143,7 +143,7 @@ Requires-Dist: types-pyyaml<7,>=6.0.12; extra == 'all'
|
|
|
143
143
|
Requires-Dist: types-requests<3,>=2.31.0; extra == 'all'
|
|
144
144
|
Requires-Dist: types-setuptools<70,>=69.2.0; extra == 'all'
|
|
145
145
|
Requires-Dist: types-tqdm<5,>=4.66.0; extra == 'all'
|
|
146
|
-
Requires-Dist: unstructured==0.16.20; extra == 'all'
|
|
146
|
+
Requires-Dist: unstructured==0.16.20; (python_version < '3.13') and extra == 'all'
|
|
147
147
|
Requires-Dist: weaviate-client>=4.15.0; extra == 'all'
|
|
148
148
|
Requires-Dist: websockets<15.1,>=13.0; extra == 'all'
|
|
149
149
|
Requires-Dist: wikipedia<2,>=1; extra == 'all'
|
|
@@ -215,7 +215,7 @@ Requires-Dist: chunkr-ai<0.1.0,>=0.0.50; extra == 'document-tools'
|
|
|
215
215
|
Requires-Dist: crawl4ai>=0.3.745; extra == 'document-tools'
|
|
216
216
|
Requires-Dist: docx2txt<0.9,>=0.8; extra == 'document-tools'
|
|
217
217
|
Requires-Dist: docx>=0.2.4; extra == 'document-tools'
|
|
218
|
-
Requires-Dist: markitdown>=0.1.1; extra == 'document-tools'
|
|
218
|
+
Requires-Dist: markitdown>=0.1.1; (python_version >= '3.13') and extra == 'document-tools'
|
|
219
219
|
Requires-Dist: numpy<=2.2,>=1.2; extra == 'document-tools'
|
|
220
220
|
Requires-Dist: onnxruntime<=1.19.2; extra == 'document-tools'
|
|
221
221
|
Requires-Dist: openapi-spec-validator<0.8,>=0.7.1; extra == 'document-tools'
|
|
@@ -226,7 +226,7 @@ Requires-Dist: pymupdf<2,>=1.22.5; extra == 'document-tools'
|
|
|
226
226
|
Requires-Dist: python-pptx>=1.0.2; extra == 'document-tools'
|
|
227
227
|
Requires-Dist: reportlab>=4.4.2; extra == 'document-tools'
|
|
228
228
|
Requires-Dist: tabulate>=0.9.0; extra == 'document-tools'
|
|
229
|
-
Requires-Dist: unstructured==0.16.20; extra == 'document-tools'
|
|
229
|
+
Requires-Dist: unstructured==0.16.20; (python_version < '3.13') and extra == 'document-tools'
|
|
230
230
|
Requires-Dist: xls2xlsx>=0.2.0; extra == 'document-tools'
|
|
231
231
|
Provides-Extra: eigent
|
|
232
232
|
Requires-Dist: anthropic<0.50.0,>=0.47.0; extra == 'eigent'
|
|
@@ -238,7 +238,8 @@ Requires-Dist: google-api-python-client==2.166.0; extra == 'eigent'
|
|
|
238
238
|
Requires-Dist: google-auth-httplib2==0.2.0; extra == 'eigent'
|
|
239
239
|
Requires-Dist: google-auth-oauthlib==1.2.1; extra == 'eigent'
|
|
240
240
|
Requires-Dist: imageio[pyav]<3,>=2.34.2; extra == 'eigent'
|
|
241
|
-
Requires-Dist: markitdown
|
|
241
|
+
Requires-Dist: markitdown>=0.1.1; (python_version >= '3.13') and extra == 'eigent'
|
|
242
|
+
Requires-Dist: markitdown[all]>=0.1.1; (python_version < '3.13') and extra == 'eigent'
|
|
242
243
|
Requires-Dist: mcp-server-fetch==2025.1.17; extra == 'eigent'
|
|
243
244
|
Requires-Dist: mcp-simple-arxiv==0.2.2; extra == 'eigent'
|
|
244
245
|
Requires-Dist: numpy<=2.2,>=1.2; extra == 'eigent'
|
|
@@ -297,7 +298,7 @@ Requires-Dist: exa-py<2,>=1.10.0; extra == 'owl'
|
|
|
297
298
|
Requires-Dist: ffmpeg-python<0.3,>=0.2.0; extra == 'owl'
|
|
298
299
|
Requires-Dist: html2text>=2024.2.26; extra == 'owl'
|
|
299
300
|
Requires-Dist: imageio[pyav]<3,>=2.34.2; extra == 'owl'
|
|
300
|
-
Requires-Dist: markitdown>=0.1.1; extra == 'owl'
|
|
301
|
+
Requires-Dist: markitdown>=0.1.1; (python_version >= '3.13') and extra == 'owl'
|
|
301
302
|
Requires-Dist: mcp-server-fetch==2025.1.17; extra == 'owl'
|
|
302
303
|
Requires-Dist: mcp-simple-arxiv==0.2.2; extra == 'owl'
|
|
303
304
|
Requires-Dist: numpy<=2.2,>=1.2; extra == 'owl'
|
|
@@ -326,7 +327,7 @@ Requires-Dist: transformers<5,>=4; extra == 'owl'
|
|
|
326
327
|
Requires-Dist: tree-sitter-python<0.24,>=0.23.6; extra == 'owl'
|
|
327
328
|
Requires-Dist: tree-sitter<0.24,>=0.23.2; extra == 'owl'
|
|
328
329
|
Requires-Dist: typer>=0.15.2; extra == 'owl'
|
|
329
|
-
Requires-Dist: unstructured==0.16.20; extra == 'owl'
|
|
330
|
+
Requires-Dist: unstructured==0.16.20; (python_version < '3.13') and extra == 'owl'
|
|
330
331
|
Requires-Dist: websockets<15.1,>=13.0; extra == 'owl'
|
|
331
332
|
Requires-Dist: wikipedia<2,>=1; extra == 'owl'
|
|
332
333
|
Requires-Dist: xls2xlsx>=0.2.0; extra == 'owl'
|
|
@@ -343,11 +344,11 @@ Requires-Dist: neo4j<6,>=5.18.0; extra == 'rag'
|
|
|
343
344
|
Requires-Dist: numpy<=2.2,>=1.2; extra == 'rag'
|
|
344
345
|
Requires-Dist: protobuf>=6.0.0; extra == 'rag'
|
|
345
346
|
Requires-Dist: pymilvus<3,>=2.4.0; extra == 'rag'
|
|
346
|
-
Requires-Dist: pyobvector>=0.1.18; extra == 'rag'
|
|
347
|
+
Requires-Dist: pyobvector>=0.1.18; (python_version < '3.13') and extra == 'rag'
|
|
347
348
|
Requires-Dist: pytidb>=0.0.13; extra == 'rag'
|
|
348
349
|
Requires-Dist: qdrant-client<2,>=1.9.0; extra == 'rag'
|
|
349
350
|
Requires-Dist: rank-bm25<0.3,>=0.2.2; extra == 'rag'
|
|
350
|
-
Requires-Dist: unstructured==0.16.20; extra == 'rag'
|
|
351
|
+
Requires-Dist: unstructured==0.16.20; (python_version < '3.13') and extra == 'rag'
|
|
351
352
|
Requires-Dist: weaviate-client>=4.15.0; extra == 'rag'
|
|
352
353
|
Provides-Extra: research-tools
|
|
353
354
|
Requires-Dist: arxiv2text<0.2,>=0.1.14; extra == 'research-tools'
|
|
@@ -366,7 +367,7 @@ Requires-Dist: pgvector<0.3,>=0.2.4; extra == 'storage'
|
|
|
366
367
|
Requires-Dist: protobuf>=6.0.0; extra == 'storage'
|
|
367
368
|
Requires-Dist: psycopg[binary]<4,>=3.1.18; extra == 'storage'
|
|
368
369
|
Requires-Dist: pymilvus<3,>=2.4.0; extra == 'storage'
|
|
369
|
-
Requires-Dist: pyobvector>=0.1.18; extra == 'storage'
|
|
370
|
+
Requires-Dist: pyobvector>=0.1.18; (python_version < '3.13') and extra == 'storage'
|
|
370
371
|
Requires-Dist: pytidb>=0.0.13; extra == 'storage'
|
|
371
372
|
Requires-Dist: qdrant-client<2,>=1.9.0; extra == 'storage'
|
|
372
373
|
Requires-Dist: redis<6,>=5.0.6; extra == 'storage'
|
|
@@ -916,6 +917,7 @@ Real-world usecases demonstrating how CAMEL’s multi-agent framework enables re
|
|
|
916
917
|
|:---|:---|
|
|
917
918
|
| **[ChatDev](https://github.com/OpenBMB/ChatDev/tree/main/camel)** | Communicative Agents for software Development |
|
|
918
919
|
| **[Paper2Poster](https://github.com/Paper2Poster/Paper2Poster)** | Multimodal poster automation from scientific papers |
|
|
920
|
+
| **[Paper2Video](https://github.com/showlab/Paper2Video)** | Automatic video generation from scientific papers |
|
|
919
921
|
|
|
920
922
|
### Product Projects
|
|
921
923
|
|
|
@@ -948,6 +950,14 @@ We are actively involved in community events including:
|
|
|
948
950
|
>
|
|
949
951
|
> 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!
|
|
950
952
|
|
|
953
|
+
## Contributors
|
|
954
|
+
|
|
955
|
+
<a href="https://github.com/camel-ai/camel/graphs/contributors">
|
|
956
|
+
<img src="https://contrib.rocks/image?repo=camel-ai/camel" />
|
|
957
|
+
</a>
|
|
958
|
+
|
|
959
|
+
Made with [contrib.rocks](https://contrib.rocks).
|
|
960
|
+
|
|
951
961
|
<br>
|
|
952
962
|
|
|
953
963
|
## Community & Contact
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
camel/__init__.py,sha256=
|
|
1
|
+
camel/__init__.py,sha256=TJxZISAx5GCNPNhThOUrRBDrYf17x2pKPxqWrEUsl0Y,901
|
|
2
2
|
camel/generators.py,sha256=JRqj9_m1PF4qT6UtybzTQ-KBT9MJQt18OAAYvQ_fr2o,13844
|
|
3
3
|
camel/human.py,sha256=Xg8x1cS5KK4bQ1SDByiHZnzsRpvRP-KZViNvmu38xo4,5475
|
|
4
4
|
camel/logger.py,sha256=WgEwael_eT6D-lVAKHpKIpwXSTjvLbny5jbV1Ab8lnA,5760
|
|
@@ -7,7 +7,7 @@ camel/agents/__init__.py,sha256=64weKqdvmpZcGWyVkO-OKASAmVUdrQjv60JApgPk_SA,1644
|
|
|
7
7
|
camel/agents/_types.py,sha256=MeFZzay2kJA6evALQ-MbBTKW-0lu_0wBuKsxzH_4gWI,1552
|
|
8
8
|
camel/agents/_utils.py,sha256=AR7Qqgbkmn4X2edYUQf1rdksGUyV5hm3iK1z-Dn0Mcg,6266
|
|
9
9
|
camel/agents/base.py,sha256=c4bJYL3G3Z41SaFdMPMn8ZjLdFiFaVOFO6EQIfuCVR8,1124
|
|
10
|
-
camel/agents/chat_agent.py,sha256=
|
|
10
|
+
camel/agents/chat_agent.py,sha256=NdBwDxByHCRhiMFCxnMV3023N1ukdvJ7G-AF093Hzoc,187528
|
|
11
11
|
camel/agents/critic_agent.py,sha256=L6cTbYjyZB0DCa51tQ6LZLA6my8kHLC4nktHySH78H4,10433
|
|
12
12
|
camel/agents/deductive_reasoner_agent.py,sha256=6BZGaq1hR6hKJuQtOfoYQnk_AkZpw_Mr7mUy2MspQgs,13540
|
|
13
13
|
camel/agents/embodied_agent.py,sha256=XBxBu5ZMmSJ4B2U3Z7SMwvLlgp6yNpaBe8HNQmY9CZA,7536
|
|
@@ -108,7 +108,7 @@ camel/datahubs/base.py,sha256=4QKWiJaeL5ReQpyTAbOtzHs-2CzAYbVyoMngYwdpZGU,4357
|
|
|
108
108
|
camel/datahubs/huggingface.py,sha256=LgRruML4XnwHrm_jMB-aB-Ha-M9ErRrA7YmiL6saGis,14929
|
|
109
109
|
camel/datahubs/models.py,sha256=tGb9OP_aomIhnwc0VapJjTg9PmyV_QCp5to9sABXF0Y,978
|
|
110
110
|
camel/datasets/__init__.py,sha256=WlBpnzL8MejnJdofpJQBYv9KCyu1AZgm0-sTqDht6Aw,1051
|
|
111
|
-
camel/datasets/base_generator.py,sha256=
|
|
111
|
+
camel/datasets/base_generator.py,sha256=ga2f8Er4RXIu60CoLbdjTfMrDCvlmIMza4cMBaU45RE,11712
|
|
112
112
|
camel/datasets/few_shot_generator.py,sha256=HCXaJ7b5-W72deC662TKiNUtzzHKJ60dFyZ9W_2Hrsc,10867
|
|
113
113
|
camel/datasets/models.py,sha256=xATYBAZ3lvj01Kf3wvA_Wq7-AAapFyuD2PWJsaatYMc,2236
|
|
114
114
|
camel/datasets/self_instruct_generator.py,sha256=9FK-S7N7e-PR5rABj59BCNmUZCd8fS72La612FK0AEM,15837
|
|
@@ -128,7 +128,7 @@ camel/environments/__init__.py,sha256=VXNFb4jGImUYBVWR_G6D-_fUd4n7yZw_t_BVlZNOUx
|
|
|
128
128
|
camel/environments/models.py,sha256=jVcCyU7xObKoWPnkshmPqyyKi3AOiMVVtUZA-tWEYUU,4194
|
|
129
129
|
camel/environments/multi_step.py,sha256=HPIH2W-iWsmtDLeN1gjxo7LoAnMQQZzdmfjhmRoBAxg,8534
|
|
130
130
|
camel/environments/rlcards_env.py,sha256=OclnrJf7HgjuGUgYP6lISBmzTyG_gThHgPKwTUrG9y8,29861
|
|
131
|
-
camel/environments/single_step.py,sha256=
|
|
131
|
+
camel/environments/single_step.py,sha256=mDH8XPXW3XqT016OcBSWI6CstIy0oshjaLl0swboSYM,24190
|
|
132
132
|
camel/environments/tic_tac_toe.py,sha256=grw4z4GJBVS--IvMHUCy2IJy40z4fz6cG2HC0UmEktw,19110
|
|
133
133
|
camel/extractors/__init__.py,sha256=lgtDl8zWvN826fJVKqRv05w556YZ-EdrHwdzKphywgA,1097
|
|
134
134
|
camel/extractors/base.py,sha256=3jvuZpq27nlADDCX3GfubOpeb_zt-E9rzxF3x4lYm8s,10404
|
|
@@ -156,12 +156,12 @@ camel/loaders/mineru_extractor.py,sha256=nKa5n7f3ergv1TURcbXZJP5mQpnSCIFdlWrxWn4
|
|
|
156
156
|
camel/loaders/mistral_reader.py,sha256=N9y6mqxPri9w4wE3nfQ2Ch4ph9oxeMR5yJo2oOcQl-Y,5426
|
|
157
157
|
camel/loaders/scrapegraph_reader.py,sha256=k8EOV5-p41DHDr2ITV8BR1sMqBsvN41CN8Byj2cf5kY,3120
|
|
158
158
|
camel/loaders/unstructured_io.py,sha256=wA3fkDeS4mSPFkMDnWZzJYKDltio7l72BU9D3EGfoUs,17423
|
|
159
|
-
camel/memories/__init__.py,sha256=
|
|
159
|
+
camel/memories/__init__.py,sha256=JQbs-_7VkcVTjE8y9J0DWI3btDyMRZilTZNVuy_RxZM,1358
|
|
160
160
|
camel/memories/agent_memories.py,sha256=M8L4WyFqrT1Ec-uBjZXa4puHnKFMBcU6a3AXneOJb2I,10895
|
|
161
161
|
camel/memories/base.py,sha256=LRhCmPwQl7ADBb8bE0Izd0vmo5VhOSymtR8Q58fvrYA,5971
|
|
162
162
|
camel/memories/records.py,sha256=rG3c8JU3GT_B3PEfIRdEmaHDOx6-QgcqxG2EkXaKprI,7866
|
|
163
163
|
camel/memories/blocks/__init__.py,sha256=ci7_WU11222cNd1Zkv-a0z5E2ux95NMjAYm_cDzF0pE,854
|
|
164
|
-
camel/memories/blocks/chat_history_block.py,sha256=
|
|
164
|
+
camel/memories/blocks/chat_history_block.py,sha256=upQ1ei0pbc8JGOE3CRIbpwPoOpLcluO-UrT3nPC8o18,6860
|
|
165
165
|
camel/memories/blocks/vectordb_block.py,sha256=r0mRGLV14YUr8aruLdylBjKdSm11oprsiNEWl0EJJhQ,4166
|
|
166
166
|
camel/memories/context_creators/__init__.py,sha256=pqzkBM2ro5JZD7RhWg05TjinphhCq0QTIqBJlIL1sJ0,800
|
|
167
167
|
camel/memories/context_creators/score_based.py,sha256=OQ7eEECkzu4Op5sS9qS1dVgZl-cchSkUZj8Puh8C024,16488
|
|
@@ -180,7 +180,7 @@ camel/models/_utils.py,sha256=hob1ehnS5xZitMCdYToHVgaTB55JnaP4_DSWnTEfVsg,2045
|
|
|
180
180
|
camel/models/aiml_model.py,sha256=jmkQlqA7NkDXn2xN-98wtanI2KHbcMWQwNPjc38wyLI,3507
|
|
181
181
|
camel/models/amd_model.py,sha256=4LMjbRH-ghCdTapK9nhbgkOs9ZKLxQ9FXEg1esgmNZM,4124
|
|
182
182
|
camel/models/anthropic_model.py,sha256=GlerIhIc7uGhzIsQoZw-_8CGOdcZT8DC_95V3hx3q-4,8350
|
|
183
|
-
camel/models/aws_bedrock_model.py,sha256=
|
|
183
|
+
camel/models/aws_bedrock_model.py,sha256=lmBfeEwAoLO0RgQcWw_goNXjqgvLvGFgM6rJ3w1wzqo,3553
|
|
184
184
|
camel/models/azure_openai_model.py,sha256=gQVSYuOR9ECv4UKiph_zM7QmLQ2FLqJ5MQAqLkPN2FQ,17474
|
|
185
185
|
camel/models/base_audio_model.py,sha256=_VUWh1L3rh8mldNvM5R6jBOKtvmTeBKJyRxAdPJmPlY,3324
|
|
186
186
|
camel/models/base_model.py,sha256=aty9oIZowjt5Mxi0aB7ifHUmQO-78UMfUFLPNm10lGg,20164
|
|
@@ -198,7 +198,7 @@ camel/models/mistral_model.py,sha256=m8ssQ04bWSevkexXNj4MJ_IcJb1HCxaEFx-oCt3dSNs
|
|
|
198
198
|
camel/models/model_factory.py,sha256=idtzaGsyvu3JUpsVvb-xnULK6-fHcx4ozQqK_oB4S2o,12401
|
|
199
199
|
camel/models/model_manager.py,sha256=ln3bCV_QWM3V5BrwKwjmxIeRN8ojIvPEBMMHun0MliU,9942
|
|
200
200
|
camel/models/modelscope_model.py,sha256=OgZiFi2XBrElRZ8fqBZiqyXDeS5msTWejn1vuTARKYg,10211
|
|
201
|
-
camel/models/moonshot_model.py,sha256=
|
|
201
|
+
camel/models/moonshot_model.py,sha256=LQtH3-ZEjqIbhqzA9PBSggkBhBHLrcS6-RzLYEVo42k,11501
|
|
202
202
|
camel/models/nebius_model.py,sha256=ayc3eCBGzcE3ItyWbZcflkUOmMhfRpkuje0iRBmcP8Q,3514
|
|
203
203
|
camel/models/nemotron_model.py,sha256=onAFWR7pbAFbqhx68LelUPIyQb9r6yMvXWJYWwq3qkA,2952
|
|
204
204
|
camel/models/netmind_model.py,sha256=wfI3XUxiIa3aZbBN1WJDkZBbixfa2SUX1ouvGlMLKKA,3698
|
|
@@ -281,15 +281,18 @@ camel/societies/babyagi_playing.py,sha256=KbTdpHfZ2V8AripVck0bNTOyF-RSaMPCRARz3D
|
|
|
281
281
|
camel/societies/role_playing.py,sha256=0XScr3WfxX1QOC71RhBLmrcS5y2c7DMQB_mAFOHU34M,31421
|
|
282
282
|
camel/societies/workforce/__init__.py,sha256=bkTI-PE-MSK9AQ2V2gR6cR2WY-R7Jqy_NmXRtAoqo8o,920
|
|
283
283
|
camel/societies/workforce/base.py,sha256=z2DmbTP5LL5-aCAAqglznQqCLfPmnyM5zD3w6jjtsb8,2175
|
|
284
|
+
camel/societies/workforce/events.py,sha256=wyzj1NNx9WqYqULRRWh7p3gHHDu7jIV4smTMQHxNGX4,3580
|
|
284
285
|
camel/societies/workforce/prompts.py,sha256=I9MmLF-H_FwjDxWgTPBP8swzcPtG11aS3OZLzOF2NZQ,22039
|
|
285
286
|
camel/societies/workforce/role_playing_worker.py,sha256=Zm89lZTlV0T3o9C-DJ0HAV68Iq2Kdg8QqJRWs1TV9_A,10320
|
|
286
|
-
camel/societies/workforce/single_agent_worker.py,sha256=
|
|
287
|
+
camel/societies/workforce/single_agent_worker.py,sha256=ziBR-juYTCyckw8v93Ib7ej_BJc4DQ0lgIgKF5M2o0k,39591
|
|
287
288
|
camel/societies/workforce/structured_output_handler.py,sha256=RRp1p18Iss7gYdzOl9wAy1DB2A_oRvJ_qr5LGIGYVYc,18528
|
|
288
289
|
camel/societies/workforce/task_channel.py,sha256=rl0xSZg-8QIIHtXwC7f1GqESmNpdHJ_Jz8M524m5nEc,13238
|
|
289
290
|
camel/societies/workforce/utils.py,sha256=Q9_UvpxLVa9AK477WAlTqk9qcEFLGpvS-LOuKpE4oOI,11443
|
|
290
291
|
camel/societies/workforce/worker.py,sha256=MtUqYkTC9V-PIIRwSkKiB9w_YSu92iOpoha2rktEiQ0,6248
|
|
291
|
-
camel/societies/workforce/workforce.py,sha256=
|
|
292
|
-
camel/societies/workforce/
|
|
292
|
+
camel/societies/workforce/workforce.py,sha256=fEh0pP2gCP5jNf5VWi3I2ilXv5aJ8bZfnYXKYEs9g_0,194340
|
|
293
|
+
camel/societies/workforce/workforce_callback.py,sha256=tDOdg93MSxoWDNOr4NoLpeTj0s-EINMC339cIuKqCRU,2126
|
|
294
|
+
camel/societies/workforce/workforce_logger.py,sha256=cLwCkD6iOf5HuRWd5d5WIQA5RI8aKT2DJznTPuadZQc,25765
|
|
295
|
+
camel/societies/workforce/workforce_metrics.py,sha256=9ajINPmcTMpLIC2Ucs0xWu-Q2Unbznylvu6ebdaTS50,1118
|
|
293
296
|
camel/storages/__init__.py,sha256=RwpEyvxpMbJzVDZJJygeBg4AzyYMkTjjkfB53hTuqGo,2141
|
|
294
297
|
camel/storages/graph_storages/__init__.py,sha256=G29BNn651C0WTOpjCl4QnVM-4B9tcNh8DdmsCiONH8Y,948
|
|
295
298
|
camel/storages/graph_storages/base.py,sha256=uSe9jWuLudfm5jtfo6E-L_kNzITwK1_Ef-6L4HWw-JM,2852
|
|
@@ -342,8 +345,8 @@ camel/toolkits/dappier_toolkit.py,sha256=OEHOYXX_oXhgbVtWYAy13nO9uXf9i5qEXSwY4Pe
|
|
|
342
345
|
camel/toolkits/data_commons_toolkit.py,sha256=aHZUSL1ACpnYGaf1rE2csVKTmXTmN8lMGRUBYhZ_YEk,14168
|
|
343
346
|
camel/toolkits/dingtalk.py,sha256=TD-3dSzzV9S_yrOKQ4Yfp1DOjEOJruiIG-WytKx2EAE,36689
|
|
344
347
|
camel/toolkits/edgeone_pages_mcp_toolkit.py,sha256=vD6nOF__pue5HSJZTPwjzB_evpDdFJtPEG-bKszOOQE,1712
|
|
345
|
-
camel/toolkits/excel_toolkit.py,sha256
|
|
346
|
-
camel/toolkits/file_toolkit.py,sha256=
|
|
348
|
+
camel/toolkits/excel_toolkit.py,sha256=-3dqFyIPoCtej3z-_6D3BOdo2gtzw91BLBbWaIE8dxo,35772
|
|
349
|
+
camel/toolkits/file_toolkit.py,sha256=ngK-2KIxOmNxufrZH3Xo71Kshm745GTSvQm3aBHtkX8,45542
|
|
347
350
|
camel/toolkits/function_tool.py,sha256=ke02awKhiHJo2FBHLewvimcJKf4DaAzgJ-fdA5RmrDo,34542
|
|
348
351
|
camel/toolkits/github_toolkit.py,sha256=TYkrAiQuLgAolatTKSMZQkI9wKuV85B26HcLao1CCWw,16380
|
|
349
352
|
camel/toolkits/google_calendar_toolkit.py,sha256=E-sdgdbtNBs_CXbhht9t1dsVr4DsTr5NguHkx4fvSmc,15410
|
|
@@ -467,7 +470,7 @@ camel/utils/__init__.py,sha256=qQeMHZJ8Bbgpm4tBu-LWc_P3iFjXBlVfALdKTiD_s8I,3305
|
|
|
467
470
|
camel/utils/async_func.py,sha256=KqoktGSWjZBuAMQ2CV0X6FRgHGlzCKLfeaWvp-f1Qz8,1568
|
|
468
471
|
camel/utils/commons.py,sha256=OJxvdnpfUColR0nM4ounrt6ygszvOin2jp8NA08jTGw,37843
|
|
469
472
|
camel/utils/constants.py,sha256=cqnxmpUeOwrtsR-tRO4bbOc6ZP19TLj7avjm3FONMJs,1410
|
|
470
|
-
camel/utils/context_utils.py,sha256=
|
|
473
|
+
camel/utils/context_utils.py,sha256=dYrJOLbVDBls2BQoxAA40JnatIyVqv1hDu4F4FOj2Rw,32155
|
|
471
474
|
camel/utils/deduplication.py,sha256=UHikAtOW1TTDunf2t_wa2kFbmkrXWf7HfOKwLvwCxzo,8958
|
|
472
475
|
camel/utils/filename.py,sha256=HYNc1wbSCgNR1CN21cwHxdAhpnsf5ySJ6jUDfeqOK20,2532
|
|
473
476
|
camel/utils/langfuse.py,sha256=OowR6A790XG-b0UHiTYduYvS18PvSGFdmqki2Poogo0,8578
|
|
@@ -487,7 +490,7 @@ camel/verifiers/math_verifier.py,sha256=tA1D4S0sm8nsWISevxSN0hvSVtIUpqmJhzqfbuMo
|
|
|
487
490
|
camel/verifiers/models.py,sha256=GdxYPr7UxNrR1577yW4kyroRcLGfd-H1GXgv8potDWU,2471
|
|
488
491
|
camel/verifiers/physics_verifier.py,sha256=c1grrRddcrVN7szkxhv2QirwY9viIRSITWeWFF5HmLs,30187
|
|
489
492
|
camel/verifiers/python_verifier.py,sha256=ogTz77wODfEcDN4tMVtiSkRQyoiZbHPY2fKybn59lHw,20558
|
|
490
|
-
camel_ai-0.2.
|
|
491
|
-
camel_ai-0.2.
|
|
492
|
-
camel_ai-0.2.
|
|
493
|
-
camel_ai-0.2.
|
|
493
|
+
camel_ai-0.2.79a0.dist-info/METADATA,sha256=7UHvRR1LPpP6T6DcExPLIQhnIklakwghKPZKgItpERI,55925
|
|
494
|
+
camel_ai-0.2.79a0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
495
|
+
camel_ai-0.2.79a0.dist-info/licenses/LICENSE,sha256=id0nB2my5kG0xXeimIu5zZrbHLS6EQvxvkKkzIHaT2k,11343
|
|
496
|
+
camel_ai-0.2.79a0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|