camel-ai 0.2.78__py3-none-any.whl → 0.2.79a1__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 (39) hide show
  1. camel/__init__.py +1 -1
  2. camel/agents/_utils.py +38 -0
  3. camel/agents/chat_agent.py +1112 -287
  4. camel/datasets/base_generator.py +39 -10
  5. camel/environments/single_step.py +28 -3
  6. camel/memories/__init__.py +1 -2
  7. camel/memories/agent_memories.py +34 -0
  8. camel/memories/base.py +26 -0
  9. camel/memories/blocks/chat_history_block.py +117 -17
  10. camel/memories/context_creators/score_based.py +25 -384
  11. camel/messages/base.py +26 -0
  12. camel/models/aws_bedrock_model.py +1 -17
  13. camel/models/azure_openai_model.py +113 -67
  14. camel/models/model_factory.py +17 -1
  15. camel/models/moonshot_model.py +102 -5
  16. camel/models/openai_compatible_model.py +62 -32
  17. camel/models/openai_model.py +61 -35
  18. camel/models/samba_model.py +34 -15
  19. camel/models/sglang_model.py +41 -11
  20. camel/societies/workforce/__init__.py +2 -0
  21. camel/societies/workforce/events.py +122 -0
  22. camel/societies/workforce/role_playing_worker.py +15 -11
  23. camel/societies/workforce/single_agent_worker.py +143 -291
  24. camel/societies/workforce/utils.py +2 -1
  25. camel/societies/workforce/workflow_memory_manager.py +772 -0
  26. camel/societies/workforce/workforce.py +513 -188
  27. camel/societies/workforce/workforce_callback.py +74 -0
  28. camel/societies/workforce/workforce_logger.py +144 -140
  29. camel/societies/workforce/workforce_metrics.py +33 -0
  30. camel/storages/vectordb_storages/oceanbase.py +5 -4
  31. camel/toolkits/file_toolkit.py +166 -0
  32. camel/toolkits/message_integration.py +15 -13
  33. camel/toolkits/terminal_toolkit/terminal_toolkit.py +112 -79
  34. camel/types/enums.py +1 -0
  35. camel/utils/context_utils.py +201 -2
  36. {camel_ai-0.2.78.dist-info → camel_ai-0.2.79a1.dist-info}/METADATA +14 -13
  37. {camel_ai-0.2.78.dist-info → camel_ai-0.2.79a1.dist-info}/RECORD +39 -35
  38. {camel_ai-0.2.78.dist-info → camel_ai-0.2.79a1.dist-info}/WHEEL +0 -0
  39. {camel_ai-0.2.78.dist-info → camel_ai-0.2.79a1.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.78
3
+ Version: 0.2.79a1
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.13,>=3.10
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[all]>=0.1.1; extra == 'eigent'
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'
@@ -1,13 +1,13 @@
1
- camel/__init__.py,sha256=cpFup8atJGzU-oY43vhHAU_qEtlLnvGaBB3WCCgAWUE,899
1
+ camel/__init__.py,sha256=nAmfXQDDH9a7K9Bkc8P8PLbB8xtB-DXma3-rwnkIf1M,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
5
5
  camel/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
6
  camel/agents/__init__.py,sha256=64weKqdvmpZcGWyVkO-OKASAmVUdrQjv60JApgPk_SA,1644
7
7
  camel/agents/_types.py,sha256=MeFZzay2kJA6evALQ-MbBTKW-0lu_0wBuKsxzH_4gWI,1552
8
- camel/agents/_utils.py,sha256=AR7Qqgbkmn4X2edYUQf1rdksGUyV5hm3iK1z-Dn0Mcg,6266
8
+ camel/agents/_utils.py,sha256=v6vFsyNryd5axDdBLsd1r1p1edCC1RZKoZ6PXFm6lWQ,7514
9
9
  camel/agents/base.py,sha256=c4bJYL3G3Z41SaFdMPMn8ZjLdFiFaVOFO6EQIfuCVR8,1124
10
- camel/agents/chat_agent.py,sha256=hdO7dFEDwCpRbfOXMlVPRaFc5-pKPlwq6UGyZ5ey6mc,175592
10
+ camel/agents/chat_agent.py,sha256=dPYyc72AgAVU7kGA1m0GGb5ExUflPqs0i-CyInQIXd8,210209
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=WJEJTT00J3jv1LHjQ5wPBQSfxX0OkT1tc3Uu4FgQwSI,10735
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=zrAXLOBGGKQFnGENasUnmFO_T-rjppGPK2CRBLGu7aQ,23019
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,17 +156,17 @@ 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=vaStmUZNcHI884Fg9IQTezd50x4Me5fhDej0uK0O5fk,1404
160
- camel/memories/agent_memories.py,sha256=M8L4WyFqrT1Ec-uBjZXa4puHnKFMBcU6a3AXneOJb2I,10895
161
- camel/memories/base.py,sha256=LRhCmPwQl7ADBb8bE0Izd0vmo5VhOSymtR8Q58fvrYA,5971
159
+ camel/memories/__init__.py,sha256=JQbs-_7VkcVTjE8y9J0DWI3btDyMRZilTZNVuy_RxZM,1358
160
+ camel/memories/agent_memories.py,sha256=9rI-jpmpdlIZfmGleszfUOGRCf5_8HA9gmbYVz0VQhg,12332
161
+ camel/memories/base.py,sha256=2tlfCUH5ssoja5k3zQby5a-EjM8g8xMxHeapvCr5peI,6820
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=gn69kHY4UI3NpTPCiq66L_Jk74xjznuB6BZC9PVBUeg,7190
164
+ camel/memories/blocks/chat_history_block.py,sha256=Z1BwKqXVH-gHGrraB9i34mmYaMc5KFeFj11_5ccPreA,10426
165
165
  camel/memories/blocks/vectordb_block.py,sha256=r0mRGLV14YUr8aruLdylBjKdSm11oprsiNEWl0EJJhQ,4166
166
166
  camel/memories/context_creators/__init__.py,sha256=pqzkBM2ro5JZD7RhWg05TjinphhCq0QTIqBJlIL1sJ0,800
167
- camel/memories/context_creators/score_based.py,sha256=OQ7eEECkzu4Op5sS9qS1dVgZl-cchSkUZj8Puh8C024,16488
167
+ camel/memories/context_creators/score_based.py,sha256=f3nJYxqwbxiznHcfmKdVU-JP_Qpv1B5X1Y-Ot1jcGVE,2881
168
168
  camel/messages/__init__.py,sha256=Px-gTFp2Kcgbeb2sZQ_f4tqjoLHE-QEOiMHIMfPrvTw,1949
169
- camel/messages/base.py,sha256=HWroXFvktECm78fT1rb8iYIEfu-4iGeqCc9iv7XlKmY,23985
169
+ camel/messages/base.py,sha256=7FokYRbXMEO0xiQxTdKHktKU8ZvuYMC1pmzWFqYJSAI,24716
170
170
  camel/messages/func_message.py,sha256=7e6HsU2FmiDwxhQCFhUenAhms6s9q22ol2Eg7FJa3yw,6892
171
171
  camel/messages/conversion/__init__.py,sha256=8B4C-0wj-dm925YRKNyx31WYK25PWpME7Q9jPtx2jkY,1047
172
172
  camel/messages/conversion/alpaca.py,sha256=jBU2bMhzNjzptGuoasThYvFov_cYPCYt3pEfs0T7z7U,4163
@@ -180,8 +180,8 @@ 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=0JdsLxfi-coI8LtSPNewsaeR43CwC0qG2Gm_iY-ZCdo,4073
184
- camel/models/azure_openai_model.py,sha256=gQVSYuOR9ECv4UKiph_zM7QmLQ2FLqJ5MQAqLkPN2FQ,17474
183
+ camel/models/aws_bedrock_model.py,sha256=lmBfeEwAoLO0RgQcWw_goNXjqgvLvGFgM6rJ3w1wzqo,3553
184
+ camel/models/azure_openai_model.py,sha256=9Ywyy6jXwEGAOxuBSPV7DOEdaWXDlXy0OSmBpp_-Dn0,19695
185
185
  camel/models/base_audio_model.py,sha256=_VUWh1L3rh8mldNvM5R6jBOKtvmTeBKJyRxAdPJmPlY,3324
186
186
  camel/models/base_model.py,sha256=aty9oIZowjt5Mxi0aB7ifHUmQO-78UMfUFLPNm10lGg,20164
187
187
  camel/models/cohere_model.py,sha256=9H2F8bjwxPgwSwgPPRoOy090dQKBboQxnlk-94FoDIk,16719
@@ -195,10 +195,10 @@ camel/models/internlm_model.py,sha256=_P0ehH7TkMRgXzq8XhTD1Xppb09ycX1aZjop6psnLt
195
195
  camel/models/litellm_model.py,sha256=NL2sGsBmSwh3e5cbx11ovv9Bw-OY7tBA3DvYy1BcpAY,7922
196
196
  camel/models/lmstudio_model.py,sha256=MEc3pRYhpv2UmhnXJ1wjFHxjZFzFFAZ0jOECZ46EM4I,3362
197
197
  camel/models/mistral_model.py,sha256=m8ssQ04bWSevkexXNj4MJ_IcJb1HCxaEFx-oCt3dSNs,15430
198
- camel/models/model_factory.py,sha256=idtzaGsyvu3JUpsVvb-xnULK6-fHcx4ozQqK_oB4S2o,12401
198
+ camel/models/model_factory.py,sha256=d_hpqzLcGFn5C395NfhmcMKa8TZwyrsE25jl32qwLAs,13295
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=YFSNztk5awES1CW9oFHvzuBlp1R5AUoPQOzGvJawhEQ,7175
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
@@ -206,15 +206,15 @@ camel/models/novita_model.py,sha256=9rmiAShSQOIxTzdhxZaI7Xw1ZQkYeQ-yiL1VmIWqsWc,
206
206
  camel/models/nvidia_model.py,sha256=C26XCUQRe2O7ySGIqTihySovDHRk19WN0GOsSHupYQE,3510
207
207
  camel/models/ollama_model.py,sha256=pz8mvrCw6dv4Kqfqrg89ZFI_4Y_ppRhvPXVcnkxYGlk,4198
208
208
  camel/models/openai_audio_models.py,sha256=BSixkXlc8xirQLl2qCla-g6_y9wDLnMZVHukHrhzw98,13344
209
- camel/models/openai_compatible_model.py,sha256=K-AqO3YulF1S5_Y4lmMS_kE26LnK6gm2zVDZiPNszj0,16537
210
- camel/models/openai_model.py,sha256=Y2vV4UlGk1yBx3q-JSmISO9kfausvqv-tH4awRBHR9E,19454
209
+ camel/models/openai_compatible_model.py,sha256=lcHUpY9aZ21DZzp-Gr6Ktt-y4zf53-oONck44e7ETnk,18086
210
+ camel/models/openai_model.py,sha256=ZO6fDgeidsWzf9l07yrWKWY-npmOZAV40hcmRs0CY3U,20788
211
211
  camel/models/openrouter_model.py,sha256=V1DKBPoYJ6oCDDBqNK0RrK2JWq4oOWlbo3qu0lT4CbA,3514
212
212
  camel/models/ppio_model.py,sha256=G559Seb4KLU4FlYgSQ2UD_A6xOacX0eL6DrE_Hhmpv0,3645
213
213
  camel/models/qianfan_model.py,sha256=NI899k8p_N-70zmQFTwf08S_--8_-69iJgjvjXH1UYA,3714
214
214
  camel/models/qwen_model.py,sha256=oEXGUpG7-M2DK_EB1yEhsscg_UJT9KrnOI90EYx60dQ,10039
215
215
  camel/models/reka_model.py,sha256=k5H8d9kTOVRMPVVX23UywjSSPORaK1C2fS026vihQWU,12505
216
- camel/models/samba_model.py,sha256=3UmvK960AZL6OtScIgiqWhSOMoPvCeFX5DtPuale888,24401
217
- camel/models/sglang_model.py,sha256=0u1YT9u6LvqQ6LVoBvn2luCdZMsdKDMvxyL4-we0uXE,16832
216
+ camel/models/samba_model.py,sha256=7ge-45_He_gVDM8gXqHY8ONhB-LLrNdtk0aRpwbspwc,25456
217
+ camel/models/sglang_model.py,sha256=OdWBmNhYAjwaYGv_C8LRgMQI-PcNi4nMdQrwE513RDw,18289
218
218
  camel/models/siliconflow_model.py,sha256=9dXXFF9ymx5kI1fOTLodJpJaA98YK_KDGHT5RHaO1DQ,4151
219
219
  camel/models/stub_model.py,sha256=Gfyw5BI_g-vIOb4XgBSAMXR2ZDpf7skzz9D1h0LOviM,5956
220
220
  camel/models/togetherai_model.py,sha256=gKAQV-PjDEved9lqxdmbe3WkWqyNsivUMT_HSZbJZsw,3661
@@ -279,17 +279,21 @@ camel/services/agent_openapi_server.py,sha256=NUCBLNZBvi4C-J1ESMyRHiRX1NDhPdPkXT
279
279
  camel/societies/__init__.py,sha256=8J_PBAGkFdL0692Mxx8dvcSRm57ibouXdIU_f1n9dJE,876
280
280
  camel/societies/babyagi_playing.py,sha256=KbTdpHfZ2V8AripVck0bNTOyF-RSaMPCRARz3DvzWfQ,11855
281
281
  camel/societies/role_playing.py,sha256=0XScr3WfxX1QOC71RhBLmrcS5y2c7DMQB_mAFOHU34M,31421
282
- camel/societies/workforce/__init__.py,sha256=bkTI-PE-MSK9AQ2V2gR6cR2WY-R7Jqy_NmXRtAoqo8o,920
282
+ camel/societies/workforce/__init__.py,sha256=-7D5hY9wSxZxu1yJf1meqf36GIqXLKcgEDMGX97kAIM,1012
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
- camel/societies/workforce/role_playing_worker.py,sha256=Zm89lZTlV0T3o9C-DJ0HAV68Iq2Kdg8QqJRWs1TV9_A,10320
286
- camel/societies/workforce/single_agent_worker.py,sha256=zASWmiZHEIqcUroD9vC1ZlqXaUlb7u2E1_StebNBuTQ,34501
286
+ camel/societies/workforce/role_playing_worker.py,sha256=6UDbgo4rP9EzJK9czdUX9-veMs18rtf_2U3AUjciXJQ,10418
287
+ camel/societies/workforce/single_agent_worker.py,sha256=dcHrYxWz1d7Bdug0eKbEuh6xlGK305uHTs4ssHo3RAs,29262
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
- camel/societies/workforce/utils.py,sha256=Q9_UvpxLVa9AK477WAlTqk9qcEFLGpvS-LOuKpE4oOI,11443
290
+ camel/societies/workforce/utils.py,sha256=JIg-iPB6eZ0PJN7SzoX_7U9DyN5t5hhjb-5hPx3orB4,11467
290
291
  camel/societies/workforce/worker.py,sha256=MtUqYkTC9V-PIIRwSkKiB9w_YSu92iOpoha2rktEiQ0,6248
291
- camel/societies/workforce/workforce.py,sha256=jE6mkITgArrhtsxl5_yT4hh4b_Vz5N82oD8SKms2rgU,184360
292
- camel/societies/workforce/workforce_logger.py,sha256=F8wC0QKwGNn5KcBRsq9A3wz6cZvqYdGGX3Li4iuJDoI,25355
292
+ camel/societies/workforce/workflow_memory_manager.py,sha256=VeGaIAdTIzgqK6u1TC87AArp2OXRBx_0NF1twM6-_Sk,29571
293
+ camel/societies/workforce/workforce.py,sha256=AZI-bPzzTfkzXGNu72mN6sSgYf_XP1ARUSoU2RZo48o,197153
294
+ camel/societies/workforce/workforce_callback.py,sha256=tDOdg93MSxoWDNOr4NoLpeTj0s-EINMC339cIuKqCRU,2126
295
+ camel/societies/workforce/workforce_logger.py,sha256=cLwCkD6iOf5HuRWd5d5WIQA5RI8aKT2DJznTPuadZQc,25765
296
+ camel/societies/workforce/workforce_metrics.py,sha256=9ajINPmcTMpLIC2Ucs0xWu-Q2Unbznylvu6ebdaTS50,1118
293
297
  camel/storages/__init__.py,sha256=RwpEyvxpMbJzVDZJJygeBg4AzyYMkTjjkfB53hTuqGo,2141
294
298
  camel/storages/graph_storages/__init__.py,sha256=G29BNn651C0WTOpjCl4QnVM-4B9tcNh8DdmsCiONH8Y,948
295
299
  camel/storages/graph_storages/base.py,sha256=uSe9jWuLudfm5jtfo6E-L_kNzITwK1_Ef-6L4HWw-JM,2852
@@ -312,7 +316,7 @@ camel/storages/vectordb_storages/base.py,sha256=EP_WbEtI3SJPHro9rjNkIq9UDUP1AAHm
312
316
  camel/storages/vectordb_storages/chroma.py,sha256=wXuLUYsgkC2VvdyLrlL5VqEDVzJDBUo7OdimK8hBLmg,27553
313
317
  camel/storages/vectordb_storages/faiss.py,sha256=MHE3db9kJmVuu0aScXsSo8p60TCtc2Ot0rO77zcPgt8,26760
314
318
  camel/storages/vectordb_storages/milvus.py,sha256=ChQyEuaXCWCKxytLN2z4QrkEthx2xE6bQPO6KCS9RgQ,13535
315
- camel/storages/vectordb_storages/oceanbase.py,sha256=ZfvmsDfcKJWlxkdZhRQXl47ra9wxZ57Gg8lWx_zBcQE,17056
319
+ camel/storages/vectordb_storages/oceanbase.py,sha256=UmMCOyDsd0Ogwz0FpjicnW4SfZ6bwHtsWGpHWO2sem0,17120
316
320
  camel/storages/vectordb_storages/pgvector.py,sha256=p-5RGCVT46zP-Yop85thWi2m0ZnHILSJFpu2A-7qWnk,12438
317
321
  camel/storages/vectordb_storages/qdrant.py,sha256=a_cT0buSCHQ2CPZy852-mdvMDwy5zodCvAKMaa4zIvg,18017
318
322
  camel/storages/vectordb_storages/surreal.py,sha256=vPUh3iFz73kiDFP_FLDzq3ULaFGQGAcJDkOh9Y8SKps,13392
@@ -343,7 +347,7 @@ camel/toolkits/data_commons_toolkit.py,sha256=aHZUSL1ACpnYGaf1rE2csVKTmXTmN8lMGR
343
347
  camel/toolkits/dingtalk.py,sha256=TD-3dSzzV9S_yrOKQ4Yfp1DOjEOJruiIG-WytKx2EAE,36689
344
348
  camel/toolkits/edgeone_pages_mcp_toolkit.py,sha256=vD6nOF__pue5HSJZTPwjzB_evpDdFJtPEG-bKszOOQE,1712
345
349
  camel/toolkits/excel_toolkit.py,sha256=-3dqFyIPoCtej3z-_6D3BOdo2gtzw91BLBbWaIE8dxo,35772
346
- camel/toolkits/file_toolkit.py,sha256=ngK-2KIxOmNxufrZH3Xo71Kshm745GTSvQm3aBHtkX8,45542
350
+ camel/toolkits/file_toolkit.py,sha256=rJifI5sCwOCs2xk_viC5k1vpK7MDegzJJeNLpuH_rB8,52216
347
351
  camel/toolkits/function_tool.py,sha256=ke02awKhiHJo2FBHLewvimcJKf4DaAzgJ-fdA5RmrDo,34542
348
352
  camel/toolkits/github_toolkit.py,sha256=TYkrAiQuLgAolatTKSMZQkI9wKuV85B26HcLao1CCWw,16380
349
353
  camel/toolkits/google_calendar_toolkit.py,sha256=E-sdgdbtNBs_CXbhht9t1dsVr4DsTr5NguHkx4fvSmc,15410
@@ -362,7 +366,7 @@ camel/toolkits/mcp_toolkit.py,sha256=jRzxKhuZFT2S1HYIkJtGeTu1-veoQYvi7gdwDMSzVKE
362
366
  camel/toolkits/memory_toolkit.py,sha256=TeKYd5UMwgjVpuS2orb-ocFL13eUNKujvrFOruDCpm8,4436
363
367
  camel/toolkits/meshy_toolkit.py,sha256=NbgdOBD3FYLtZf-AfonIv6-Q8-8DW129jsaP1PqI2rs,7126
364
368
  camel/toolkits/message_agent_toolkit.py,sha256=yWvAaxoxAvDEtD7NH7IkkHIyfWIYK47WZhn5E_RaxKo,22661
365
- camel/toolkits/message_integration.py,sha256=7_3kqz3mJM3s3bE6Kl8WxhOCZQm5dw9LPXUIPtmas-g,28881
369
+ camel/toolkits/message_integration.py,sha256=fklcolaHtrvjMyyXbnqNpsrCssfrtbDD0mBIFtAeJwE,28864
366
370
  camel/toolkits/mineru_toolkit.py,sha256=vRX9LholLNkpbJ6axfEN4pTG85aWb0PDmlVy3rAAXhg,6868
367
371
  camel/toolkits/minimax_mcp_toolkit.py,sha256=fazHJGeH4l-A--s5lQYVxqSBr9fUGJUfJz3KpqK1yJc,6846
368
372
  camel/toolkits/networkx_toolkit.py,sha256=C7pUCZTzzGkFyqdkrmhRKpAHmHWfLKeuzYHC_BHPtbk,8826
@@ -454,10 +458,10 @@ camel/toolkits/open_api_specs/web_scraper/openapi.yaml,sha256=u_WalQ01e8W1D27VnZ
454
458
  camel/toolkits/open_api_specs/web_scraper/paths/__init__.py,sha256=OKCZrQCDwaWtXIN_2rA9FSqEvgpQRieRoHh7Ek6N16A,702
455
459
  camel/toolkits/open_api_specs/web_scraper/paths/scraper.py,sha256=aWy1_ppV4NVVEZfnbN3tu9XA9yAPAC9bRStJ5JuXMRU,1117
456
460
  camel/toolkits/terminal_toolkit/__init__.py,sha256=yE66haKm-NwoNJwtnCmcRpANtWxQB_dZoD8O5iqXt_Y,786
457
- camel/toolkits/terminal_toolkit/terminal_toolkit.py,sha256=Mp7C41d_T3guUNU7iXXOFKLNopTUyNGckzQ0JDCQ9og,36784
461
+ camel/toolkits/terminal_toolkit/terminal_toolkit.py,sha256=lmWFWYbEGrgnGAulnIUmXLiijdeVdCkgKhtyoOHgi-U,38187
458
462
  camel/toolkits/terminal_toolkit/utils.py,sha256=qUKVUwe5lbXVV7hJizSdJwZqFZdl_Xpyb08aKDNUetE,17293
459
463
  camel/types/__init__.py,sha256=EOmWlqS7aE5cB51_Vv7vHUexKeBbx9FSsfynl5vKjwo,2565
460
- camel/types/enums.py,sha256=BLGlUTtqee-ov6Au5K0NKX_6_ORdUIQ6YwYRx7L8uGU,70426
464
+ camel/types/enums.py,sha256=bW3Os4vaG54nssPmqApFhJck6tombGgdr4Ly0VsXgH0,70448
461
465
  camel/types/mcp_registries.py,sha256=dl4LgYtSaUhsqAKpz28k_SA9La11qxqBvDLaEuyzrFE,4971
462
466
  camel/types/openai_types.py,sha256=m7oWb8nWYWOAwBRY1mP9mS9RVufXeDVj-fGvHAhXuMU,2120
463
467
  camel/types/unified_model_type.py,sha256=gs_Wr0acrqn81kjyd6zm_OzCUol2d0QQH1-QXsuxVxo,6196
@@ -467,7 +471,7 @@ camel/utils/__init__.py,sha256=qQeMHZJ8Bbgpm4tBu-LWc_P3iFjXBlVfALdKTiD_s8I,3305
467
471
  camel/utils/async_func.py,sha256=KqoktGSWjZBuAMQ2CV0X6FRgHGlzCKLfeaWvp-f1Qz8,1568
468
472
  camel/utils/commons.py,sha256=OJxvdnpfUColR0nM4ounrt6ygszvOin2jp8NA08jTGw,37843
469
473
  camel/utils/constants.py,sha256=cqnxmpUeOwrtsR-tRO4bbOc6ZP19TLj7avjm3FONMJs,1410
470
- camel/utils/context_utils.py,sha256=NonmuqX7W1IzxVOvyd02Ad_VJDvDYLqujTwEVXQkX64,30271
474
+ camel/utils/context_utils.py,sha256=qhoExfI8of7s-6OiLAiTYU61Y5h6H9PbqqTlju3pDkg,37461
471
475
  camel/utils/deduplication.py,sha256=UHikAtOW1TTDunf2t_wa2kFbmkrXWf7HfOKwLvwCxzo,8958
472
476
  camel/utils/filename.py,sha256=HYNc1wbSCgNR1CN21cwHxdAhpnsf5ySJ6jUDfeqOK20,2532
473
477
  camel/utils/langfuse.py,sha256=OowR6A790XG-b0UHiTYduYvS18PvSGFdmqki2Poogo0,8578
@@ -487,7 +491,7 @@ camel/verifiers/math_verifier.py,sha256=tA1D4S0sm8nsWISevxSN0hvSVtIUpqmJhzqfbuMo
487
491
  camel/verifiers/models.py,sha256=GdxYPr7UxNrR1577yW4kyroRcLGfd-H1GXgv8potDWU,2471
488
492
  camel/verifiers/physics_verifier.py,sha256=c1grrRddcrVN7szkxhv2QirwY9viIRSITWeWFF5HmLs,30187
489
493
  camel/verifiers/python_verifier.py,sha256=ogTz77wODfEcDN4tMVtiSkRQyoiZbHPY2fKybn59lHw,20558
490
- camel_ai-0.2.78.dist-info/METADATA,sha256=tcNZDsN832ZzzwQHP7zUcKhSoYuP65CS9qyzClO4vJo,55507
491
- camel_ai-0.2.78.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
492
- camel_ai-0.2.78.dist-info/licenses/LICENSE,sha256=id0nB2my5kG0xXeimIu5zZrbHLS6EQvxvkKkzIHaT2k,11343
493
- camel_ai-0.2.78.dist-info/RECORD,,
494
+ camel_ai-0.2.79a1.dist-info/METADATA,sha256=ctAbB1tWjQ7vIfAc9-f_I1PH_73-lKh0c92oVYIplfI,55925
495
+ camel_ai-0.2.79a1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
496
+ camel_ai-0.2.79a1.dist-info/licenses/LICENSE,sha256=id0nB2my5kG0xXeimIu5zZrbHLS6EQvxvkKkzIHaT2k,11343
497
+ camel_ai-0.2.79a1.dist-info/RECORD,,