camel-ai 0.2.3a1__py3-none-any.whl → 0.2.3a2__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 (87) hide show
  1. camel/__init__.py +1 -1
  2. camel/agents/chat_agent.py +93 -69
  3. camel/agents/knowledge_graph_agent.py +4 -6
  4. camel/bots/__init__.py +16 -2
  5. camel/bots/discord_app.py +138 -0
  6. camel/bots/slack/__init__.py +30 -0
  7. camel/bots/slack/models.py +158 -0
  8. camel/bots/slack/slack_app.py +255 -0
  9. camel/configs/__init__.py +1 -2
  10. camel/configs/anthropic_config.py +2 -5
  11. camel/configs/base_config.py +6 -6
  12. camel/configs/groq_config.py +2 -3
  13. camel/configs/ollama_config.py +1 -2
  14. camel/configs/openai_config.py +2 -23
  15. camel/configs/samba_config.py +2 -2
  16. camel/configs/togetherai_config.py +1 -1
  17. camel/configs/vllm_config.py +1 -1
  18. camel/configs/zhipuai_config.py +2 -3
  19. camel/embeddings/openai_embedding.py +2 -2
  20. camel/loaders/__init__.py +2 -0
  21. camel/loaders/chunkr_reader.py +163 -0
  22. camel/loaders/firecrawl_reader.py +3 -3
  23. camel/loaders/unstructured_io.py +35 -33
  24. camel/messages/__init__.py +1 -0
  25. camel/models/__init__.py +2 -4
  26. camel/models/anthropic_model.py +32 -26
  27. camel/models/azure_openai_model.py +39 -36
  28. camel/models/base_model.py +31 -20
  29. camel/models/gemini_model.py +37 -29
  30. camel/models/groq_model.py +29 -23
  31. camel/models/litellm_model.py +44 -61
  32. camel/models/mistral_model.py +32 -29
  33. camel/models/model_factory.py +66 -76
  34. camel/models/nemotron_model.py +33 -23
  35. camel/models/ollama_model.py +42 -47
  36. camel/models/{openai_compatibility_model.py → openai_compatible_model.py} +31 -49
  37. camel/models/openai_model.py +48 -29
  38. camel/models/reka_model.py +30 -28
  39. camel/models/samba_model.py +82 -177
  40. camel/models/stub_model.py +2 -2
  41. camel/models/togetherai_model.py +37 -43
  42. camel/models/vllm_model.py +43 -50
  43. camel/models/zhipuai_model.py +33 -27
  44. camel/retrievers/auto_retriever.py +28 -10
  45. camel/retrievers/vector_retriever.py +58 -47
  46. camel/societies/babyagi_playing.py +6 -3
  47. camel/societies/role_playing.py +5 -3
  48. camel/storages/graph_storages/graph_element.py +3 -5
  49. camel/storages/key_value_storages/json.py +6 -1
  50. camel/toolkits/__init__.py +20 -7
  51. camel/toolkits/arxiv_toolkit.py +155 -0
  52. camel/toolkits/ask_news_toolkit.py +653 -0
  53. camel/toolkits/base.py +2 -3
  54. camel/toolkits/code_execution.py +6 -7
  55. camel/toolkits/dalle_toolkit.py +6 -6
  56. camel/toolkits/{openai_function.py → function_tool.py} +34 -11
  57. camel/toolkits/github_toolkit.py +9 -10
  58. camel/toolkits/google_maps_toolkit.py +7 -7
  59. camel/toolkits/google_scholar_toolkit.py +146 -0
  60. camel/toolkits/linkedin_toolkit.py +7 -7
  61. camel/toolkits/math_toolkit.py +8 -8
  62. camel/toolkits/open_api_toolkit.py +5 -5
  63. camel/toolkits/reddit_toolkit.py +7 -7
  64. camel/toolkits/retrieval_toolkit.py +5 -5
  65. camel/toolkits/search_toolkit.py +9 -9
  66. camel/toolkits/slack_toolkit.py +11 -11
  67. camel/toolkits/twitter_toolkit.py +378 -452
  68. camel/toolkits/weather_toolkit.py +6 -6
  69. camel/toolkits/whatsapp_toolkit.py +177 -0
  70. camel/types/__init__.py +6 -1
  71. camel/types/enums.py +40 -85
  72. camel/types/openai_types.py +3 -0
  73. camel/types/unified_model_type.py +104 -0
  74. camel/utils/__init__.py +0 -2
  75. camel/utils/async_func.py +7 -7
  76. camel/utils/commons.py +32 -3
  77. camel/utils/token_counting.py +30 -212
  78. camel/workforce/role_playing_worker.py +1 -1
  79. camel/workforce/single_agent_worker.py +1 -1
  80. camel/workforce/task_channel.py +4 -3
  81. camel/workforce/workforce.py +4 -4
  82. camel_ai-0.2.3a2.dist-info/LICENSE +201 -0
  83. {camel_ai-0.2.3a1.dist-info → camel_ai-0.2.3a2.dist-info}/METADATA +27 -56
  84. {camel_ai-0.2.3a1.dist-info → camel_ai-0.2.3a2.dist-info}/RECORD +85 -76
  85. {camel_ai-0.2.3a1.dist-info → camel_ai-0.2.3a2.dist-info}/WHEEL +1 -1
  86. camel/bots/discord_bot.py +0 -206
  87. camel/models/open_source_model.py +0 -170
@@ -1,16 +1,17 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: camel-ai
3
- Version: 0.2.3a1
3
+ Version: 0.2.3a2
4
4
  Summary: Communicative Agents for AI Society Study
5
5
  Home-page: https://www.camel-ai.org/
6
6
  License: Apache-2.0
7
7
  Keywords: communicative-ai,ai-societies,artificial-intelligence,deep-learning,multi-agent-systems,cooperative-ai,natural-language-processing,large-language-models
8
8
  Author: CAMEL-AI.org
9
- Requires-Python: >=3.10.0,<3.12
9
+ Requires-Python: >=3.10,<3.13
10
10
  Classifier: License :: OSI Approved :: Apache Software License
11
11
  Classifier: Programming Language :: Python :: 3
12
12
  Classifier: Programming Language :: Python :: 3.10
13
13
  Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
14
15
  Provides-Extra: all
15
16
  Provides-Extra: encoders
16
17
  Provides-Extra: graph-storages
@@ -27,7 +28,10 @@ Provides-Extra: vector-databases
27
28
  Requires-Dist: PyMuPDF (>=1.22.5,<2.0.0) ; extra == "tools" or extra == "all"
28
29
  Requires-Dist: accelerate (>=0,<1) ; extra == "huggingface-agent" or extra == "all"
29
30
  Requires-Dist: agentops (>=0.3.6,<0.4.0) ; extra == "tools" or extra == "all"
30
- Requires-Dist: anthropic (>=0.29.0,<0.30.0)
31
+ Requires-Dist: anthropic (>=0.29.0,<0.30.0) ; extra == "model-platforms" or extra == "all"
32
+ Requires-Dist: arxiv (>=2.1.3,<3.0.0) ; extra == "tools" or extra == "all"
33
+ Requires-Dist: arxiv2text (>=0.1.14,<0.2.0) ; extra == "tools" or extra == "all"
34
+ Requires-Dist: asknews (>=0.7.43,<0.8.0) ; extra == "tools" or extra == "all"
31
35
  Requires-Dist: azure-storage-blob (>=12.21.0,<13.0.0) ; extra == "object-storages" or extra == "all"
32
36
  Requires-Dist: beautifulsoup4 (>=4,<5) ; extra == "tools" or extra == "all"
33
37
  Requires-Dist: botocore (>=1.35.3,<2.0.0) ; extra == "object-storages" or extra == "all"
@@ -46,13 +50,12 @@ Requires-Dist: firecrawl-py (>=1.0.0,<2.0.0) ; extra == "tools" or extra == "all
46
50
  Requires-Dist: google-cloud-storage (>=2.18.0,<3.0.0) ; extra == "object-storages" or extra == "all"
47
51
  Requires-Dist: google-generativeai (>=0.6.0,<0.7.0) ; extra == "model-platforms" or extra == "all"
48
52
  Requires-Dist: googlemaps (>=4.10.0,<5.0.0) ; extra == "tools" or extra == "all"
49
- Requires-Dist: groq (>=0.5.0,<0.6.0)
50
53
  Requires-Dist: imageio[pyav] (>=2.34.2,<3.0.0) ; extra == "tools" or extra == "all"
51
- Requires-Dist: ipykernel (>=6.0.0,<7.0.0)
54
+ Requires-Dist: ipykernel (>=6.0.0,<7.0.0) ; extra == "tools" or extra == "all"
52
55
  Requires-Dist: jsonschema (>=4,<5)
53
56
  Requires-Dist: jupyter_client (>=8.6.2,<9.0.0) ; extra == "tools" or extra == "all"
54
57
  Requires-Dist: litellm (>=1.38.1,<2.0.0) ; extra == "model-platforms" or extra == "all"
55
- Requires-Dist: mistralai (>=1.0.0,<2.0.0) ; extra == "model-platforms" or extra == "all"
58
+ Requires-Dist: mistralai (>=1.1.0,<2.0.0) ; extra == "model-platforms" or extra == "all"
56
59
  Requires-Dist: mock (>=5,<6) ; extra == "test"
57
60
  Requires-Dist: nebula3-python (==3.8.2) ; extra == "rag" or extra == "graph-storages" or extra == "all"
58
61
  Requires-Dist: neo4j (>=5.18.0,<6.0.0) ; extra == "rag" or extra == "graph-storages" or extra == "all"
@@ -64,6 +67,7 @@ Requires-Dist: openapi-spec-validator (>=0.7.1,<0.8.0) ; extra == "tools" or ext
64
67
  Requires-Dist: opencv-python (>=4,<5) ; extra == "huggingface-agent" or extra == "all"
65
68
  Requires-Dist: pandoc
66
69
  Requires-Dist: pathlib (>=1.0.1,<2.0.0)
70
+ Requires-Dist: pdfplumber (>=0.11.0,<0.12.0) ; extra == "tools" or extra == "all"
67
71
  Requires-Dist: pillow (>=10.2.0,<11.0.0) ; extra == "tools" or extra == "all"
68
72
  Requires-Dist: prance (>=23.6.21.0,<24.0.0.0) ; extra == "tools" or extra == "all"
69
73
  Requires-Dist: praw (>=7.7.1,<8.0.0) ; extra == "tools" or extra == "all"
@@ -81,15 +85,18 @@ Requires-Dist: rank-bm25 (>=0.2.2,<0.3.0) ; extra == "rag" or extra == "retrieve
81
85
  Requires-Dist: redis (>=5.0.6,<6.0.0) ; extra == "kv-stroages" or extra == "all"
82
86
  Requires-Dist: reka-api (>=3.0.8,<4.0.0) ; extra == "model-platforms" or extra == "all"
83
87
  Requires-Dist: requests_oauthlib (>=1.3.1,<2.0.0) ; extra == "tools" or extra == "all"
88
+ Requires-Dist: scholarly[tor] (==1.7.11) ; extra == "tools" or extra == "all"
84
89
  Requires-Dist: sentence-transformers (>=3.0.1,<4.0.0) ; extra == "rag" or extra == "encoders" or extra == "all"
85
90
  Requires-Dist: sentencepiece (>=0,<1) ; extra == "huggingface-agent" or extra == "all"
91
+ Requires-Dist: slack-bolt (>=1.20.1,<2.0.0) ; extra == "tools" or extra == "all"
86
92
  Requires-Dist: slack-sdk (>=3.27.2,<4.0.0) ; extra == "tools" or extra == "all"
87
93
  Requires-Dist: soundfile (>=0,<1) ; extra == "huggingface-agent" or extra == "all"
88
94
  Requires-Dist: textblob (>=0.18.0.post0,<0.19.0) ; extra == "tools" or extra == "all"
89
95
  Requires-Dist: tiktoken (>=0.7.0,<0.8.0)
90
- Requires-Dist: torch (>=2,<3) ; extra == "huggingface-agent" or extra == "all"
96
+ Requires-Dist: torch (==2.1.0) ; (platform_system == "Darwin" and platform_machine != "arm64") and (extra == "huggingface-agent" or extra == "all")
97
+ Requires-Dist: torch (>=2,<3) ; (platform_system != "Darwin" or platform_machine == "arm64") and (extra == "huggingface-agent" or extra == "all")
91
98
  Requires-Dist: transformers (>=4,<5) ; extra == "huggingface-agent" or extra == "all"
92
- Requires-Dist: unstructured[all-docs] (>=0.10,<0.11) ; extra == "rag" or extra == "tools" or extra == "all"
99
+ Requires-Dist: unstructured[all-docs] (>=0.14,<0.15) ; extra == "rag" or extra == "tools" or extra == "all"
93
100
  Requires-Dist: wikipedia (>=1,<2) ; extra == "search-tools" or extra == "tools" or extra == "all"
94
101
  Requires-Dist: wolframalpha (>=5.0.0,<6.0.0) ; extra == "search-tools" or extra == "tools" or extra == "all"
95
102
  Project-URL: Documentation, https://docs.camel-ai.org
@@ -105,14 +112,13 @@ Description-Content-Type: text/markdown
105
112
 
106
113
  ______________________________________________________________________
107
114
 
108
- # CAMEL: Communicative Agents for “Mind” Exploration of Large Language Model Society
115
+ # CAMEL: Finding the Scaling Laws of Agents
109
116
 
110
117
  [![Python Version][python-image]][python-url]
111
118
  [![PyTest Status][pytest-image]][pytest-url]
112
119
  [![Documentation][docs-image]][docs-url]
113
120
  [![Star][star-image]][star-url]
114
121
  [![Package License][package-license-image]][package-license-url]
115
- [![Data License][data-license-image]][data-license-url]
116
122
 
117
123
  <p align="center">
118
124
  <a href="https://github.com/camel-ai/camel#community">Community</a> |
@@ -126,16 +132,14 @@ ______________________________________________________________________
126
132
  </p>
127
133
 
128
134
  <p align="center">
129
- <img src='https://raw.githubusercontent.com/camel-ai/camel/master/misc/primary_logo.png' width=800>
135
+ <img src='https://raw.githubusercontent.com/camel-ai/camel/master/misc/logo_light.png' width=800>
130
136
  </p>
131
137
 
132
- ## Overview
133
- The rapid advancement of conversational and chat-based language models has led to remarkable progress in complex task-solving. However, their success heavily relies on human input to guide the conversation, which can be challenging and time-consuming. This paper explores the potential of building scalable techniques to facilitate autonomous cooperation among communicative agents and provide insight into their "cognitive" processes. To address the challenges of achieving autonomous cooperation, we propose a novel communicative agent framework named *role-playing*. Our approach involves using *inception prompting* to guide chat agents toward task completion while maintaining consistency with human intentions. We showcase how role-playing can be used to generate conversational data for studying the behaviors and capabilities of chat agents, providing a valuable resource for investigating conversational language models. Our contributions include introducing a novel communicative agent framework, offering a scalable approach for studying the cooperative behaviors and capabilities of multi-agent systems, and open-sourcing our library to support research on communicative agents and beyond. The GitHub repository of this project is made publicly available on: [https://github.com/camel-ai/camel](https://github.com/camel-ai/camel).
134
138
 
135
139
  ## Community
136
- 🐫 CAMEL is an open-source library designed for the study of autonomous and communicative agents. We believe that studying these agents on a large scale offers valuable insights into their behaviors, capabilities, and potential risks. To facilitate research in this field, we implement and support various types of agents, tasks, prompts, models, and simulated environments.
140
+ 🐫 CAMEL is an open-source community dedicated to finding the scaling laws of agents. We believe that studying these agents on a large scale offers valuable insights into their behaviors, capabilities, and potential risks. To facilitate research in this field, we implement and support various types of agents, tasks, prompts, models, and simulated environments.
137
141
 
138
- Join us ([*Slack*](https://join.slack.com/t/camel-ai/shared_invite/zt-2g7xc41gy-_7rcrNNAArIP6sLQqldkqQ), [*Discord*](https://discord.gg/CNcNpquyDc) or [*WeChat*](https://ghli.org/camel/wechat.png)) in pushing the boundaries of building AI Society.
142
+ Join us ([*Discord*](https://discord.camel-ai.org/), [*WeChat*](https://ghli.org/camel/wechat.png) or [*Slack*](https://join.slack.com/t/camel-ai/shared_invite/zt-2g7xc41gy-_7rcrNNAArIP6sLQqldkqQ)) in pushing the boundaries of finding the scaling laws of agents.
139
143
 
140
144
  ## Try it yourself
141
145
  We provide a [![Google Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/drive/1AzP33O8rnMW__7ocWJhVBXjKziJXPtim?usp=sharing) demo showcasing a conversation between two ChatGPT agents playing roles as a python programmer and a stock trader collaborating on developing a trading bot for stock market.
@@ -171,7 +175,7 @@ Some features require extra dependencies:
171
175
  Install `CAMEL` from source with poetry (Recommended):
172
176
  ```sh
173
177
  # Make sure your python version is later than 3.10
174
- # You can use pyenv to manage multiple python verisons in your sytstem
178
+ # You can use pyenv to manage multiple python versions in your system
175
179
 
176
180
  # Clone github repo
177
181
  git clone https://github.com/camel-ai/camel.git
@@ -179,7 +183,7 @@ git clone https://github.com/camel-ai/camel.git
179
183
  # Change directory into project directory
180
184
  cd camel
181
185
 
182
- # If you didn't install peotry before
186
+ # If you didn't install poetry before
183
187
  pip install poetry # (Optional)
184
188
 
185
189
  # We suggest using python 3.10
@@ -217,7 +221,7 @@ conda create --name camel python=3.10
217
221
  conda activate camel
218
222
 
219
223
  # Clone github repo
220
- git clone -b v0.2.2 https://github.com/camel-ai/camel.git
224
+ git clone -b v0.2.3a2 https://github.com/camel-ai/camel.git
221
225
 
222
226
  # Change directory into project directory
223
227
  cd camel
@@ -288,35 +292,7 @@ Please note that the environment variable is session-specific. If you open a new
288
292
  ```bash
289
293
  ollama pull llama3
290
294
  ```
291
- - Create a ModelFile similar the one below in your project directory.
292
- ```bash
293
- FROM llama3
294
-
295
- # Set parameters
296
- PARAMETER temperature 0.8
297
- PARAMETER stop Result
298
-
299
- # Sets a custom system message to specify the behavior of the chat assistant
300
-
301
- # Leaving it blank for now.
302
-
303
- SYSTEM """ """
304
- ```
305
- - Create a script to get the base model (llama3) and create a custom model using the ModelFile above. Save this as a .sh file:
306
- ```bash
307
- #!/bin/zsh
308
-
309
- # variables
310
- model_name="llama3"
311
- custom_model_name="camel-llama3"
312
-
313
- #get the base model
314
- ollama pull $model_name
315
-
316
- #create the model file
317
- ollama create $custom_model_name -f ./Llama3ModelFile
318
- ```
319
- - Navigate to the directory where the script and ModelFile are located and run the script. Enjoy your Llama3 model, enhanced by CAMEL's excellent agents.
295
+ - Run the script. Enjoy your Llama3 model, enhanced by CAMEL's excellent agents.
320
296
  ```python
321
297
  from camel.agents import ChatAgent
322
298
  from camel.messages import BaseMessage
@@ -326,7 +302,6 @@ Please note that the environment variable is session-specific. If you open a new
326
302
  ollama_model = ModelFactory.create(
327
303
  model_platform=ModelPlatformType.OLLAMA,
328
304
  model_type="llama3",
329
- url="http://localhost:11434/v1",
330
305
  model_config_dict={"temperature": 0.4},
331
306
  )
332
307
 
@@ -413,7 +388,7 @@ We implemented amazing research ideas from other works for you to build, compare
413
388
  year={2023}
414
389
  }
415
390
  ```
416
- ## Acknowledgement
391
+ ## Acknowledgment
417
392
  Special thanks to [Nomic AI](https://home.nomic.ai/) for giving us extended access to their data set exploration tool (Atlas).
418
393
 
419
394
  We would also like to thank Haya Hammoud for designing the initial logo of our project.
@@ -422,16 +397,14 @@ We would also like to thank Haya Hammoud for designing the initial logo of our p
422
397
 
423
398
  The source code is licensed under Apache 2.0.
424
399
 
425
- The datasets are licensed under CC BY NC 4.0, which permits only non-commercial usage. It is advised that any models trained using the dataset should not be utilized for anything other than research purposes.
426
-
427
400
  ## Contributing to CAMEL 🐫
428
401
  We appreciate your interest in contributing to our open-source initiative. We provide a document of [contributing guidelines](https://github.com/camel-ai/camel/blob/master/CONTRIBUTING.md) which outlines the steps for contributing to CAMEL. Please refer to this guide to ensure smooth collaboration and successful contributions. 🤝🚀
429
402
 
430
403
  ## Contact
431
404
  For more information please contact camel.ai.team@gmail.com.
432
405
 
433
- [python-image]: https://img.shields.io/badge/Python-3.10%2B-brightgreen.svg
434
- [python-url]: https://docs.python.org/3.10/
406
+ [python-image]: https://img.shields.io/badge/Python-3.10%2C%203.11%2C%203.12-brightgreen.svg
407
+ [python-url]: https://www.python.org/
435
408
  [pytest-image]: https://github.com/camel-ai/camel/actions/workflows/pytest_package.yml/badge.svg
436
409
  [pytest-url]: https://github.com/camel-ai/camel/actions/workflows/pytest_package.yml
437
410
  [docs-image]: https://img.shields.io/badge/Documentation-grey.svg?logo=github
@@ -440,8 +413,6 @@ For more information please contact camel.ai.team@gmail.com.
440
413
  [star-url]: https://github.com/camel-ai/camel/stargazers
441
414
  [package-license-image]: https://img.shields.io/badge/License-Apache_2.0-blue.svg
442
415
  [package-license-url]: https://github.com/camel-ai/camel/blob/master/licenses/LICENSE
443
- [data-license-image]: https://img.shields.io/badge/License-CC_BY--NC_4.0-lightgrey.svg
444
- [data-license-url]: https://github.com/camel-ai/camel/blob/master/licenses/DATA_LICENSE
445
416
 
446
417
  [colab-url]: https://colab.research.google.com/drive/1AzP33O8rnMW__7ocWJhVBXjKziJXPtim?usp=sharing
447
418
  [colab-image]: https://colab.research.google.com/assets/colab-badge.svg
@@ -449,7 +420,7 @@ For more information please contact camel.ai.team@gmail.com.
449
420
  [huggingface-image]: https://img.shields.io/badge/%F0%9F%A4%97%20Hugging%20Face-CAMEL--AI-ffc107?color=ffc107&logoColor=white
450
421
  [slack-url]: https://join.slack.com/t/camel-ai/shared_invite/zt-2g7xc41gy-_7rcrNNAArIP6sLQqldkqQ
451
422
  [slack-image]: https://img.shields.io/badge/Slack-CAMEL--AI-blueviolet?logo=slack
452
- [discord-url]: https://discord.gg/CNcNpquyDc
423
+ [discord-url]: https://discord.camel-ai.org/
453
424
  [discord-image]: https://img.shields.io/badge/Discord-CAMEL--AI-7289da?logo=discord&logoColor=white&color=7289da
454
425
  [wechat-url]: https://ghli.org/camel/wechat.png
455
426
  [wechat-image]: https://img.shields.io/badge/WeChat-CamelAIOrg-brightgreen?logo=wechat&logoColor=white
@@ -1,38 +1,41 @@
1
- camel/__init__.py,sha256=lQSKaE7GqJm4K6yZtPgrzu5SimTTJ16AVlL93Pk2DuI,778
1
+ camel/__init__.py,sha256=oznUSYbWcSq6-AFAkPGCBiLU771F8anszkQ_VqhayFI,780
2
2
  camel/agents/__init__.py,sha256=SSU1wbhZXWwQnE0rRxkpyN57kEu72KklsZNcdLkXfTs,1551
3
3
  camel/agents/base.py,sha256=X39qWSiT1WnDqaJ9k3gQrTpOQSwUKzNEVpp5AY6fDH8,1130
4
- camel/agents/chat_agent.py,sha256=KwbKYfNzYSgNDHeUeBWOFUTlqVn8P8h2eHTVpeBNK8Q,43735
4
+ camel/agents/chat_agent.py,sha256=eA7kuzbfQkEdnvefxk6t_-MhB64ibSgSiQ54ztiqvJI,44764
5
5
  camel/agents/critic_agent.py,sha256=To-istnO-9Eb0iabdeIDrgfvkxYYfsdX9xIZiSrc3oM,7493
6
6
  camel/agents/deductive_reasoner_agent.py,sha256=49vwglWYHgXf-VRftdMN9OFGOwqdsXyTt45PP6z-pbg,13473
7
7
  camel/agents/embodied_agent.py,sha256=3ABuiRQXBpplKbuhPY5KNLJyKc6Z8SgXgzIges3ZwVs,7542
8
- camel/agents/knowledge_graph_agent.py,sha256=DNfFD3qJ-xMze3hphPPn66BpeDlchlNtF-7lj_QWFNc,9011
8
+ camel/agents/knowledge_graph_agent.py,sha256=TCj5G0pqXAK8aow7P9fYpf-V5vJeUES2fXgCpG1Eqjo,8968
9
9
  camel/agents/role_assignment_agent.py,sha256=DOKQVo9unusFOLJfNKsH-8BjvS_JBK7jjyqaTF4p4IY,5094
10
10
  camel/agents/search_agent.py,sha256=k4R29_S6GuKnqCnrccjw59MBAR0NCTeaMplI8mUnLVs,4622
11
11
  camel/agents/task_agent.py,sha256=n9xIU3QtcptRPSuHZJ4ntQ_M_a8AvJ6U9ZRV8VaxV5A,14660
12
12
  camel/agents/tool_agents/__init__.py,sha256=ulTNWU2qoFGe3pvVmCq_sdfeSX3NKZ0due66TYvsL-M,862
13
13
  camel/agents/tool_agents/base.py,sha256=nQAhfWi8a_bCgzlf5-G-tmj1fKm6AjpRc89NQkWwpnc,1399
14
14
  camel/agents/tool_agents/hugging_face_tool_agent.py,sha256=1Z5tG6f_86eL0vmtRZ-BJvoLDFFLhoHt8JtDvgat1xU,8723
15
- camel/bots/__init__.py,sha256=DGgIhb7Gr_ShnAldq-4wAXucOdSvKtiV3m6e9G10rbA,834
16
- camel/bots/discord_bot.py,sha256=VplQA162NqSohMzpCexSsuCCx_GdhAXOnL3040Ba1uE,8138
15
+ camel/bots/__init__.py,sha256=nreEUF1Udlx-nqasfLpDlSMIHpR-DQ82xg3dGSgZKLc,1184
16
+ camel/bots/discord_app.py,sha256=5lZtFfCfO_Q5wHe08dd2tKrCcalHHRs94-CE550DNpI,5004
17
+ camel/bots/slack/__init__.py,sha256=6DvvD5-9phNWdF8fDEYWU6ZaQo6fuOkRbFp2Y-jzKpw,1061
18
+ camel/bots/slack/models.py,sha256=cb3rD6vWPMTremG5wiqylJL1-I6AghrdlmaihE-xFok,5149
19
+ camel/bots/slack/slack_app.py,sha256=umTiWpMYv65i6rV3MR2jjdwswUfWLzX1C2s1--NCRtI,9950
17
20
  camel/bots/telegram_bot.py,sha256=MM91afWKUtEZLOoybFY7LGisQJFypc_p_P8kQOUlXwg,2747
18
- camel/configs/__init__.py,sha256=3SCXrA7ML8CNoOWQ1poJY6dE2e07Qxf7ACD_mdo2aJ8,2341
19
- camel/configs/anthropic_config.py,sha256=DGQoPyYrayhYQ7aSjkYYGHOZ5VdQ9qahtaS0p_GpU0Q,3294
20
- camel/configs/base_config.py,sha256=gjsDACMCk-hXDBk7qkeHcpbQrWy6jbp4iyzfqgghJEk,2485
21
+ camel/configs/__init__.py,sha256=uWDugt92v48tg3g78fI_6J2G5wdCA7Ds5IV6HXvuXF0,2299
22
+ camel/configs/anthropic_config.py,sha256=ie4un-NMWARs_ALaq-0LTqcZOkft5bAS4Ybv_mfigjQ,3284
23
+ camel/configs/base_config.py,sha256=JBrIAGoPHjTJwsWTuyfdtMFa0TpVRsddNpSr8KgggcQ,2473
21
24
  camel/configs/gemini_config.py,sha256=qhGdWMRP87E99ApQdRrf9UyFpp2R0k6Y2n9ZV27qpzs,6879
22
- camel/configs/groq_config.py,sha256=-ihiO5h4N_kUSlPNeBqIlnIkLkhC7oXsC2FYyAqtKp0,5755
25
+ camel/configs/groq_config.py,sha256=YO3OFqAM9c7CZE0XQqKt-GfNj5iryrwR2i7WHzHX6TQ,5750
23
26
  camel/configs/litellm_config.py,sha256=77k7HT-0s9Sq_g4KeDjL_MZId0Tx5TB8oupIyGQHx08,4692
24
27
  camel/configs/mistral_config.py,sha256=G9LuY0-3S6az-8j8kpqB-4asgoaxTOsZVYeZBYJl6LI,3634
25
- camel/configs/ollama_config.py,sha256=xrT-ulqvANjIu0bVxOzN93uaKUs8e2gW1tmYK1jULEM,4357
26
- camel/configs/openai_config.py,sha256=yQf7lkBcYTtCNAopow3SlZgcDMlMkiCpC5Dvhh9wb9M,7327
28
+ camel/configs/ollama_config.py,sha256=4Qw5V89wljCj7ie3zI6wXL7XqdCFmRH2TzVM6uqSV1k,4354
29
+ camel/configs/openai_config.py,sha256=Q-V3GmU08wiXxEIqsaPSWLN1GonRVXUFt-VWUAhD0KU,6477
27
30
  camel/configs/reka_config.py,sha256=ECYg3BT7onwZX-iKLq-5TBhCFdm70rV-9hZ_G6Ye8-k,3504
28
- camel/configs/samba_config.py,sha256=U1krJSFRaFCvNCxKxgT0zlYxifviHsdkS53hr6D_Bvg,10254
29
- camel/configs/togetherai_config.py,sha256=WERo8W6yb-qy_3qa1GUckt58J5XGKwN5X_nC9baL8Cs,5663
30
- camel/configs/vllm_config.py,sha256=jfeveBnlkkBHC2RFkffG6ZlTkGzkwrX_WXMwHkg36Jg,5516
31
- camel/configs/zhipuai_config.py,sha256=zU8Zaj3d9d7SCFEFIkCIRNlnJw9z_oFDmIoCQKrerEM,3600
31
+ camel/configs/samba_config.py,sha256=a9Y-dYkktXgIGGeEVW9NY7cCaLsBUoWsvkRlHratAZ8,10250
32
+ camel/configs/togetherai_config.py,sha256=-yUZWvD138PX2uvTzAv1WaFBwz5ViFeGl-S0xn7en-0,5661
33
+ camel/configs/vllm_config.py,sha256=zz0NlIE3Xd_2YT5iJk2OwnFvvTIVz5vMb79QUnhDf6o,5514
34
+ camel/configs/zhipuai_config.py,sha256=VW1s4cgT375ALk-W4SRvnJmGCNsZEtDpDb8MSi5tkqs,3595
32
35
  camel/embeddings/__init__.py,sha256=KTX6IC9b2ifKde-Yh7srSp_gNopvBwtDy8kEzazn5lE,1106
33
36
  camel/embeddings/base.py,sha256=deX70VXGmWGRAPal3HheXvMaarymRR5I1i90KPWGWXs,2196
34
37
  camel/embeddings/mistral_embedding.py,sha256=Ft5GYWgGXTtPS71AVut0wjGMbXPIcDPQbu7ovWRVwAQ,3241
35
- camel/embeddings/openai_embedding.py,sha256=TaNTVhKkCi7-9_k4IivavLeehY7qYnhLPK9WyFuwQac,3608
38
+ camel/embeddings/openai_embedding.py,sha256=28V5MwENVt306CTZUOgsM5-T8hrsReJJRcFlY3rRxUY,3608
36
39
  camel/embeddings/sentence_transformers_embeddings.py,sha256=ayYIBOADdmmhlmo1iZS8tI_mZ-rX0sxjljyQpkuftcw,2730
37
40
  camel/embeddings/vlm_embedding.py,sha256=VvD_b737snNrZTRE4ejFvWLjd_YT1DCTKl8yKIgRM-g,5436
38
41
  camel/generators.py,sha256=tcYDoHwSKN0rBiu7u4rWN9pb61O8OaclrNaasCqHSJM,10437
@@ -44,11 +47,12 @@ camel/interpreters/internal_python_interpreter.py,sha256=ZbVmSB2zvWbvvTOL0xpDlJe
44
47
  camel/interpreters/interpreter_error.py,sha256=4pI_dKohUKcQOrqJafolyjRfOHwBUuUBXCwwD46P4wE,886
45
48
  camel/interpreters/ipython_interpreter.py,sha256=B0v1DCiq6PmOYQXXQAQBX1oOYjgJ0geLwUG9UxPR4TM,5950
46
49
  camel/interpreters/subprocess_interpreter.py,sha256=nKxFXZJ9zGYlKdNlz6Ln7bvg65ejKZ8yAHgIFuR2WzM,6835
47
- camel/loaders/__init__.py,sha256=ClE516UbyUes6Zut8CCiH0zWqFwwpgEcP9ur3dte8iU,949
50
+ camel/loaders/__init__.py,sha256=7vhTU1SIxnTpBoiukhQARStzHmt39jaQG0dCa73zDCQ,1009
48
51
  camel/loaders/base_io.py,sha256=xzK67fqx66eYaM6fMXRJiSZfwKhFVNQmzuKURPtTzhk,10339
49
- camel/loaders/firecrawl_reader.py,sha256=OmnT4XdoL-naTg_nvUnN_sjiP6Xf4gdDxFUOqyQbKJo,6691
52
+ camel/loaders/chunkr_reader.py,sha256=hKlvTkU-E8TOgLj3zw6wiaAuqUNF_s8o8ET-Kr4kk4g,6074
53
+ camel/loaders/firecrawl_reader.py,sha256=q5-6F3FUlaliyczsydI25rhWWGMzmQznngJoPW1ANgM,6697
50
54
  camel/loaders/jina_url_reader.py,sha256=ur_2Z3NFrz5AbPFi5REyZh5fISkJ9H_UZV4gtmOSO04,3607
51
- camel/loaders/unstructured_io.py,sha256=c2-vBhgVAWD3bJ3Gqo4nOcM5-xGc8CIMXogkc5Li9dw,17502
55
+ camel/loaders/unstructured_io.py,sha256=XtaBr_teAyYbWCunwcwmetlLK25c8jzqr0jF3PGCC40,17435
52
56
  camel/memories/__init__.py,sha256=ml1Uj4Y_1Q2LfrTXOY38niF0x1H-N-u_zoN_VvR939U,1364
53
57
  camel/memories/agent_memories.py,sha256=pzmjztFXPyNpabMWLi_-oJljMkYQvDP_s6Yq5U0hVEs,6097
54
58
  camel/memories/base.py,sha256=kbyAmKkOfFdOKfHxwao8bIAbRSuOEXyzxPFd0NlvUCE,5003
@@ -58,30 +62,29 @@ camel/memories/blocks/vectordb_block.py,sha256=NekHoRa-8W9IKx6PPGZdhuDZiOhNxF8vX
58
62
  camel/memories/context_creators/__init__.py,sha256=0uLLP3YD46gOOh39her_weJo3viHmE4IWyWBLlutnqs,806
59
63
  camel/memories/context_creators/score_based.py,sha256=UrioLcsj4jB4Rz5mg5hYmR8UYZzoYXMCxX2PKxblhxY,5385
60
64
  camel/memories/records.py,sha256=kcXOATDTRRo-SCAcDpsV8Ttfie7p1GcXYzuXgXKJB0E,3686
61
- camel/messages/__init__.py,sha256=djLvpz6AmjeLzuUSQl7J6T2O4x8MwSdcH0l9fbj_3yg,1468
65
+ camel/messages/__init__.py,sha256=_aaXdZyuSI-KLZLEGtzXyUBAuDRO2cuWbHkD1udj2qU,1497
62
66
  camel/messages/base.py,sha256=694Zz19D4u-j8mmpRXwCVJ8cd2Wll6h7acbyNRofNTI,13722
63
67
  camel/messages/func_message.py,sha256=wqVhTC81g5Fb2b_2EPsOBP3rHZBTP6o9wMiIRkN_HAE,3807
64
- camel/models/__init__.py,sha256=CxrRisXkHgJPv7HdC6pblHuhSpDjUbUjrTdZeZ-0v7w,1971
65
- camel/models/anthropic_model.py,sha256=_xhnbrMsuumB2jkuv2pVv3MFYxNE5EL5kVlZbYYBo5E,5751
66
- camel/models/azure_openai_model.py,sha256=r5diPZp4XmCcZClkCqvTHB8frzRNou559j89dryKLKw,6078
67
- camel/models/base_model.py,sha256=UHyAgo6GzYZNLTZD1T0C3_WmHUPoh9Qoe_SfvdI7HrU,4387
68
- camel/models/gemini_model.py,sha256=h_kyD8LSpXCn2dQ4OEer5HwwEUwuTD65yRIRV4LD3Vs,7700
69
- camel/models/groq_model.py,sha256=Lm1br_2FBdqNQ3pCgMNf3VnjykYzttUKnHWExEXshLo,4753
70
- camel/models/litellm_model.py,sha256=5sTOzI07FsxDEW3jSK-XXBx91Yo8z9voahyCsK36U6U,5748
71
- camel/models/mistral_model.py,sha256=7K0hwk4QEGtCO_Btq9v7_iLQRgg6COpdgvXxRB8rd3U,9517
72
- camel/models/model_factory.py,sha256=_dQOx_MYxXih6uQOjkKR7uoIrhDcWRsMTKHbO3NLYN0,5974
73
- camel/models/nemotron_model.py,sha256=2Idf4wrZervxvfu6av42EKjefFtDnBb6cKnWCJUkqI4,2682
74
- camel/models/ollama_model.py,sha256=FSMwH2-856Zhxusm4B773xBBHdlD3UOw9OAuH5eTJTw,5686
75
- camel/models/open_source_model.py,sha256=p5a2sCeZl5SyrgkygClndOrHEjpJxmyhE1CqKE2fZSw,6363
68
+ camel/models/__init__.py,sha256=7n9D48hxzr8tG4umKDENsSU6p8ihBhFrL12gBkGny1k,1892
69
+ camel/models/anthropic_model.py,sha256=MpwHqBSO5UUnnvWB52lw4aUSmL4sIXHAmYLNoBsL0_w,6073
70
+ camel/models/azure_openai_model.py,sha256=X_ivrvBh2jIilmTmFP56reHkbf_LlJbYL0OYfcnapbE,6175
71
+ camel/models/base_model.py,sha256=YW00vyLFG8WuIKtdfjrtLDSkzaw3Hvkv5PhsPhVQ4hY,4801
72
+ camel/models/gemini_model.py,sha256=PkmjwbPmuI1r5_bWL_yI96FjbR-EzW8uTL_9GuDMn5U,8078
73
+ camel/models/groq_model.py,sha256=N8he05SLAjPLajjA3S6U3qJ9cHE17nCcVScpYiSpGrA,4969
74
+ camel/models/litellm_model.py,sha256=V1MKO9QRzJsFbemuLEt9XOG96-U8W7mo7HaV507Ja7o,5302
75
+ camel/models/mistral_model.py,sha256=bdkn2IYjDpqyKtIMk93Pr3pLZEkxy5rNLnlmDvYiaMk,9778
76
+ camel/models/model_factory.py,sha256=syADEJfPcbQUd4TWUWzMH1EK-RcjqbzcgLQ7YNhLrdY,5333
77
+ camel/models/nemotron_model.py,sha256=ZHKffxPxHmKxyKNIEVEgpWgRjeRvDWmyQ7rHPDERQyE,2911
78
+ camel/models/ollama_model.py,sha256=EH5B3QVxogCUR3J7S066lO0qXkRPY9vJGtPMZYCyrSg,5580
76
79
  camel/models/openai_audio_models.py,sha256=_ddOxqzFZCVZaK6h33Z0THU6HXk2XlJTxVWquZ3oOaQ,10042
77
- camel/models/openai_compatibility_model.py,sha256=jeYBqB3xjV8jx8CJGFShkISO_TrgwubCU1WfmSiDhBY,4758
78
- camel/models/openai_model.py,sha256=27NbN0bU_cAPmWjwsWceNO4zW8WS2j3P_YWNTXeg1O8,5464
79
- camel/models/reka_model.py,sha256=_ERZvtkK0Gd7GUx3f4VVqqtH093clVMoJfa896t9f2M,8043
80
- camel/models/samba_model.py,sha256=CgAYMIVJFAEoyCOsYS7qD_bvWhzOkvA6SD5nGBClbzE,17699
81
- camel/models/stub_model.py,sha256=DuqaBsS55STSbcLJsk025Uwo_u4ixrSSKqKEoZj2ihY,3680
82
- camel/models/togetherai_model.py,sha256=kUFGxb6cXUgkvMNQ0MsDKW27Udw622zt2QIVa3U7iLU,5461
83
- camel/models/vllm_model.py,sha256=Q71tfFyfd1t81r1CxS6UT5KLadDYPgOt_cG_z6DHkWE,5808
84
- camel/models/zhipuai_model.py,sha256=JqJDEMk6vWH-ZnKkMwdG4yDvJWf1xk4PBsp2ifSFGR0,4939
80
+ camel/models/openai_compatible_model.py,sha256=ToABSdpKaqmLsQeGlGUCwZoT2UvLIyVEYfMzxOumumY,4064
81
+ camel/models/openai_model.py,sha256=3RC-8GsI0dTY3zu9JZQCdgNTQq5UFPrVCUYfxTcYeug,6089
82
+ camel/models/reka_model.py,sha256=KZYNQFN2Wey0qe7i25yo7YIW5ciTH03fnxXZk-UaYWk,8283
83
+ camel/models/samba_model.py,sha256=4C9XrhLD6VQbTFkO1nYkED_J2lbwE7sS4K2r23dec2I,14400
84
+ camel/models/stub_model.py,sha256=ewwO7AMQ3BbbO7Yk8wkVVXWy27yv9aNgxu4QU_e-ZWE,3709
85
+ camel/models/togetherai_model.py,sha256=gEf8r2d5z4hPqvW8TKiyMOja9iWrNTwdSk9ljiYzFsQ,5251
86
+ camel/models/vllm_model.py,sha256=eUUZOeyuBIrGKhbJg0slpwPCGHcr30EJWhL8kF3Zu3w,5655
87
+ camel/models/zhipuai_model.py,sha256=DFKxs_JRoeKPNaB3mEeoMrHieLu9RvAze8WQw0_QrGk,5126
85
88
  camel/prompts/__init__.py,sha256=O5bkcuwj2kXTkz5yDPiiMI8KN04vI8bCKG7mGE1SIdI,2326
86
89
  camel/prompts/ai_society.py,sha256=ApgvIED1Z_mdsWDNc2_u35Ktp7pEKksMrOIQKo_q5cI,6306
87
90
  camel/prompts/base.py,sha256=VMde6w97zHPP03OA628wGwXhtJweoccOK1B1f3aESDo,8464
@@ -101,24 +104,24 @@ camel/prompts/video_description_prompt.py,sha256=HRd3fHXftKwBm5QH7Tvm3FabgZPCoAv
101
104
  camel/responses/__init__.py,sha256=edtTQskOgq5obyITziRFL62HTJP9sAikAtP9vrFacEQ,795
102
105
  camel/responses/agent_responses.py,sha256=sGlGwXz2brWI-FpiU5EhVRpZvcfGWUmooAF0ukqAF3I,1771
103
106
  camel/retrievers/__init__.py,sha256=CuP3B77zl2PoF-W2y9xSkTGRzoK2J4TlUHdCtuJD8dg,1059
104
- camel/retrievers/auto_retriever.py,sha256=XPyECIXO7lFbHoLMPasFurYmC9Me6wa7JPKHZWYLLuo,12571
107
+ camel/retrievers/auto_retriever.py,sha256=WJ1b-xOGu13nSqb1Sz5gs0xVRvVnbp71Lp9lXJ2Yq2Y,13010
105
108
  camel/retrievers/base.py,sha256=sgqaJDwIkWluEgPBlukFN7RYZJnrp0imCAOEWm6bZ40,2646
106
109
  camel/retrievers/bm25_retriever.py,sha256=Dr7Yfkjw45sovI1EVNByGIMj7KERWrr8JHlh8csSF1s,5155
107
110
  camel/retrievers/cohere_rerank_retriever.py,sha256=HvnFqXpsX9EdBOab0kFLDyxxJnknPFMVxyQJQDlHbOA,4100
108
- camel/retrievers/vector_retriever.py,sha256=zVsxWrv7-69GBRzC90Bt_JuMy8rQLsUYXXn5glZgdgo,9019
111
+ camel/retrievers/vector_retriever.py,sha256=8ICL6lNiqv2fSk_Z4SYek3x_xYkYAsV9wAO0ibzex_E,9588
109
112
  camel/societies/__init__.py,sha256=JhGwUHjht4CewzC3shKuxmgB3oS7FIxIxmiKyhNsfIs,832
110
- camel/societies/babyagi_playing.py,sha256=tZTcfQrD9ECUhkqwdthsM2yFPfYGKsoAGMfTlrxt5as,11675
111
- camel/societies/role_playing.py,sha256=tu6AyUPEe0j3rGNwzCCTiGqHw9RWdyTStB5JbPNvBs8,23403
113
+ camel/societies/babyagi_playing.py,sha256=z0nKqtq4374BLN-eGNTf07OcTPmJtRO4avTDkbeaOHg,11788
114
+ camel/societies/role_playing.py,sha256=LSkYqNAFcKn9JNFLIEfoUTNP7cYeXaIzaIHcha9IM9Q,23469
112
115
  camel/storages/__init__.py,sha256=erzsXX2rPVodgWxlV6hSjwmc4UCguzVb6m3ahBoyWu0,1623
113
116
  camel/storages/graph_storages/__init__.py,sha256=YFwNjNYaxpKT2j5dxWZur62T8J0ZPER3DHaWGEAXgo8,954
114
117
  camel/storages/graph_storages/base.py,sha256=-Ys1BIuz4H5FvYMZTBIjg8Cfv40CPQ-OsovwMzygEgU,2858
115
- camel/storages/graph_storages/graph_element.py,sha256=FGYJZpS3UeSd9yyzz5KelMqbpJ6m5177PspZ8ueoQQI,2580
118
+ camel/storages/graph_storages/graph_element.py,sha256=iUpX1A9QMdCnaoqTuqDBRiulNkvXPEsetPzh_h2ruAU,2580
116
119
  camel/storages/graph_storages/nebula_graph.py,sha256=PFLI--kgC93Nt5kPFWH2DVqwvk2GrC--dr2bzwvmeXw,18863
117
120
  camel/storages/graph_storages/neo4j_graph.py,sha256=YAT7u2jPs5pNSO_tSwARHJyt3HqYXpbpE4ZBtv935Kg,22138
118
121
  camel/storages/key_value_storages/__init__.py,sha256=v3Wy3CAJNgrPyBV4miOC6TxQDL-PYdGW8HbqiYl7k00,968
119
122
  camel/storages/key_value_storages/base.py,sha256=knxni8WiyTXJ2emZQO-JIsbxw6Ei7EO6dj-bU2YCoSY,2183
120
123
  camel/storages/key_value_storages/in_memory.py,sha256=pAcKkVd7jlPS6seR31agdyjx9TNIIRMIyx497XWXwbs,1955
121
- camel/storages/key_value_storages/json.py,sha256=BlOhuyWbSjzKixtA5e9O0z8BFK4pi96OcPNxnFfDPQw,3471
124
+ camel/storages/key_value_storages/json.py,sha256=xc06GNFwsdz0rMqMhaNG5OpAETfvGyormwzuATeH9RY,3492
122
125
  camel/storages/key_value_storages/redis.py,sha256=nQmdVUTLL0bW3hDeX5k-V2XKv0n6wuvbBxlrBmWVbpw,5706
123
126
  camel/storages/object_storages/__init__.py,sha256=H-0dcB_SOxn1eyg2ojq5Nk9dZQURBsPZ6u2Xw3L7_To,921
124
127
  camel/storages/object_storages/amazon_s3.py,sha256=Sm-NqjrpaaHCOfMuaRoI7DjuzG3uFjG4d7OEfa5yQK4,7401
@@ -136,14 +139,18 @@ camel/terminators/__init__.py,sha256=pE7fcfDUNngdbm1BhzSQPRMXNbdd28rl9YbF4gKWwXE
136
139
  camel/terminators/base.py,sha256=TSkl3maNEsdjyAniJaSgFfD4UF8RQ1LwNIiGw0dN8Gg,1396
137
140
  camel/terminators/response_terminator.py,sha256=zcXuigbvlclUoBv4xcVbfU36ZohUT1RhI-rSnukloUY,4951
138
141
  camel/terminators/token_limit_terminator.py,sha256=mK30wVUnoqNAvIo-wxkqY5gUSNay2M04rsAktKqoiOI,2087
139
- camel/toolkits/__init__.py,sha256=g5xQo15tx1WiR6MEHS6IXayLSnwSWk88VK7dosEG79M,2033
140
- camel/toolkits/base.py,sha256=ez04Ei8jwIAws023bM19EGkOPUkQMouULqBvOKfM4kM,986
141
- camel/toolkits/code_execution.py,sha256=fWBhn1_3adiv7YYuA0gJzEBlc_dYNS6_hVtDbgB-zX0,2425
142
- camel/toolkits/dalle_toolkit.py,sha256=IalDFfNCz58LMRdCZNSJfLMiauHGBGN9XNRV7pzuf28,5261
143
- camel/toolkits/github_toolkit.py,sha256=ZauRY-kW8nx_L6igVEF62hD16j3KhqU2r49t1j6hO78,10979
144
- camel/toolkits/google_maps_toolkit.py,sha256=7kTWBp6hzh10MryFY4RLIBAWD-9fjiecHIQcRm0OsvA,11972
145
- camel/toolkits/linkedin_toolkit.py,sha256=JgO8vpuum_KBijvKvDSjM9QpRPedT1azVSZHJb4EtfM,7933
146
- camel/toolkits/math_toolkit.py,sha256=r-85DHvihR87DU6n_W75pecV1P9xV3Hylfp6u-ue7T4,2521
142
+ camel/toolkits/__init__.py,sha256=8B4vrtjaOaBhEeQekbxoVSLTds0Am3CjWFeADkUaCyg,2415
143
+ camel/toolkits/arxiv_toolkit.py,sha256=puM9SvpbitvAn0p6v9DexO307suAP_Fcq4b5V9t4MfE,5672
144
+ camel/toolkits/ask_news_toolkit.py,sha256=6imOAdQ2kur6U99xmCPFM7m_HcgQLqSeMWLb_u5t25A,23524
145
+ camel/toolkits/base.py,sha256=seVhKQIkPWSADIn81CVAeYGJvrtFdnthPjRe6T7Xpxc,979
146
+ camel/toolkits/code_execution.py,sha256=-jBubEBsVPCjGTOXIVTj0kXntajqB98J0NPLlB6Xu6M,2426
147
+ camel/toolkits/dalle_toolkit.py,sha256=osyBhZy_HYPAJvLsQk4PIo6w2by1RRn3D-gUZMEdv3I,5247
148
+ camel/toolkits/function_tool.py,sha256=OwAC6Eca_QaYf0DKS2BSBM7eA71-dWBpKi77TbL3_2E,15508
149
+ camel/toolkits/github_toolkit.py,sha256=pWXf0z_SFZPfANwKycNmnENT6aEk4tADMjqAW_eUhgE,10972
150
+ camel/toolkits/google_maps_toolkit.py,sha256=73CrBaL_DKEWiN3eP7CdFOxX2ZQ6NuPKR7oQeAOiKZw,11954
151
+ camel/toolkits/google_scholar_toolkit.py,sha256=LC64ksmsgM4OR81yhAudsBR0Lq13z_TpdG9XmHi44u0,5424
152
+ camel/toolkits/linkedin_toolkit.py,sha256=ltKuzGclbxLBijDQcqAzYk86Ts-E4gpkrv_UiEMCpB4,7917
153
+ camel/toolkits/math_toolkit.py,sha256=mIpMmMg5GiMzNDeJCKQegobxmq-IINImqH8qx_WBcFg,2501
147
154
  camel/toolkits/open_api_specs/biztoc/__init__.py,sha256=f3LXNDzN2XWWoF2D0nesG8VuEA6Zd14i2aiTDbCm5bA,708
148
155
  camel/toolkits/open_api_specs/biztoc/ai-plugin.json,sha256=IJinQbLv5MFPGFwdN7PbOhwArFVExSEZdJspe-mOBIo,866
149
156
  camel/toolkits/open_api_specs/biztoc/openapi.yaml,sha256=SQ2bYIWb1nVBtkBeFaOihiWQ71oZ2bzz0fCgu6igM8A,610
@@ -169,31 +176,33 @@ camel/toolkits/open_api_specs/web_scraper/ai-plugin.json,sha256=jjHvbj0DQ4AYcL9J
169
176
  camel/toolkits/open_api_specs/web_scraper/openapi.yaml,sha256=u_WalQ01e8W1D27VnZviOylpGmJ-zssYrfAgkzqdoyk,2191
170
177
  camel/toolkits/open_api_specs/web_scraper/paths/__init__.py,sha256=f3LXNDzN2XWWoF2D0nesG8VuEA6Zd14i2aiTDbCm5bA,708
171
178
  camel/toolkits/open_api_specs/web_scraper/paths/scraper.py,sha256=SQGbFkshLN4xm-Ya49ssbSvaU1nFVNFYhWsEPYVeFe0,1123
172
- camel/toolkits/open_api_toolkit.py,sha256=dwXd-msNKVAOmqF1WIkdsK8bcOjDH9rV2sT1AJy8pMY,23334
173
- camel/toolkits/openai_function.py,sha256=eaE441qxLvuRKr_WrpYLGkr5P2Nav07VVdR29n76RkU,14767
174
- camel/toolkits/reddit_toolkit.py,sha256=zVojG_dM_ZbU8lZDM7AnxfMsL2JVWnNYdWqvdYUwVeM,8908
175
- camel/toolkits/retrieval_toolkit.py,sha256=qE1IS2WZnFtnxvj4t7eSUYMhKpK5-4ifExbIBgLEPT8,3713
176
- camel/toolkits/search_toolkit.py,sha256=vXe026bQpLic09iwY5PN4RS6SXeHYBBkjfnOlJYB670,12943
177
- camel/toolkits/slack_toolkit.py,sha256=gblCbN_RCsOdgo1GGUF-R8YJneNRjezJMHhYoRFjCE0,10774
178
- camel/toolkits/twitter_toolkit.py,sha256=0QYLlsg4hUVev2Z0hPJHksDNHG_54IiVHsB3IxCqrXs,19741
179
- camel/toolkits/weather_toolkit.py,sha256=n4YrUI_jTIH7oqH918IdHbXLgfQ2BPGIWWK8Jp8G1Uw,7054
180
- camel/types/__init__.py,sha256=ArKXATj3z_Vv4ISmROVeo6Mv3tj5kE1dTkqfgwyxVY4,1975
181
- camel/types/enums.py,sha256=OfxiXL7VRcIQgfEEu0gdFeHPWGQpiuXHOC86jJE47DA,17773
182
- camel/types/openai_types.py,sha256=BNQ6iCzKTjSvgcXFsAFIgrUS_YUFZBU6bDoyAp387hI,2045
183
- camel/utils/__init__.py,sha256=IdI9v0FetNR-nx-Hg4bmNHoYto6Xfcs_uaomksdewmo,2303
184
- camel/utils/async_func.py,sha256=SLo8KPkrNKdsONvFf3KBb33EgFn4gH2EKSX1aI_LKes,1578
185
- camel/utils/commons.py,sha256=kJ6-9pnt6HgERZh3DXofMUzT0FvDujvybuZG4rzjlso,16611
179
+ camel/toolkits/open_api_toolkit.py,sha256=XDQrKmtgS489lVoxex5lpFoto1ATLH4v_ROsu0FERGA,23322
180
+ camel/toolkits/reddit_toolkit.py,sha256=zCmZcQfliFokXWuBHmf2kirv17KqHQGXOxP2PbtVeEY,8892
181
+ camel/toolkits/retrieval_toolkit.py,sha256=FSl1zWjUHZvfFttX7q0FqjMDXw15rd2D2-zzE9T2JdE,3701
182
+ camel/toolkits/search_toolkit.py,sha256=IR9pfeh7aNf687Tp9ORzOC_a7T9jWnkT20YKVYS-dvk,12921
183
+ camel/toolkits/slack_toolkit.py,sha256=ko_zHDRssMmW4vouXIeKAB9Q2j4siktPo_GFui5GfNw,10750
184
+ camel/toolkits/twitter_toolkit.py,sha256=6EoyecIhclpmaOZvjKRbAy9hw6Y6Wkl5Di15-AVn3kA,15517
185
+ camel/toolkits/weather_toolkit.py,sha256=argNmFaHeXP0oqYTaFWPSTH-b2x0u7kEfkJTHaXEdV4,7038
186
+ camel/toolkits/whatsapp_toolkit.py,sha256=NC1nSgsmOU4jVjqrJoKz6w0e99aJg8fKp4M--JOR9sM,6338
187
+ camel/types/__init__.py,sha256=7DQOBYiB5WN7XPVyWeozXfnhujUNEdsdsmWJ7E1JzjE,2087
188
+ camel/types/enums.py,sha256=jtk4xdBPDMF2CVDaQxPobigTTtE8AanWtcmPQFJV4RQ,16001
189
+ camel/types/openai_types.py,sha256=q3EIk0ovQXDcmhScr0VNTIoRvmoNuwMWVtTmcBAmJsg,2133
190
+ camel/types/unified_model_type.py,sha256=jZe4ZcApIXsGNKi2vBFAYRIRw6mtADX_xoW6SOfMgl0,3453
191
+ camel/utils/__init__.py,sha256=5s6ExvqQY7LXTF8WHpDvGZJKLh74DcLZVPOz4NDIu8g,2245
192
+ camel/utils/async_func.py,sha256=_N3HIrQ9QagXjHzgTd_OKHDlmi059yPw2_lf8Pb6NHQ,1562
193
+ camel/utils/commons.py,sha256=Bj_QzhNddDRqKqgLBOBL9lMl0jvmbaE-YU3a72IzSjs,17533
186
194
  camel/utils/constants.py,sha256=8n4F8Y-DZy4z2F0hRvAq6f-d9SbS59kK5FyLrnJ3mkY,1360
187
- camel/utils/token_counting.py,sha256=AVGml8X_qq3rPdzw2tc9I3n-oEkGyNH_vPsedhVtew0,21318
195
+ camel/utils/token_counting.py,sha256=6mc5PmyN5sOP02u02r7Jjxki75hjk9z1KPaIx_0wFmY,14624
188
196
  camel/workforce/__init__.py,sha256=m2KbPItARjIyKiHc_Z34joWTJ-1XnIJfQqAZEeonz2U,926
189
197
  camel/workforce/base.py,sha256=ScUPdtMLJgvvJkGEku6rrr4gBRw3GFt3V8HlYOY5Y8A,1809
190
198
  camel/workforce/prompts.py,sha256=0Wcu7HpiyaD_387urc2P1uY9-DN8JAdk00HSlhNWz34,6184
191
- camel/workforce/role_playing_worker.py,sha256=pKKT6MdVCPeag5s45yOzjT4Gn1u_aTbERSVw53ISBUY,7107
192
- camel/workforce/single_agent_worker.py,sha256=DsibU4VkdFWuzi6mhMnT-YYm3FcVGcKfF7r1WtGii3E,3561
193
- camel/workforce/task_channel.py,sha256=oQJ-qzXWBqZljwV3EdZ7Kpo7RExZfI_tqg0bop14clM,6741
199
+ camel/workforce/role_playing_worker.py,sha256=CIo_akfzeCvOovfDXR847DGR1FQ8jm28koiayuCsNzM,7109
200
+ camel/workforce/single_agent_worker.py,sha256=k6QFoKwTfdzfn6_kYqaDhQA2gLytF6aKZf8Z_ZW_Gvw,3563
201
+ camel/workforce/task_channel.py,sha256=WE3SHp5TKaXDzKnoul9KPfk-PkBMcGT6akVId0RtWpY,6724
194
202
  camel/workforce/utils.py,sha256=kBrjA_k9BblJBT13kW0eQYcBDjetyjOUHMbRuh_IfPM,2270
195
203
  camel/workforce/worker.py,sha256=oZtl3PhxgpizKy7W_wB94Qm4Z2Tw4k1SQsqAGAi_XoI,3844
196
- camel/workforce/workforce.py,sha256=lF0ZeGtol91N3kAlAFwDxnO6YYVKmZPohxNb5ezHEUc,18185
197
- camel_ai-0.2.3a1.dist-info/METADATA,sha256=olGoGgC1MVl3wzc9iIzC-GClt432MDWupifzdfRYFuk,25040
198
- camel_ai-0.2.3a1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
199
- camel_ai-0.2.3a1.dist-info/RECORD,,
204
+ camel/workforce/workforce.py,sha256=IV911OlzSng_qR8KafFlDvkUEzEFa6A_upTgi8kZKxI,18191
205
+ camel_ai-0.2.3a2.dist-info/LICENSE,sha256=id0nB2my5kG0xXeimIu5zZrbHLS6EQvxvkKkzIHaT2k,11343
206
+ camel_ai-0.2.3a2.dist-info/METADATA,sha256=NBWV5uswsAPnA51YrdIVfBMlsUua-dCdYLhIIilP4mw,23185
207
+ camel_ai-0.2.3a2.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
208
+ camel_ai-0.2.3a2.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.9.0
2
+ Generator: poetry-core 1.9.1
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any