camel-ai 0.2.9__py3-none-any.whl → 0.2.11__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 (242) hide show
  1. camel/__init__.py +10 -5
  2. camel/agents/__init__.py +4 -4
  3. camel/agents/base.py +4 -4
  4. camel/agents/chat_agent.py +106 -42
  5. camel/agents/critic_agent.py +4 -4
  6. camel/agents/deductive_reasoner_agent.py +8 -5
  7. camel/agents/embodied_agent.py +4 -4
  8. camel/agents/knowledge_graph_agent.py +4 -4
  9. camel/agents/role_assignment_agent.py +4 -4
  10. camel/agents/search_agent.py +4 -4
  11. camel/agents/task_agent.py +4 -4
  12. camel/agents/tool_agents/__init__.py +4 -4
  13. camel/agents/tool_agents/base.py +4 -4
  14. camel/agents/tool_agents/hugging_face_tool_agent.py +4 -4
  15. camel/bots/__init__.py +4 -4
  16. camel/bots/discord_app.py +4 -4
  17. camel/bots/slack/__init__.py +4 -4
  18. camel/bots/slack/models.py +4 -4
  19. camel/bots/slack/slack_app.py +4 -4
  20. camel/bots/telegram_bot.py +4 -4
  21. camel/configs/__init__.py +13 -4
  22. camel/configs/anthropic_config.py +4 -4
  23. camel/configs/base_config.py +4 -4
  24. camel/configs/cohere_config.py +76 -0
  25. camel/configs/deepseek_config.py +134 -0
  26. camel/configs/gemini_config.py +85 -127
  27. camel/configs/groq_config.py +4 -4
  28. camel/configs/litellm_config.py +4 -4
  29. camel/configs/mistral_config.py +4 -7
  30. camel/configs/nvidia_config.py +70 -0
  31. camel/configs/ollama_config.py +4 -4
  32. camel/configs/openai_config.py +32 -7
  33. camel/configs/qwen_config.py +4 -4
  34. camel/configs/reka_config.py +4 -4
  35. camel/configs/samba_config.py +4 -4
  36. camel/configs/togetherai_config.py +4 -4
  37. camel/configs/vllm_config.py +14 -5
  38. camel/configs/yi_config.py +4 -4
  39. camel/configs/zhipuai_config.py +4 -4
  40. camel/embeddings/__init__.py +6 -4
  41. camel/embeddings/base.py +4 -4
  42. camel/embeddings/mistral_embedding.py +4 -4
  43. camel/embeddings/openai_compatible_embedding.py +91 -0
  44. camel/embeddings/openai_embedding.py +4 -4
  45. camel/embeddings/sentence_transformers_embeddings.py +4 -4
  46. camel/embeddings/vlm_embedding.py +8 -5
  47. camel/generators.py +4 -4
  48. camel/human.py +4 -4
  49. camel/interpreters/__init__.py +4 -4
  50. camel/interpreters/base.py +4 -4
  51. camel/interpreters/docker_interpreter.py +11 -6
  52. camel/interpreters/internal_python_interpreter.py +4 -4
  53. camel/interpreters/interpreter_error.py +4 -4
  54. camel/interpreters/ipython_interpreter.py +4 -4
  55. camel/interpreters/subprocess_interpreter.py +11 -6
  56. camel/loaders/__init__.py +4 -4
  57. camel/loaders/apify_reader.py +4 -4
  58. camel/loaders/base_io.py +4 -4
  59. camel/loaders/chunkr_reader.py +4 -4
  60. camel/loaders/firecrawl_reader.py +4 -7
  61. camel/loaders/jina_url_reader.py +4 -4
  62. camel/loaders/unstructured_io.py +4 -4
  63. camel/logger.py +112 -0
  64. camel/memories/__init__.py +4 -4
  65. camel/memories/agent_memories.py +4 -4
  66. camel/memories/base.py +4 -4
  67. camel/memories/blocks/__init__.py +4 -4
  68. camel/memories/blocks/chat_history_block.py +4 -4
  69. camel/memories/blocks/vectordb_block.py +4 -4
  70. camel/memories/context_creators/__init__.py +4 -4
  71. camel/memories/context_creators/score_based.py +4 -4
  72. camel/memories/records.py +4 -4
  73. camel/messages/__init__.py +20 -4
  74. camel/messages/base.py +118 -11
  75. camel/messages/conversion/__init__.py +31 -0
  76. camel/messages/conversion/alpaca.py +122 -0
  77. camel/messages/conversion/conversation_models.py +178 -0
  78. camel/messages/conversion/sharegpt/__init__.py +20 -0
  79. camel/messages/conversion/sharegpt/function_call_formatter.py +49 -0
  80. camel/messages/conversion/sharegpt/hermes/__init__.py +19 -0
  81. camel/messages/conversion/sharegpt/hermes/hermes_function_formatter.py +128 -0
  82. camel/messages/func_message.py +50 -4
  83. camel/models/__init__.py +13 -4
  84. camel/models/anthropic_model.py +4 -4
  85. camel/models/azure_openai_model.py +4 -4
  86. camel/models/base_model.py +4 -4
  87. camel/models/cohere_model.py +282 -0
  88. camel/models/deepseek_model.py +139 -0
  89. camel/models/gemini_model.py +61 -146
  90. camel/models/groq_model.py +4 -4
  91. camel/models/litellm_model.py +4 -4
  92. camel/models/mistral_model.py +4 -4
  93. camel/models/model_factory.py +13 -4
  94. camel/models/model_manager.py +212 -0
  95. camel/models/nemotron_model.py +4 -4
  96. camel/models/nvidia_model.py +141 -0
  97. camel/models/ollama_model.py +4 -4
  98. camel/models/openai_audio_models.py +4 -4
  99. camel/models/openai_compatible_model.py +4 -4
  100. camel/models/openai_model.py +43 -4
  101. camel/models/qwen_model.py +4 -4
  102. camel/models/reka_model.py +4 -4
  103. camel/models/samba_model.py +6 -5
  104. camel/models/stub_model.py +4 -4
  105. camel/models/togetherai_model.py +4 -4
  106. camel/models/vllm_model.py +4 -4
  107. camel/models/yi_model.py +4 -4
  108. camel/models/zhipuai_model.py +4 -4
  109. camel/personas/__init__.py +17 -0
  110. camel/personas/persona.py +103 -0
  111. camel/personas/persona_hub.py +293 -0
  112. camel/prompts/__init__.py +6 -4
  113. camel/prompts/ai_society.py +4 -4
  114. camel/prompts/base.py +4 -4
  115. camel/prompts/code.py +4 -4
  116. camel/prompts/evaluation.py +4 -4
  117. camel/prompts/generate_text_embedding_data.py +4 -4
  118. camel/prompts/image_craft.py +4 -4
  119. camel/prompts/misalignment.py +4 -4
  120. camel/prompts/multi_condition_image_craft.py +4 -4
  121. camel/prompts/object_recognition.py +4 -4
  122. camel/prompts/persona_hub.py +61 -0
  123. camel/prompts/prompt_templates.py +4 -4
  124. camel/prompts/role_description_prompt_template.py +4 -4
  125. camel/prompts/solution_extraction.py +4 -4
  126. camel/prompts/task_prompt_template.py +4 -4
  127. camel/prompts/translation.py +4 -4
  128. camel/prompts/video_description_prompt.py +4 -4
  129. camel/responses/__init__.py +4 -4
  130. camel/responses/agent_responses.py +4 -4
  131. camel/retrievers/__init__.py +4 -4
  132. camel/retrievers/auto_retriever.py +4 -4
  133. camel/retrievers/base.py +4 -4
  134. camel/retrievers/bm25_retriever.py +4 -4
  135. camel/retrievers/cohere_rerank_retriever.py +7 -9
  136. camel/retrievers/vector_retriever.py +26 -9
  137. camel/runtime/__init__.py +29 -0
  138. camel/runtime/api.py +93 -0
  139. camel/runtime/base.py +45 -0
  140. camel/runtime/configs.py +56 -0
  141. camel/runtime/docker_runtime.py +404 -0
  142. camel/runtime/llm_guard_runtime.py +199 -0
  143. camel/runtime/remote_http_runtime.py +204 -0
  144. camel/runtime/utils/__init__.py +20 -0
  145. camel/runtime/utils/function_risk_toolkit.py +58 -0
  146. camel/runtime/utils/ignore_risk_toolkit.py +72 -0
  147. camel/schemas/__init__.py +17 -0
  148. camel/schemas/base.py +45 -0
  149. camel/schemas/openai_converter.py +116 -0
  150. camel/societies/__init__.py +4 -4
  151. camel/societies/babyagi_playing.py +8 -5
  152. camel/societies/role_playing.py +4 -4
  153. camel/societies/workforce/__init__.py +4 -4
  154. camel/societies/workforce/base.py +4 -4
  155. camel/societies/workforce/prompts.py +4 -4
  156. camel/societies/workforce/role_playing_worker.py +4 -4
  157. camel/societies/workforce/single_agent_worker.py +4 -4
  158. camel/societies/workforce/task_channel.py +4 -4
  159. camel/societies/workforce/utils.py +4 -4
  160. camel/societies/workforce/worker.py +4 -4
  161. camel/societies/workforce/workforce.py +7 -7
  162. camel/storages/__init__.py +4 -4
  163. camel/storages/graph_storages/__init__.py +4 -4
  164. camel/storages/graph_storages/base.py +4 -4
  165. camel/storages/graph_storages/graph_element.py +4 -4
  166. camel/storages/graph_storages/nebula_graph.py +4 -4
  167. camel/storages/graph_storages/neo4j_graph.py +4 -4
  168. camel/storages/key_value_storages/__init__.py +4 -4
  169. camel/storages/key_value_storages/base.py +4 -4
  170. camel/storages/key_value_storages/in_memory.py +4 -4
  171. camel/storages/key_value_storages/json.py +4 -4
  172. camel/storages/key_value_storages/redis.py +4 -4
  173. camel/storages/object_storages/__init__.py +4 -4
  174. camel/storages/object_storages/amazon_s3.py +4 -4
  175. camel/storages/object_storages/azure_blob.py +4 -4
  176. camel/storages/object_storages/base.py +4 -4
  177. camel/storages/object_storages/google_cloud.py +4 -4
  178. camel/storages/vectordb_storages/__init__.py +4 -4
  179. camel/storages/vectordb_storages/base.py +4 -4
  180. camel/storages/vectordb_storages/milvus.py +4 -4
  181. camel/storages/vectordb_storages/qdrant.py +4 -4
  182. camel/tasks/__init__.py +4 -4
  183. camel/tasks/task.py +4 -4
  184. camel/tasks/task_prompt.py +4 -4
  185. camel/terminators/__init__.py +4 -4
  186. camel/terminators/base.py +4 -4
  187. camel/terminators/response_terminator.py +4 -4
  188. camel/terminators/token_limit_terminator.py +4 -4
  189. camel/toolkits/__init__.py +16 -17
  190. camel/toolkits/arxiv_toolkit.py +4 -4
  191. camel/toolkits/ask_news_toolkit.py +7 -18
  192. camel/toolkits/base.py +4 -4
  193. camel/toolkits/code_execution.py +57 -10
  194. camel/toolkits/dalle_toolkit.py +4 -7
  195. camel/toolkits/data_commons_toolkit.py +4 -4
  196. camel/toolkits/function_tool.py +220 -69
  197. camel/toolkits/github_toolkit.py +4 -4
  198. camel/toolkits/google_maps_toolkit.py +4 -4
  199. camel/toolkits/google_scholar_toolkit.py +4 -4
  200. camel/toolkits/human_toolkit.py +53 -0
  201. camel/toolkits/linkedin_toolkit.py +4 -4
  202. camel/toolkits/math_toolkit.py +4 -7
  203. camel/toolkits/meshy_toolkit.py +185 -0
  204. camel/toolkits/notion_toolkit.py +4 -4
  205. camel/toolkits/open_api_specs/biztoc/__init__.py +4 -4
  206. camel/toolkits/open_api_specs/coursera/__init__.py +4 -4
  207. camel/toolkits/open_api_specs/create_qr_code/__init__.py +4 -4
  208. camel/toolkits/open_api_specs/klarna/__init__.py +4 -4
  209. camel/toolkits/open_api_specs/nasa_apod/__init__.py +4 -4
  210. camel/toolkits/open_api_specs/outschool/__init__.py +4 -4
  211. camel/toolkits/open_api_specs/outschool/paths/__init__.py +4 -4
  212. camel/toolkits/open_api_specs/outschool/paths/get_classes.py +4 -4
  213. camel/toolkits/open_api_specs/outschool/paths/search_teachers.py +4 -4
  214. camel/toolkits/open_api_specs/security_config.py +4 -4
  215. camel/toolkits/open_api_specs/speak/__init__.py +4 -4
  216. camel/toolkits/open_api_specs/web_scraper/__init__.py +4 -4
  217. camel/toolkits/open_api_specs/web_scraper/paths/__init__.py +4 -4
  218. camel/toolkits/open_api_specs/web_scraper/paths/scraper.py +4 -4
  219. camel/toolkits/open_api_toolkit.py +4 -4
  220. camel/toolkits/reddit_toolkit.py +4 -4
  221. camel/toolkits/retrieval_toolkit.py +4 -4
  222. camel/toolkits/search_toolkit.py +49 -29
  223. camel/toolkits/slack_toolkit.py +4 -4
  224. camel/toolkits/twitter_toolkit.py +13 -13
  225. camel/toolkits/video_toolkit.py +211 -0
  226. camel/toolkits/weather_toolkit.py +4 -7
  227. camel/toolkits/whatsapp_toolkit.py +6 -6
  228. camel/types/__init__.py +6 -4
  229. camel/types/enums.py +118 -15
  230. camel/types/openai_types.py +6 -4
  231. camel/types/unified_model_type.py +9 -4
  232. camel/utils/__init__.py +35 -33
  233. camel/utils/async_func.py +4 -4
  234. camel/utils/commons.py +26 -9
  235. camel/utils/constants.py +4 -4
  236. camel/utils/response_format.py +63 -0
  237. camel/utils/token_counting.py +8 -5
  238. {camel_ai-0.2.9.dist-info → camel_ai-0.2.11.dist-info}/METADATA +108 -56
  239. camel_ai-0.2.11.dist-info/RECORD +252 -0
  240. camel_ai-0.2.9.dist-info/RECORD +0 -215
  241. {camel_ai-0.2.9.dist-info → camel_ai-0.2.11.dist-info}/LICENSE +0 -0
  242. {camel_ai-0.2.9.dist-info → camel_ai-0.2.11.dist-info}/WHEEL +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: camel-ai
3
- Version: 0.2.9
3
+ Version: 0.2.11
4
4
  Summary: Communicative Agents for AI Society Study
5
5
  Home-page: https://www.camel-ai.org/
6
6
  License: Apache-2.0
@@ -21,6 +21,7 @@ Provides-Extra: model-platforms
21
21
  Provides-Extra: object-storages
22
22
  Provides-Extra: rag
23
23
  Provides-Extra: retrievers
24
+ Provides-Extra: runtime
24
25
  Provides-Extra: search-tools
25
26
  Provides-Extra: test
26
27
  Provides-Extra: tools
@@ -36,7 +37,7 @@ Requires-Dist: asknews (>=0.7.43,<0.8.0) ; extra == "tools" or extra == "all"
36
37
  Requires-Dist: azure-storage-blob (>=12.21.0,<13.0.0) ; extra == "object-storages" or extra == "all"
37
38
  Requires-Dist: beautifulsoup4 (>=4,<5) ; extra == "tools" or extra == "all"
38
39
  Requires-Dist: botocore (>=1.35.3,<2.0.0) ; extra == "object-storages" or extra == "all"
39
- Requires-Dist: cohere (>=4.56,<5.0) ; extra == "rag" or extra == "retrievers" or extra == "all"
40
+ Requires-Dist: cohere (>=5.11.0,<6.0.0) ; extra == "rag" or extra == "model-platforms" or extra == "retrievers" or extra == "all" or extra == "all"
40
41
  Requires-Dist: colorama (>=0,<1)
41
42
  Requires-Dist: curl_cffi (==0.6.2)
42
43
  Requires-Dist: datacommons (>=1.4.3,<2.0.0) ; extra == "tools" or extra == "all"
@@ -44,11 +45,12 @@ Requires-Dist: datacommons_pandas (>=0.0.3,<0.0.4) ; extra == "tools" or extra =
44
45
  Requires-Dist: datasets (>=2,<3) ; extra == "huggingface-agent" or extra == "all"
45
46
  Requires-Dist: diffusers (>=0,<1) ; extra == "huggingface-agent" or extra == "all"
46
47
  Requires-Dist: discord.py (>=2.3.2,<3.0.0) ; extra == "tools" or extra == "all"
47
- Requires-Dist: docker (>=7.1.0,<8.0.0) ; extra == "tools" or extra == "all"
48
+ Requires-Dist: docker (>=7.1.0,<8.0.0) ; extra == "tools" or extra == "runtime" or extra == "all"
48
49
  Requires-Dist: docstring-parser (>=0.15,<0.16)
49
50
  Requires-Dist: docx2txt (>=0.8,<0.9) ; extra == "tools" or extra == "all"
50
51
  Requires-Dist: duckduckgo-search (>=6.2.12,<7.0.0) ; extra == "search-tools" or extra == "tools" or extra == "all"
51
52
  Requires-Dist: eval-type-backport (==0.2.0)
53
+ Requires-Dist: ffmpeg-python (>=0.2.0,<0.3.0) ; extra == "tools" or extra == "all"
52
54
  Requires-Dist: firecrawl-py (>=1.0.0,<2.0.0) ; extra == "tools" or extra == "all"
53
55
  Requires-Dist: google-cloud-storage (>=2.18.0,<3.0.0) ; extra == "object-storages" or extra == "all"
54
56
  Requires-Dist: google-generativeai (>=0.6.0,<0.7.0) ; extra == "model-platforms" or extra == "all"
@@ -77,7 +79,7 @@ Requires-Dist: prance (>=23.6.21.0,<24.0.0.0) ; extra == "tools" or extra == "al
77
79
  Requires-Dist: praw (>=7.7.1,<8.0.0) ; extra == "tools" or extra == "all"
78
80
  Requires-Dist: protobuf (>=4,<5)
79
81
  Requires-Dist: pyTelegramBotAPI (>=4.18.0,<5.0.0) ; extra == "tools" or extra == "all"
80
- Requires-Dist: pydantic (>=1.9,<3)
82
+ Requires-Dist: pydantic (>=1.9,<2.10)
81
83
  Requires-Dist: pydub (>=0.25.1,<0.26.0) ; extra == "tools" or extra == "all"
82
84
  Requires-Dist: pygithub (>=2.3.0,<3.0.0) ; extra == "tools" or extra == "all"
83
85
  Requires-Dist: pymilvus (>=2.4.0,<3.0.0) ; extra == "rag" or extra == "vector-databases" or extra == "all"
@@ -104,6 +106,7 @@ Requires-Dist: transformers (>=4,<5) ; extra == "huggingface-agent" or extra ==
104
106
  Requires-Dist: unstructured[all-docs] (>=0.14,<0.15) ; extra == "rag" or extra == "tools" or extra == "all"
105
107
  Requires-Dist: wikipedia (>=1,<2) ; extra == "search-tools" or extra == "tools" or extra == "all"
106
108
  Requires-Dist: wolframalpha (>=5.0.0,<6.0.0) ; extra == "search-tools" or extra == "tools" or extra == "all"
109
+ Requires-Dist: yt-dlp (>=2024.11.4,<2025.0.0) ; extra == "tools" or extra == "all"
107
110
  Project-URL: Documentation, https://docs.camel-ai.org
108
111
  Project-URL: Repository, https://github.com/camel-ai/camel
109
112
  Description-Content-Type: text/markdown
@@ -254,7 +257,7 @@ conda create --name camel python=3.10
254
257
  conda activate camel
255
258
 
256
259
  # Clone github repo
257
- git clone -b v0.2.9 https://github.com/camel-ai/camel.git
260
+ git clone -b v0.2.11 https://github.com/camel-ai/camel.git
258
261
 
259
262
  # Change directory into project directory
260
263
  cd camel
@@ -270,62 +273,24 @@ pip install -e .[all] # (Optional)
270
273
 
271
274
  Detailed guidance can be find [here](https://github.com/camel-ai/camel/blob/master/.container/README.md)
272
275
 
273
- ## Documentation
274
-
275
- The [complete documentation](https://camel-ai.github.io/camel/) pages for the CAMEL package. Also, detailed tutorials for each part are provided below:
276
-
277
- ### Agents
278
- Explore different types of agents, their roles, and their applications.
279
-
280
- - **[Creating Your First Agent](https://docs.camel-ai.org/cookbooks/create_your_first_agent.html)**
281
- - **[Creating Your First Agent Society](https://docs.camel-ai.org/cookbooks/create_your_first_agents_society.html)**
282
- - **[Embodied Agents](https://docs.camel-ai.org/cookbooks/embodied_agents.html)**
283
- - **[Critic Agents](https://docs.camel-ai.org/cookbooks/critic_agents_and_tree_search.html)**
284
-
285
- ---
276
+ ## Quick Start
286
277
 
287
- ### Key Modules
288
- Core components and utilities to build, operate, and enhance CAMEL-AI agents and societies.
278
+ By default, the agent uses the `ModelType.DEFAULT` model from the `ModelPlatformType.DEFAULT`. You can configure the default model platform and model type using environment variables. If these are not set, the agent will fall back to the default settings:
289
279
 
290
- | Module | Description |
291
- |:---|:---|
292
- | **[Models](https://docs.camel-ai.org/key_modules/models.html)** | Model architectures and customization options for agent intelligence. |
293
- | **[Messages](https://docs.camel-ai.org/key_modules/messages.html)** | Messaging protocols for agent communication. |
294
- | **[Memory](https://docs.camel-ai.org/key_modules/memory.html)** | Memory storage and retrieval mechanisms. |
295
- | **[Tools](https://docs.camel-ai.org/key_modules/tools.html)** | Tools integration for specialized agent tasks. |
296
- | **[Prompts](https://docs.camel-ai.org/key_modules/prompts.html)** | Prompt engineering and customization. |
297
- | **[Tasks](https://docs.camel-ai.org/key_modules/tasks.html)** | Task creation and management for agent workflows. |
298
- | **[Loaders](https://docs.camel-ai.org/key_modules/loaders.html)** | Data loading tools for agent operation. |
299
- | **[Storages](https://docs.camel-ai.org/key_modules/storages.html)** | Storage solutions for agent. |
300
- | **[Society](https://docs.camel-ai.org/key_modules/society.html)** | Components for building agent societies and inter-agent collaboration. |
301
- | **[Embeddings](https://docs.camel-ai.org/key_modules/embeddings.html)** | Embedding models for RAG. |
302
- | **[Retrievers](https://docs.camel-ai.org/key_modules/retrievers.html)** | Retrieval methods for knowledge access. |
303
- ---
304
-
305
- ### Cookbooks
306
- Practical guides and tutorials for implementing specific functionalities in CAMEL-AI agents and societies.
280
+ ```bash
281
+ ModelPlatformType.DEFAULT = "openai"
282
+ ModelType.DEFAULT = "gpt-4o-mini"
283
+ ```
307
284
 
308
- | Cookbook | Description |
309
- |:---|:---|
310
- | **[Creating Your First Agent](https://docs.camel-ai.org/cookbooks/create_your_first_agent.html)** | A step-by-step guide to building your first agent. |
311
- | **[Creating Your First Agent Society](https://docs.camel-ai.org/cookbooks/create_your_first_agents_society.html)** | Learn to build a collaborative society of agents. |
312
- | **[Society Cookbook](https://docs.camel-ai.org/cookbooks/agents_society.html)** | Advanced configurations for agent societies. |
313
- | **[Model Speed Comparison Cookbook](https://docs.camel-ai.org/cookbooks/model_speed_comparison.html)** | Benchmarking models for performance. |
314
- | **[Message Cookbook](https://docs.camel-ai.org/cookbooks/agents_message.html)** | Best practices for message handling in agents. |
315
- | **[Tools Cookbook](https://docs.camel-ai.org/cookbooks/agents_with_tools.html)** | Integrating tools for enhanced functionality. |
316
- | **[Memory Cookbook](https://docs.camel-ai.org/cookbooks/agents_with_memory.html)** | Implementing memory systems in agents. |
317
- | **[RAG Cookbook](https://docs.camel-ai.org/cookbooks/agents_with_rag.html)** | Recipes for Retrieval-Augmented Generation. |
318
- | **[Prompting Cookbook](https://docs.camel-ai.org/cookbooks/agents_prompting.html)** | Techniques for effective prompt creation. |
319
- | **[Task Generation Cookbook](https://docs.camel-ai.org/cookbooks/task_generation.html)** | Automating task generation for agents. |
320
- | **[Graph RAG Cookbook](https://docs.camel-ai.org/cookbooks/knowledge_graph.html)** | Leveraging knowledge graphs with RAG. |
321
- | **[Role-Playing Scraper for Report & Knowledge Graph Generation](https://docs.camel-ai.org/cookbooks/roleplaying_scraper.html)** | Create role-playing agents for data scraping and reporting. |
322
- | **[Video Analysis](https://docs.camel-ai.org/cookbooks/video_analysis.html)** | Techniques for agents in video data analysis. |
323
- | **[Track CAMEL Agents with AgentOps](https://docs.camel-ai.org/cookbooks/agents_tracking.html)** | Tools for tracking and managing agents in operations. |
324
- | **[Create A Hackathon Judge Committee with Workforce](https://docs.camel-ai.org/cookbooks/workforce_judge_committee.html)** | Building a team of agents for collaborative judging. |
285
+ ### Setting Default Model Platform and Model Type (Optional)
325
286
 
326
- ## Examples
287
+ You can customize the default model platform and model type by setting the following environment variables:
288
+ ```bash
289
+ export DEFAULT_MODEL_PLATFORM_TYPE=<your preferred platform> # e.g., openai, anthropic, etc.
290
+ export DEFAULT_MODEL_TYPE=<your preferred model> # e.g., gpt-3.5-turbo, gpt-4o-mini, etc.
291
+ ```
327
292
 
328
- First, you need to add your OpenAI API key to system environment variables. The method to do this depends on your operating system and the shell you're using.
293
+ ### Setting Your Model API Key (Using OpenAI as an Example)
329
294
 
330
295
  **For Bash shell (Linux, macOS, Git Bash on Windows):**
331
296
 
@@ -356,6 +321,37 @@ Replace `<insert your OpenAI API key>` with your actual OpenAI API key in each c
356
321
 
357
322
  Please note that the environment variable is session-specific. If you open a new terminal window or tab, you will need to set the API key again in that new session.
358
323
 
324
+ **For `.env` File:**
325
+
326
+ To simplify the process of managing API Keys, you can use store information in a `.env` file and load them into your application dynamically.
327
+
328
+ 1. Modify .env file in the root directory of CAMEL and fill the following lines:
329
+
330
+ ```bash
331
+ OPENAI_API_KEY=<fill your API KEY here>
332
+ ```
333
+
334
+ Replace <fill your API KEY here> with your actual API key.
335
+
336
+ 2. Load the .env file in your Python script: Use the load_dotenv() function from the dotenv module to load the variables from the .env file into the environment. Here's an example:
337
+
338
+ ```python
339
+ from dotenv import load_dotenv
340
+ import os
341
+
342
+ # Load environment variables from the .env file
343
+ load_dotenv()
344
+ ```
345
+ For more details about the key names in project and how to apply key,
346
+ you can refer to [here](https://github.com/camel-ai/camel/.env).
347
+
348
+ > [!TIP]
349
+ > By default, the load_dotenv() function does not overwrite existing environment variables that are already set in your system. It only populates variables that are missing.
350
+ If you need to overwrite existing environment variables with the values from your `.env` file, use the `override=True` parameter:
351
+ > ```python
352
+ > load_dotenv(override=True)
353
+ > ```
354
+
359
355
  After setting the OpenAI API key, you can run the `role_playing.py` script. Find tasks for various assistant-user roles [here](https://drive.google.com/file/d/194PPaSTBR07m-PzjS-Ty6KlPLdFIPQDd/view?usp=share_link).
360
356
 
361
357
  ```bash
@@ -385,6 +381,60 @@ python examples/vision/image_crafting.py
385
381
  ```
386
382
  For additional feature examples, see the [`examples`](https://github.com/camel-ai/camel/tree/master/examples) directory.
387
383
 
384
+ ## Documentation
385
+
386
+ The [complete documentation](https://camel-ai.github.io/camel/) pages for the CAMEL package. Also, detailed tutorials for each part are provided below:
387
+
388
+ ### Agents
389
+ Explore different types of agents, their roles, and their applications.
390
+
391
+ - **[Creating Your First Agent](https://docs.camel-ai.org/cookbooks/create_your_first_agent.html)**
392
+ - **[Creating Your First Agent Society](https://docs.camel-ai.org/cookbooks/create_your_first_agents_society.html)**
393
+ - **[Embodied Agents](https://docs.camel-ai.org/cookbooks/embodied_agents.html)**
394
+ - **[Critic Agents](https://docs.camel-ai.org/cookbooks/critic_agents_and_tree_search.html)**
395
+
396
+ ---
397
+
398
+ ### Key Modules
399
+ Core components and utilities to build, operate, and enhance CAMEL-AI agents and societies.
400
+
401
+ | Module | Description |
402
+ |:---|:---|
403
+ | **[Models](https://docs.camel-ai.org/key_modules/models.html)** | Model architectures and customization options for agent intelligence. |
404
+ | **[Messages](https://docs.camel-ai.org/key_modules/messages.html)** | Messaging protocols for agent communication. |
405
+ | **[Memory](https://docs.camel-ai.org/key_modules/memory.html)** | Memory storage and retrieval mechanisms. |
406
+ | **[Tools](https://docs.camel-ai.org/key_modules/tools.html)** | Tools integration for specialized agent tasks. |
407
+ | **[Prompts](https://docs.camel-ai.org/key_modules/prompts.html)** | Prompt engineering and customization. |
408
+ | **[Tasks](https://docs.camel-ai.org/key_modules/tasks.html)** | Task creation and management for agent workflows. |
409
+ | **[Loaders](https://docs.camel-ai.org/key_modules/loaders.html)** | Data loading tools for agent operation. |
410
+ | **[Storages](https://docs.camel-ai.org/key_modules/storages.html)** | Storage solutions for agent. |
411
+ | **[Society](https://docs.camel-ai.org/key_modules/society.html)** | Components for building agent societies and inter-agent collaboration. |
412
+ | **[Embeddings](https://docs.camel-ai.org/key_modules/embeddings.html)** | Embedding models for RAG. |
413
+ | **[Retrievers](https://docs.camel-ai.org/key_modules/retrievers.html)** | Retrieval methods for knowledge access. |
414
+ ---
415
+
416
+ ### Cookbooks
417
+ Practical guides and tutorials for implementing specific functionalities in CAMEL-AI agents and societies.
418
+
419
+ | Cookbook | Description |
420
+ |:---|:---|
421
+ | **[Creating Your First Agent](https://docs.camel-ai.org/cookbooks/create_your_first_agent.html)** | A step-by-step guide to building your first agent. |
422
+ | **[Creating Your First Agent Society](https://docs.camel-ai.org/cookbooks/create_your_first_agents_society.html)** | Learn to build a collaborative society of agents. |
423
+ | **[Society Cookbook](https://docs.camel-ai.org/cookbooks/agents_society.html)** | Advanced configurations for agent societies. |
424
+ | **[Model Speed Comparison Cookbook](https://docs.camel-ai.org/cookbooks/model_speed_comparison.html)** | Benchmarking models for performance. |
425
+ | **[Message Cookbook](https://docs.camel-ai.org/cookbooks/agents_message.html)** | Best practices for message handling in agents. |
426
+ | **[Tools Cookbook](https://docs.camel-ai.org/cookbooks/agents_with_tools.html)** | Integrating tools for enhanced functionality. |
427
+ | **[Memory Cookbook](https://docs.camel-ai.org/cookbooks/agents_with_memory.html)** | Implementing memory systems in agents. |
428
+ | **[RAG Cookbook](https://docs.camel-ai.org/cookbooks/agents_with_rag.html)** | Recipes for Retrieval-Augmented Generation. |
429
+ | **[Prompting Cookbook](https://docs.camel-ai.org/cookbooks/agents_prompting.html)** | Techniques for effective prompt creation. |
430
+ | **[Task Generation Cookbook](https://docs.camel-ai.org/cookbooks/task_generation.html)** | Automating task generation for agents. |
431
+ | **[Graph RAG Cookbook](https://docs.camel-ai.org/cookbooks/knowledge_graph.html)** | Leveraging knowledge graphs with RAG. |
432
+ | **[Role-Playing Scraper for Report & Knowledge Graph Generation](https://docs.camel-ai.org/cookbooks/roleplaying_scraper.html)** | Create role-playing agents for data scraping and reporting. |
433
+ | **[Video Analysis](https://docs.camel-ai.org/cookbooks/video_analysis.html)** | Techniques for agents in video data analysis. |
434
+ | **[Track CAMEL Agents with AgentOps](https://docs.camel-ai.org/cookbooks/agents_tracking.html)** | Tools for tracking and managing agents in operations. |
435
+ | **[Create A Hackathon Judge Committee with Workforce](https://docs.camel-ai.org/cookbooks/workforce_judge_committee.html)** | Building a team of agents for collaborative judging. |
436
+ | **[3 Ways to Ingest Data from Websites with Firecrawl](https://docs.camel-ai.org/cookbooks/ingest_data_from_websites_with_Firecrawl.html)** | Explore three methods for extracting and processing data from websites using Firecrawl. |
437
+
388
438
  ## Utilize Various LLMs as Backends
389
439
 
390
440
  For more details, please see our [`Models Documentation`](https://docs.camel-ai.org/key_modules/models.html#).
@@ -411,6 +461,8 @@ For more details, please see our [`Models Documentation`](https://docs.camel-ai.
411
461
  We implemented amazing research ideas from other works for you to build, compare and customize your agents. If you use any of these modules, please kindly cite the original works:
412
462
  - `TaskCreationAgent`, `TaskPrioritizationAgent` and `BabyAGI` from *Nakajima et al.*: [Task-Driven Autonomous Agent](https://yoheinakajima.com/task-driven-autonomous-agent-utilizing-gpt-4-pinecone-and-langchain-for-diverse-applications/). [[Example](https://github.com/camel-ai/camel/blob/master/examples/ai_society/babyagi_playing.py)]
413
463
 
464
+ - `PersonaHub` from *Tao Ge et al.*: [Scaling Synthetic Data Creation with 1,000,000,000 Personas](https://arxiv.org/pdf/2406.20094). [[Example](https://github.com/camel-ai/camel/blob/master/examples/personas/personas_generation.py)]
465
+
414
466
  ## Other Research Works Based on Camel
415
467
  - [Agent Trust](http://agent-trust.camel-ai.org/): Can Large Language Model Agents Simulate Human Trust Behavior?
416
468
 
@@ -0,0 +1,252 @@
1
+ camel/__init__.py,sha256=gG00Z-pEGeRnUzyHwd2JJF6YPVT3h8mCwmLTfQCuYxg,912
2
+ camel/agents/__init__.py,sha256=LcS4m8s97-yADfznvcaAdUe9W0E9h3m6zrSc9H6m9so,1545
3
+ camel/agents/base.py,sha256=c4bJYL3G3Z41SaFdMPMn8ZjLdFiFaVOFO6EQIfuCVR8,1124
4
+ camel/agents/chat_agent.py,sha256=pgQdVRwvU70ToZXj47s8UzVNNSanbaMYqPXsQ-x6nDw,50821
5
+ camel/agents/critic_agent.py,sha256=qFVlHlQo0CVgmPWfWYLT8_oP_KyzCLFsQw_nN_vu5Bs,7487
6
+ camel/agents/deductive_reasoner_agent.py,sha256=6BZGaq1hR6hKJuQtOfoYQnk_AkZpw_Mr7mUy2MspQgs,13540
7
+ camel/agents/embodied_agent.py,sha256=XBxBu5ZMmSJ4B2U3Z7SMwvLlgp6yNpaBe8HNQmY9CZA,7536
8
+ camel/agents/knowledge_graph_agent.py,sha256=MxG40XL8rs9sxcK8BKDLKurZz-Jui-oJOpYJaR5ZjMo,8962
9
+ camel/agents/role_assignment_agent.py,sha256=8bkTc14XToFHkP-ZOef5KP0P4hTlCDv0eNsDZPYuukA,5088
10
+ camel/agents/search_agent.py,sha256=7sTt4FvFI3xeWgauBneDnwAguWy86Cu9oB2tscYqFc4,4616
11
+ camel/agents/task_agent.py,sha256=KfJvZ5vOjjbrn20UGqSMnf6lds5ydfXdb7eNMxBU5vs,14654
12
+ camel/agents/tool_agents/__init__.py,sha256=hhd1kQYDshfvszN5JHBorINH9L3dI6xdDfKnbAAaKa0,856
13
+ camel/agents/tool_agents/base.py,sha256=T6G5OaAJd4L_yHSFoWcrtqkMEyhge42ppVjx7lYD3Cg,1393
14
+ camel/agents/tool_agents/hugging_face_tool_agent.py,sha256=nNySkdBRYaD05rLyPxzmq8W7D9WPcNHCY9h1jD6S0Hk,8717
15
+ camel/bots/__init__.py,sha256=pAe-LJmAcYDG10DU_UU7-qL20223ZpctVw_8WGP5EsA,1178
16
+ camel/bots/discord_app.py,sha256=HMBrE0_V2wjdtFvB_fwBFQAv0CAmvJdGaFwKZFG7Wsg,4998
17
+ camel/bots/slack/__init__.py,sha256=iqySoYftEb7SI4pabhMvvTp1YYS09BvjwGXPEbcP1Hc,1055
18
+ camel/bots/slack/models.py,sha256=xMz3RO-88yrxPRrbBDjiabpbZIlpEHCvU-1CvASKARc,5143
19
+ camel/bots/slack/slack_app.py,sha256=SoSRZZnuTJ0aiLUBZqdG8cUFJzYpfpZh7304t0a_7Dg,9944
20
+ camel/bots/telegram_bot.py,sha256=gnyxToSHkjRpNDoCWBNv59WcdxeocVJHU2S4jexzM2E,2741
21
+ camel/configs/__init__.py,sha256=qGuISjD85yeC2RokNLwMBmtAvZF_NLqh5flGVYnVAUs,2687
22
+ camel/configs/anthropic_config.py,sha256=155XWgprizY_iSRQjp22uLfie417ttisiR6h5LHmGhU,3278
23
+ camel/configs/base_config.py,sha256=RrlOwwTUXeTjsDChZXUZIBK1uCojyavEbX21bGVLuog,3286
24
+ camel/configs/cohere_config.py,sha256=joF4GHqoTIRuEDlyTmxW5Ud23psE0xP1VCcEvKychko,3997
25
+ camel/configs/deepseek_config.py,sha256=ZH6VELkvZ0rjA64PTwcvINDo4PWtkiPMTY7VwNXxc0I,6685
26
+ camel/configs/gemini_config.py,sha256=m4p9zijSBmIba41NbSa997NRz2HumiRcb5nTICAMPXM,5686
27
+ camel/configs/groq_config.py,sha256=Xe82_EbEYfacNXQApIHZiXw-NscufZxnLau72YEy_iA,5744
28
+ camel/configs/litellm_config.py,sha256=oa6b67M0UotlvN7NuXrSUXLrskdpm3RMcew0rBfSsBc,4686
29
+ camel/configs/mistral_config.py,sha256=ul7AAeG3172PtodEEruAZky0OURwgp6YeNq8ma-4os4,3463
30
+ camel/configs/nvidia_config.py,sha256=1Oc3tulHOqAfx1mkrEywrxKIV1SBNzPm0CNrWgj9HXo,3226
31
+ camel/configs/ollama_config.py,sha256=3MDZTSXMSvHj__c4SJ6g1SNAn4EGYFfiItElTW_Fk5Q,4348
32
+ camel/configs/openai_config.py,sha256=CRqM00fA4mXsaADuhwbwwceW3t4o0ae9_7CiKjJg1gI,7448
33
+ camel/configs/qwen_config.py,sha256=wLzkv0G3qzcqRN31oHv-6OXKcB1-ILlROj4xgdFSmPM,4648
34
+ camel/configs/reka_config.py,sha256=QhTa4hUKz_TF3txTJRNlLSJ391uphEqZOG0zev6bI7w,3498
35
+ camel/configs/samba_config.py,sha256=2__Xj0HIsFWN38rsbZl9a-lXwOO5XHXoo_j7VwiUDpA,8825
36
+ camel/configs/togetherai_config.py,sha256=bzFlDPR78NwvGCIPAhplITiy8WsGrdK4IDBbfQ7xGSw,5655
37
+ camel/configs/vllm_config.py,sha256=9F81FtJGbO8T3aGFggDOVUL5qequPmg882ZSXjIeFW0,6110
38
+ camel/configs/yi_config.py,sha256=ZvrOroEdYgdyBWcYxn3CHyOA64P5I16XBVbgfusxaPQ,2745
39
+ camel/configs/zhipuai_config.py,sha256=30plN-bSwogoP87V7elTRCMBspOZ58t4aKgg9ZoJFCk,3589
40
+ camel/embeddings/__init__.py,sha256=uOPul-p528_0TcCoBIe8-jhU4p1z1r5Lnsy0IFle3HQ,1200
41
+ camel/embeddings/base.py,sha256=mxqFkWh2AfbxuVKPOqVx16fCznmuSh9QXGjaEeZHvoY,2190
42
+ camel/embeddings/mistral_embedding.py,sha256=hU58FkRlQxTMlR0IMXln3F4M7stdX2Kbw9neAD6aZT0,3235
43
+ camel/embeddings/openai_compatible_embedding.py,sha256=dCeVuWTL1LYJyUOGLWaH9t4vI-SPcabv8Xgh8WIeFDI,3048
44
+ camel/embeddings/openai_embedding.py,sha256=iLrUhwHDMXYt3r6ECT4-LRGs4Nd4yiDgkgGmJZDxMKw,3602
45
+ camel/embeddings/sentence_transformers_embeddings.py,sha256=E7a8lN50CtDBsFO-NOFQ6qfCnbH41O0_kTTg7dG3sOo,2724
46
+ camel/embeddings/vlm_embedding.py,sha256=HZFdcz1YzkFPzMj45_jaCVmDQJyccoXN561aLWlrYmo,5497
47
+ camel/generators.py,sha256=JRqj9_m1PF4qT6UtybzTQ-KBT9MJQt18OAAYvQ_fr2o,13844
48
+ camel/human.py,sha256=9X09UmxI2JqQnhrFfnZ3B9EzFmVfdSWQcjLWTIXKXe0,4962
49
+ camel/interpreters/__init__.py,sha256=WzAySZA_xV8hxQTGF9zkESByAtm5N5HN9uQrjIAi2KM,1199
50
+ camel/interpreters/base.py,sha256=F026f2ZnvHwikSMbk6APYNvB9qP4Ye5quSkTbFKV3O0,1898
51
+ camel/interpreters/docker_interpreter.py,sha256=Uo5r2jcJGjC6rn5Yzx9qLzlXTsA5RH7AnFe7I0rxo10,8700
52
+ camel/interpreters/internal_python_interpreter.py,sha256=YYAXAmDWayrPQgeae7UVdD_k35DHxqUyFuHfDsApQjc,21860
53
+ camel/interpreters/interpreter_error.py,sha256=uEhcmHmmcajt5C9PLeHs21h1fE6cmyt23tCAGie1kTA,880
54
+ camel/interpreters/ipython_interpreter.py,sha256=-erOR6imuh5pUtpbUYky3zoLDr30Y5E7lm59BwwxzNs,5976
55
+ camel/interpreters/subprocess_interpreter.py,sha256=HZBpYBI_W1WPZ6W0uEXYnlAzGC-7fJChGMXl1yoMTss,6909
56
+ camel/loaders/__init__.py,sha256=HIe_xY76UD0ZjIrej8yIDAl3ZxjEA6GcaL-tKTdmp_E,1048
57
+ camel/loaders/apify_reader.py,sha256=6-D85eJDdzt3fFAa5nDgS46vGR_QUzd4zv8hkLYArZ4,7900
58
+ camel/loaders/base_io.py,sha256=2DWHQi-D80RkMgeSOZxxwf5ZGGJm0LU6mE_jtj_XPTg,10333
59
+ camel/loaders/chunkr_reader.py,sha256=lfhei64xoFVb8AJLdQHtuNClGPQ4zn6mC0Sw9jav9fc,6068
60
+ camel/loaders/firecrawl_reader.py,sha256=w9fupPJij4oyuvFnCVjS-Hfm40367jSLBBqoHSjMDB4,6604
61
+ camel/loaders/jina_url_reader.py,sha256=dL9J5JlsFKEhi4gU_vYIxKvvf_RJ4LY9gG6i8P8JpcA,3601
62
+ camel/loaders/unstructured_io.py,sha256=Dh-MB02nrhVXFyQCUrYt4DATd12zi5bNWE47cPC5yBs,17429
63
+ camel/logger.py,sha256=0EeHaRByKFNDjodpD7T6p2ERPgCrVbAhF410q0SOM9Y,3951
64
+ camel/memories/__init__.py,sha256=JQbs-_7VkcVTjE8y9J0DWI3btDyMRZilTZNVuy_RxZM,1358
65
+ camel/memories/agent_memories.py,sha256=8NV5U28fR1ncVXhWfElfkP19Ka4mMpkevheMFVCg2J0,7101
66
+ camel/memories/base.py,sha256=c4sSufQqaK96Lm9APkWB2V8m7PM1QkKmSxecGcddIM0,4997
67
+ camel/memories/blocks/__init__.py,sha256=ci7_WU11222cNd1Zkv-a0z5E2ux95NMjAYm_cDzF0pE,854
68
+ camel/memories/blocks/chat_history_block.py,sha256=Ou7SBgReikq2mu4HBpYJzEJhnlJW6cU_8P5jw2yOSxQ,4719
69
+ camel/memories/blocks/vectordb_block.py,sha256=gH55PZGbGMyUPjszUskxN0i-jTxiNpvggdhWQZh4LzM,3879
70
+ camel/memories/context_creators/__init__.py,sha256=pqzkBM2ro5JZD7RhWg05TjinphhCq0QTIqBJlIL1sJ0,800
71
+ camel/memories/context_creators/score_based.py,sha256=eNZDvLt1AV1bDXB_No0gDWDJQNczKL85E8WRjWetvxg,5379
72
+ camel/memories/records.py,sha256=wOMlTit1xWTs32uztGQ7KQ2wdT6vgHzFdpVCiih2lBA,3680
73
+ camel/messages/__init__.py,sha256=URKcfqt48wy3R9tTlKx8kW0E97SH4W0pmypflSKKBtU,1844
74
+ camel/messages/base.py,sha256=3CHOT7jt4iB6aqD8wA4JSN4AIt0oNdsKjKE_7tzLKrU,19609
75
+ camel/messages/conversion/__init__.py,sha256=8B4C-0wj-dm925YRKNyx31WYK25PWpME7Q9jPtx2jkY,1047
76
+ camel/messages/conversion/alpaca.py,sha256=jBU2bMhzNjzptGuoasThYvFov_cYPCYt3pEfs0T7z7U,4163
77
+ camel/messages/conversion/conversation_models.py,sha256=f2ybtYdCbILq9IYgaHkQ57yYxDdCBSspKrfaArZvNw8,5300
78
+ camel/messages/conversion/sharegpt/__init__.py,sha256=oWUuHV5w85kxqhz_hoElLmCfzLm-ccku-fM9SnUJ5zI,794
79
+ camel/messages/conversion/sharegpt/function_call_formatter.py,sha256=cn7e7CfmxEVFlfOqhjhNuA8nuWvWD6hXYn-3okXNxxQ,1832
80
+ camel/messages/conversion/sharegpt/hermes/__init__.py,sha256=mxuMSm-neaTgInIjYXuIVdC310E6jKJzM3IdtaJ4qY4,812
81
+ camel/messages/conversion/sharegpt/hermes/hermes_function_formatter.py,sha256=zJ9q7KFFMlQ27-WuFxf4LLL9DQt2bpeGJ2IzoUzmqZg,4552
82
+ camel/messages/func_message.py,sha256=MTkkJksMCd640QJx5pzRHI__6jJyh86u3B-02hi2Csk,5639
83
+ camel/models/__init__.py,sha256=TMAB5YZRgYBWhynT-GnFm7C9xfM3SRq1hsNrCuNqOwQ,2269
84
+ camel/models/anthropic_model.py,sha256=fySiw_YI43JZqnenIAoGjndgfJl-y5gFjls5FCxRL60,6067
85
+ camel/models/azure_openai_model.py,sha256=--BgJfqujFBsDKoTwx8M4q69v6EnpykBh-ztc6G2gDk,6169
86
+ camel/models/base_model.py,sha256=jPqUFf96WtuaKn9MxD7tNpfIm4vH4hI3txxdvKOwcO8,4795
87
+ camel/models/cohere_model.py,sha256=NpkFxnlwLWn6r00MqbS7PlP4SEp6YaQhlgO9Le2K8Js,10320
88
+ camel/models/deepseek_model.py,sha256=1Y_24EyatcjHEkZ2hMj1zOXy7TeonEnDvg5uN6kfr0U,5033
89
+ camel/models/gemini_model.py,sha256=dWkh50rTTlXs1399cKvLrIqg2Sa_A-CGbt1EdV0RJuc,5048
90
+ camel/models/groq_model.py,sha256=gmYF8wqzezAUKimT7Gr1MuBbcADK89WGFW0cVr7NSjY,4963
91
+ camel/models/litellm_model.py,sha256=-9DcJlVBL25vsZOdA0UkEWt5G5PP8QaXXhcE2PRiwRw,5296
92
+ camel/models/mistral_model.py,sha256=wq0oKZ0rLPEIDZPgmNiPoeDdQBo5_oISU9u-62FO6us,9772
93
+ camel/models/model_factory.py,sha256=pnfanlJx94XRo8qUiVXREuHtTo_NcAp2wLNFi-sCz4Q,6015
94
+ camel/models/model_manager.py,sha256=ji1d1S-2lwk6uDggSyTnXbalu2F5lHaZnfPBBCJwBxU,7159
95
+ camel/models/nemotron_model.py,sha256=qV_uSZVEdv5Nwi5aO-Wt0gWfZgTOH14xA7B47HKHgVM,2905
96
+ camel/models/nvidia_model.py,sha256=hPpcaS_TZxni1ZqMbDEm6x-qgGvBslYmNGT2E_5-1To,5194
97
+ camel/models/ollama_model.py,sha256=lwVQSHHMVeaWTCQuIyVJkPd_cnjjruZV3QDpxP2rEP8,5574
98
+ camel/models/openai_audio_models.py,sha256=61tGMxwOwXwh9RThXcQmkTCiGPEhau85_BM_nxgIKmY,10036
99
+ camel/models/openai_compatible_model.py,sha256=VkzjSlWBgHVlKAPzbLwYiKeWs7Om4rAnNYMgZjrVKRQ,4058
100
+ camel/models/openai_model.py,sha256=FGh5NQ4RO38BJD5f9br59dnliBsfit1KMXwB2E3b2E0,7460
101
+ camel/models/qwen_model.py,sha256=GKGFfVUWvWiCT9HUFgZ_fdQaFy8Z3uAhTE5Em_r-zpY,4991
102
+ camel/models/reka_model.py,sha256=lwg27dzrEOlia9-apX5Km5sHShL6Fl55C4EOr8PXjDQ,8277
103
+ camel/models/samba_model.py,sha256=sND841pldlPOIRGA9KPnchfe2tVTel33UGfBZ7o2LtM,14479
104
+ camel/models/stub_model.py,sha256=TKTTryatEqCfjQ8NTco9ipj29CbLLtmWEcF_VcaWvQI,3703
105
+ camel/models/togetherai_model.py,sha256=J5kK_uaF7u6l7lj69pA_7D9AOq3BcVh8Dbrx0I-d5uk,5245
106
+ camel/models/vllm_model.py,sha256=Pb7Oy6oVO8APn3-c3_dFHuIEoNY8RRQpSf543EZ5PY8,5649
107
+ camel/models/yi_model.py,sha256=9MLV2O8eRmkCvErkgsaYfE7wlnAYsCnM_EoZEzM0EiM,4906
108
+ camel/models/zhipuai_model.py,sha256=hLvdQ1A2VylCxnTgTSlmQXVcRSOx--TDn_-w_Vb5O64,5120
109
+ camel/personas/__init__.py,sha256=b2EU-unbIfCZjgq2dODf9mq0L9-VP5QXDVTjeYyvKCM,804
110
+ camel/personas/persona.py,sha256=Ssvp8coQU_kYuDm0W0J8r5AAZyOsn8EScLhVa0HjDOs,4221
111
+ camel/personas/persona_hub.py,sha256=1giqGVWE5Xw2HrLmOwxxhpcclBbww2elwxQwFafCopM,10560
112
+ camel/prompts/__init__.py,sha256=suZUHJ4XUDCU4mB0AtMCcPbfzHU2nHEZH37sC_oyCx4,2386
113
+ camel/prompts/ai_society.py,sha256=dOLSDCcjHkwTFXYorc0bSZq76DHj2cRMGKBVCViaaEg,6300
114
+ camel/prompts/base.py,sha256=z5sVuat3K4TMV4xscLLczzrH8AHBCTyEW_P4E_uuYqo,8458
115
+ camel/prompts/code.py,sha256=lSfJ7HcHsTrvUzpfLOxe-XhjCAQ5RYjOVqqdUY29oqI,5859
116
+ camel/prompts/evaluation.py,sha256=HfnQxkgGhW3qF0nkzvY4S6tDjJrVPZP55LzjFYU7MMY,1590
117
+ camel/prompts/generate_text_embedding_data.py,sha256=o_pydt8tElv8kgmBN1iNh6XvHZAIO9-gbeCg7KnOamg,4240
118
+ camel/prompts/image_craft.py,sha256=4lA0OdxJWvkO7_iTcnZyZJpdL_rZE24Ar7aasK5Rru0,1628
119
+ camel/prompts/misalignment.py,sha256=xNKNWgH12CCqhvc_XwNpeBCiNtYougmzucgFvKH4Y84,4531
120
+ camel/prompts/multi_condition_image_craft.py,sha256=wfmX8AxPZjNLPiPTYkwr9YwmUhu9CuXcJvhPnVOqgjc,1395
121
+ camel/prompts/object_recognition.py,sha256=EewPFxLi6xk4NEQ5e01t4uAUDMA_Uph-mfu7ThvKQWg,1416
122
+ camel/prompts/persona_hub.py,sha256=XyskZkwa87pMvHia0JzQNZbFRrtREcEJkJZtSyczHvA,2449
123
+ camel/prompts/prompt_templates.py,sha256=VzYKtPaSq2lLtcyB0K3fbZkf82F2b6nTWKCzwaVuPLU,4128
124
+ camel/prompts/role_description_prompt_template.py,sha256=FlloK5OhIitJhVH2H5WqkHWLDNXobn0KWKIXHBFlwl0,2538
125
+ camel/prompts/solution_extraction.py,sha256=eT1NI0mDDCPoyS7fPOc8lSVTAb5xZSSmYXs12sc1akM,2103
126
+ camel/prompts/task_prompt_template.py,sha256=clqOHGwd92nWEp1zNMucuJcftRO-p28l48n8SWWSIvQ,3393
127
+ camel/prompts/translation.py,sha256=xvQHiCv-50G92oIb_rv-xZSzX7OnhAZR2cwbWuQDKZc,1896
128
+ camel/prompts/video_description_prompt.py,sha256=t-5B_VlTMEjEoRgziixcZLfxcZR2xu7ttZR4kCtTifk,1554
129
+ camel/responses/__init__.py,sha256=8QQ0T0NH16825WYk6S3dCSWsz8hqLEfdPtVHxwNsCRk,789
130
+ camel/responses/agent_responses.py,sha256=a9c2YeZ21AhZtFYezI-Mn-ILJkNpdgA9elKek-GceuM,1765
131
+ camel/retrievers/__init__.py,sha256=d-H8Ke5bVRjzIt3GyTm6yrqKQItpbf-Ckc1LsZWsNcI,1053
132
+ camel/retrievers/auto_retriever.py,sha256=QdeZzuEb7UNJY_J1asGU85RaA-tuLuDLlh3cd8iKQgI,9581
133
+ camel/retrievers/base.py,sha256=Sx66VHuNOJE31u59DX5XBwota4XqubeVm0feqLV7i28,2640
134
+ camel/retrievers/bm25_retriever.py,sha256=feQgn3dwnbQG8H7KSbFzjaFAw3KtKObfoyA6gmL836A,5149
135
+ camel/retrievers/cohere_rerank_retriever.py,sha256=tzMS3HG4wD3gbIAVcHsC5fTbFxuiNrT4qJ10oJMJ0BA,4032
136
+ camel/retrievers/vector_retriever.py,sha256=LkOKwPJIeZJp8bovpUbsCZgakrQDX19BLGbUF8ZSQX4,10609
137
+ camel/runtime/__init__.py,sha256=QFxG8qYixImqSmC5bLXgT4_gkC5V8nq9dr9XlY4iZZM,1125
138
+ camel/runtime/api.py,sha256=NBSg1C0v6RqlooTIzPEDKcHNixPTaQImFvWmWsaskhc,3095
139
+ camel/runtime/base.py,sha256=KKBLO6PwWEWBXbYaVtO9JXqBT8110iYpMhgNSIxQvYQ,1512
140
+ camel/runtime/configs.py,sha256=-hmUM640bWaLpYYek68nfrOrQICk5ii11x5ZK5zLzjI,2419
141
+ camel/runtime/docker_runtime.py,sha256=4OCsEzPF_FPIxhmx16p9DXd8ao90VicSeZV0Y70l7TE,13551
142
+ camel/runtime/llm_guard_runtime.py,sha256=V31kNh6L2xezBs8X5_8dsTfqqlPCn4fbxsOVZXGbqX0,8098
143
+ camel/runtime/remote_http_runtime.py,sha256=1t8jnwfRd8zuia9EZtUjIZ_tP9-ehPthXLp7AGnxVzI,6644
144
+ camel/runtime/utils/__init__.py,sha256=_4kT7j4gW9t5Zd_AbFa2mcHe8rpLB0tVlgAhQHxfwQQ,875
145
+ camel/runtime/utils/function_risk_toolkit.py,sha256=rXVnh5Dm9syHvjFGMMZH5ABSIhsxIEhm2_Af5DPJWLs,2355
146
+ camel/runtime/utils/ignore_risk_toolkit.py,sha256=ms9xEpHdpCnfrl3ppaAhgERcifKKoD3FcJHmWRLI2zg,2693
147
+ camel/schemas/__init__.py,sha256=FIispqu0jMi7DPFg8iGsc3NdbC0daxSbWjybd72F6cA,792
148
+ camel/schemas/base.py,sha256=S5fDiqJmNzTOhxN3Wl93gAcZnu3ke71fhZod5lq4mPI,1660
149
+ camel/schemas/openai_converter.py,sha256=u2xaQKsI8DEmPrduilI0iiO3UENvKxU8IJI8r0tiAsc,4308
150
+ camel/societies/__init__.py,sha256=NOHjtlsY-gV9UCF2xXgcbG-xXyuigmbwbpLpNsDgEJ4,826
151
+ camel/societies/babyagi_playing.py,sha256=KbTdpHfZ2V8AripVck0bNTOyF-RSaMPCRARz3DvzWfQ,11855
152
+ camel/societies/role_playing.py,sha256=I7xCYauJwGex1Fj9p1S6UxHI25lVshyidAeY8_6gE2o,23809
153
+ camel/societies/workforce/__init__.py,sha256=bkTI-PE-MSK9AQ2V2gR6cR2WY-R7Jqy_NmXRtAoqo8o,920
154
+ camel/societies/workforce/base.py,sha256=4uSTmBQsWk_UX1xUrEbjo0X7OuYRbGWoroTV71Tvg8U,1947
155
+ camel/societies/workforce/prompts.py,sha256=KBiBWDXhclpJLvdUmk2anX2J9eeUDD7xHYwSeZJD_Hc,6178
156
+ camel/societies/workforce/role_playing_worker.py,sha256=g379K6Qv-dxgoHPIkzCujOB9cDLxRlNlY-s4D_fEdEI,7133
157
+ camel/societies/workforce/single_agent_worker.py,sha256=NutCvR0nSIFP8AjiSy8nOqKI-tQq-nDzGYvDeN-oIF8,3587
158
+ camel/societies/workforce/task_channel.py,sha256=9t5hoinfGYnbRavX4kx34Jk1FOy05SnJZYbNzb5M-CQ,7140
159
+ camel/societies/workforce/utils.py,sha256=yPbcLx8lNZStl15C4UXRBl5qsTrGA-hiIGynnGi53WQ,2384
160
+ camel/societies/workforce/worker.py,sha256=Do6FDpEraICQVptBH-LiG5KDYYQzD83sLoYO9J8NAbc,3933
161
+ camel/societies/workforce/workforce.py,sha256=PZ3rsY_s4iP21JbyMLRHj8f9zYUXosSjVLoRF2yaMDg,18287
162
+ camel/storages/__init__.py,sha256=jXff0PfC9VzAlSAgwlPv3uzZQlhuc82Did_OPNLJJuY,1617
163
+ camel/storages/graph_storages/__init__.py,sha256=G29BNn651C0WTOpjCl4QnVM-4B9tcNh8DdmsCiONH8Y,948
164
+ camel/storages/graph_storages/base.py,sha256=uSe9jWuLudfm5jtfo6E-L_kNzITwK1_Ef-6L4HWw-JM,2852
165
+ camel/storages/graph_storages/graph_element.py,sha256=v7Gzl63VhN00vlsI3G8GCZkbgiOCyonFCpNsPCo90Pk,2617
166
+ camel/storages/graph_storages/nebula_graph.py,sha256=bDwLpX3KcjEm0t7_AqANt1aoPjTvX3fpVsp4MjGVl4Y,18857
167
+ camel/storages/graph_storages/neo4j_graph.py,sha256=Ny4MZYQjwP-h3AJAt1qziTcbDl7RdCuivqn-rTcC2SY,22132
168
+ camel/storages/key_value_storages/__init__.py,sha256=le_hl7MYoQvaiYaJHwomy8c0cvTemicZbmwxgCJUpOs,962
169
+ camel/storages/key_value_storages/base.py,sha256=FSfxeLuG7SPvn-Mg-OQxtRKPtQBnRkB7lYeDaFOefpk,2177
170
+ camel/storages/key_value_storages/in_memory.py,sha256=k04Nx53lYxD5MoqDtBEgZrQYkAQ-zIuU6tqnoNqiHws,1949
171
+ camel/storages/key_value_storages/json.py,sha256=aVQ8BeC7p59valOYCE_HpziH7BrQQgh6ViEGDsm28gE,3486
172
+ camel/storages/key_value_storages/redis.py,sha256=MTxInVFNOi-lTxJK3TFwdJTBwllxqzvwPVWYOBcBSbs,5700
173
+ camel/storages/object_storages/__init__.py,sha256=26yATVTD9yVH-p9KueD30JakstTGiDh89GcFtUNNe4U,915
174
+ camel/storages/object_storages/amazon_s3.py,sha256=iPiZWLycXPQe75kH9P9m_vHGvI5890HWMXLlioYhoO4,7395
175
+ camel/storages/object_storages/azure_blob.py,sha256=yjdOPjjeiGGQSKh0TcrSczWwJ0L69yckahnnBevo5GE,5969
176
+ camel/storages/object_storages/base.py,sha256=pImWylYJm7Wt8q87lBE1Cxk26IJ9sRtXq_OJmV6bJlg,3796
177
+ camel/storages/object_storages/google_cloud.py,sha256=f0Cnao1sLIM4cMe1Ui9DS_RfUo9JAbgcdInEsHwOLZk,5309
178
+ camel/storages/vectordb_storages/__init__.py,sha256=NCXSLGFE5BuGWDYrsXuiJIsOJObwGnyAzpWuzMoxeWU,1070
179
+ camel/storages/vectordb_storages/base.py,sha256=XhgTthEg4jEIsycwKy48QXj4POnCx9j9UndlTM_cG9w,6675
180
+ camel/storages/vectordb_storages/milvus.py,sha256=XGKSQQflvqvTCo92rrgmbwYtsJKY9JxphdEQqGXf_kA,13483
181
+ camel/storages/vectordb_storages/qdrant.py,sha256=pDkhX3iu1rFCbiMz6F47EhgENCCVDx3ejh-zt988NtU,18011
182
+ camel/tasks/__init__.py,sha256=MuHwkw5GRQc8NOCzj8tjtBrr2Xg9KrcKp-ed_-2ZGIM,906
183
+ camel/tasks/task.py,sha256=FpYYbxWrAvqFJ4KvbjIn-EnTGpe9u_emSWUpdIuCAZo,13178
184
+ camel/tasks/task_prompt.py,sha256=3KZmKYKUPcTKe8EAZOZBN3G05JHRVt7oHY9ORzLVu1g,2150
185
+ camel/terminators/__init__.py,sha256=t8uqrkUnXEOYMXQDgaBkMFJ0EXFKI0kmx4cUimli3Ls,991
186
+ camel/terminators/base.py,sha256=xmJzERX7GdSXcxZjAHHODa0rOxRChMSRboDCNHWSscs,1511
187
+ camel/terminators/response_terminator.py,sha256=n3G5KP6Oj7-7WlRN0yFcrtLpqAJKaKS0bmhrWlFfCgQ,4982
188
+ camel/terminators/token_limit_terminator.py,sha256=YWv6ZR8R9yI2Qnf_3xES5bEE_O5bb2CxQ0EUXfMh34c,2118
189
+ camel/toolkits/__init__.py,sha256=xXAATbz0IusftnKcqz8XTlot_A77XaHW_0gYJuT9l0s,2511
190
+ camel/toolkits/arxiv_toolkit.py,sha256=WsK8WcrYrz54tNbYb0JKrohPYhbG95115z3dkh0iupo,5666
191
+ camel/toolkits/ask_news_toolkit.py,sha256=1HzyS5ZChq8E98dL0rPJAHRGJBWBxvbYbGQu3qeC3qE,23156
192
+ camel/toolkits/base.py,sha256=XnERVclg201dG7BrawwbuSeSlkz1ngIfatES1ingpkA,1264
193
+ camel/toolkits/code_execution.py,sha256=HFYQfe5HMT7KfZQgZRgXULD89Q36J4KGq7zaNw-GT7A,4299
194
+ camel/toolkits/dalle_toolkit.py,sha256=Usmw3JiJErLQgWSB1qKq_bOACNwbUTQPFc_EsVzTrGo,5115
195
+ camel/toolkits/data_commons_toolkit.py,sha256=_LJJ83eWEHuT8VsPLsH66LSakRkxwV4AkQmktN017S4,13060
196
+ camel/toolkits/function_tool.py,sha256=AEAyOpZnmfzikKYL63stcnWhRmPPv9EzoGe5yurPtOE,27896
197
+ camel/toolkits/github_toolkit.py,sha256=tZyZTlvUK6uFxhB0Acr4tVmVKV_KTitJPqBSpdXrSeg,11625
198
+ camel/toolkits/google_maps_toolkit.py,sha256=a5ex5_PyhOEriv_0UloUgSpXGI7b12lwhQyewp78s1I,11948
199
+ camel/toolkits/google_scholar_toolkit.py,sha256=TVU2JlNR8u-zMgasIkOGgb4C3mh1UKDhHgU33WkM2Mg,6534
200
+ camel/toolkits/human_toolkit.py,sha256=4YsZrCSFaMceM1MpGa-tg5gkmbdcZrm0qe3j2JRgfE8,1829
201
+ camel/toolkits/linkedin_toolkit.py,sha256=r1q8Ds95chC9vxtsaUYUDEitM8tDjUw_MrkpWpM4W8s,7911
202
+ camel/toolkits/math_toolkit.py,sha256=_xdlGGDtykiH18yr85TEUAkxYPnMWVU2dAwvKA1ImTs,2434
203
+ camel/toolkits/meshy_toolkit.py,sha256=jvXF5HocWH1yhQk6hGoxBpYrv6s6QUp43bT6wNJVS_g,6329
204
+ camel/toolkits/notion_toolkit.py,sha256=jXvPBNs_VHMDDWa59UmTZuwFgJXgRgFirlH1BK70kHw,9506
205
+ camel/toolkits/open_api_specs/biztoc/__init__.py,sha256=OKCZrQCDwaWtXIN_2rA9FSqEvgpQRieRoHh7Ek6N16A,702
206
+ camel/toolkits/open_api_specs/biztoc/ai-plugin.json,sha256=IJinQbLv5MFPGFwdN7PbOhwArFVExSEZdJspe-mOBIo,866
207
+ camel/toolkits/open_api_specs/biztoc/openapi.yaml,sha256=SQ2bYIWb1nVBtkBeFaOihiWQ71oZ2bzz0fCgu6igM8A,610
208
+ camel/toolkits/open_api_specs/coursera/__init__.py,sha256=OKCZrQCDwaWtXIN_2rA9FSqEvgpQRieRoHh7Ek6N16A,702
209
+ camel/toolkits/open_api_specs/coursera/openapi.yaml,sha256=iouLcNNpVvXLfmkyKrbJlS3MEjBJ7TgVR48UID8dwfE,1981
210
+ camel/toolkits/open_api_specs/create_qr_code/__init__.py,sha256=OKCZrQCDwaWtXIN_2rA9FSqEvgpQRieRoHh7Ek6N16A,702
211
+ camel/toolkits/open_api_specs/create_qr_code/openapi.yaml,sha256=d6ZNFmhCwlqZj8Rp9lmdU1dYPyh3-GnadbEUKHqjBfc,1158
212
+ camel/toolkits/open_api_specs/klarna/__init__.py,sha256=OKCZrQCDwaWtXIN_2rA9FSqEvgpQRieRoHh7Ek6N16A,702
213
+ camel/toolkits/open_api_specs/klarna/openapi.yaml,sha256=9wpwRn8NLZL1reN6YUPsZP24hbDJJYvOJeeoWTk7ojQ,2887
214
+ camel/toolkits/open_api_specs/nasa_apod/__init__.py,sha256=OKCZrQCDwaWtXIN_2rA9FSqEvgpQRieRoHh7Ek6N16A,702
215
+ camel/toolkits/open_api_specs/nasa_apod/openapi.yaml,sha256=4NPWtk9k7UwNpUihkrbCXzzs4zls-YnEYKe6qmtO8FU,2044
216
+ camel/toolkits/open_api_specs/outschool/__init__.py,sha256=OKCZrQCDwaWtXIN_2rA9FSqEvgpQRieRoHh7Ek6N16A,702
217
+ camel/toolkits/open_api_specs/outschool/ai-plugin.json,sha256=QohJo8Ya0RGBvs9cBQR-UgSMl0gXJdNlWO8d2FyqdE8,1089
218
+ camel/toolkits/open_api_specs/outschool/openapi.yaml,sha256=t9gHdt09CQ8QMVnzEBxkcgH9eG720IsnVwB_6QxzSC4,8700
219
+ camel/toolkits/open_api_specs/outschool/paths/__init__.py,sha256=Yw-VCOMuMrKI2PFnMac72V-m-I3KbOVWK2VyHkJaLH0,774
220
+ camel/toolkits/open_api_specs/outschool/paths/get_classes.py,sha256=T5XM8D0wDuMAzgz8Eqz29wHVbja7pwiHTthBA6zi0pg,1116
221
+ camel/toolkits/open_api_specs/outschool/paths/search_teachers.py,sha256=4fYIN0NrjCxTJPttmBQUMnKTFb5bH1Ci_zBnYfzPNa4,1119
222
+ camel/toolkits/open_api_specs/security_config.py,sha256=ZVnBa_zEifaE_ao2xsvV5majuJHpn2Tn7feMDOnj-eo,898
223
+ camel/toolkits/open_api_specs/speak/__init__.py,sha256=OKCZrQCDwaWtXIN_2rA9FSqEvgpQRieRoHh7Ek6N16A,702
224
+ camel/toolkits/open_api_specs/speak/openapi.yaml,sha256=rmM_-E4tYJ2LOpUlcQxfQtcQSRkVnsBkQWMmKdW2QqQ,6557
225
+ camel/toolkits/open_api_specs/web_scraper/__init__.py,sha256=OKCZrQCDwaWtXIN_2rA9FSqEvgpQRieRoHh7Ek6N16A,702
226
+ camel/toolkits/open_api_specs/web_scraper/ai-plugin.json,sha256=jjHvbj0DQ4AYcL9JlSWhyJZ3mFj4eC33E4t6Ci54p3s,1028
227
+ camel/toolkits/open_api_specs/web_scraper/openapi.yaml,sha256=u_WalQ01e8W1D27VnZviOylpGmJ-zssYrfAgkzqdoyk,2191
228
+ camel/toolkits/open_api_specs/web_scraper/paths/__init__.py,sha256=OKCZrQCDwaWtXIN_2rA9FSqEvgpQRieRoHh7Ek6N16A,702
229
+ camel/toolkits/open_api_specs/web_scraper/paths/scraper.py,sha256=aWy1_ppV4NVVEZfnbN3tu9XA9yAPAC9bRStJ5JuXMRU,1117
230
+ camel/toolkits/open_api_toolkit.py,sha256=Venfq8JwTMQfzRzzB7AYmYUMEX35hW0BjIv_ozFMiNk,23316
231
+ camel/toolkits/reddit_toolkit.py,sha256=tb0qwgtawgWe-PPotKVsKqMqkSiACP6k9MzKHuMbkXU,8886
232
+ camel/toolkits/retrieval_toolkit.py,sha256=gMHk-Y-KDROGd-yX9ykfpwAf6ViO678j9Q9Ju3sfBGo,3695
233
+ camel/toolkits/search_toolkit.py,sha256=lwCPArPLdtxN6rlKvxi5siUzZUcn9E0gFB5mhgqTtXM,18863
234
+ camel/toolkits/slack_toolkit.py,sha256=n8cn3kZIc27B-2KMTRK6Nsdan37SwMqBiBi1PMtuUvQ,10744
235
+ camel/toolkits/twitter_toolkit.py,sha256=ioAus3aFZi2GS3K73HqzRnXY9E7hr6MidO-asLFGZRM,15586
236
+ camel/toolkits/video_toolkit.py,sha256=n1P7F_cjdnC2jfUQQiJnhueRYA83GIjUF7HWIrES5xs,7089
237
+ camel/toolkits/weather_toolkit.py,sha256=qHAMD56zqd5GWnEWiaA_0aBDwvgacdx0pAHScinY4GY,6965
238
+ camel/toolkits/whatsapp_toolkit.py,sha256=H_83AFCIoBMvZUcfUvfRTIAjfR2DR79xP2J-rfQKtNo,6326
239
+ camel/types/__init__.py,sha256=fqttmYDx6nS9mFMIaVrYqwhUxcR2QJATJuZOnKBOB2o,2135
240
+ camel/types/enums.py,sha256=lvsIsaA_cDxvSf1TSPhYO02mgjVOw-FJ-pyXW7iQmhE,22606
241
+ camel/types/openai_types.py,sha256=7tfrPHScqyerPwIP7dPmKss87lVkvsb175cT-jLJWyg,2222
242
+ camel/types/unified_model_type.py,sha256=ocNxJM98xdCDeqCt1F7Fcvd4Hw1ZxMgsMRZqetGWndo,3819
243
+ camel/utils/__init__.py,sha256=PS-QW4kT3DefTtjUEkHvBkxMK06ar_uACbkszQWWPTM,2313
244
+ camel/utils/async_func.py,sha256=4esRhhGrvfm-iJRloUbU-sYWyHp_mt0bBBXpwyCv6vc,1556
245
+ camel/utils/commons.py,sha256=8TB55DseOepZtwlWqHPkqCivQKNecCOfzFKnqpD2hg4,18101
246
+ camel/utils/constants.py,sha256=MQD3bgLIq_NATp0D1iFkrwfkCwVX-PAOSXheTkkEdkY,1410
247
+ camel/utils/response_format.py,sha256=9KrbwtOM9cA3LSjTgLiK7oKy-53_uMh1cvpyNwwJpng,2419
248
+ camel/utils/token_counting.py,sha256=_Ce80Q3eGAb22JL2yZKiXwbloKcZl1L0RlWC5S_PSAo,14691
249
+ camel_ai-0.2.11.dist-info/LICENSE,sha256=id0nB2my5kG0xXeimIu5zZrbHLS6EQvxvkKkzIHaT2k,11343
250
+ camel_ai-0.2.11.dist-info/METADATA,sha256=CLLiLc50zjrXuoB3xwz-OTT_wX5XMoz7SO7RwrawDEM,30991
251
+ camel_ai-0.2.11.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
252
+ camel_ai-0.2.11.dist-info/RECORD,,