camel-ai 0.2.10__py3-none-any.whl → 0.2.12__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of camel-ai might be problematic. Click here for more details.
- camel/__init__.py +6 -1
- camel/agents/chat_agent.py +87 -6
- camel/agents/deductive_reasoner_agent.py +4 -1
- camel/benchmarks/__init__.py +18 -0
- camel/benchmarks/base.py +152 -0
- camel/benchmarks/gaia.py +478 -0
- camel/configs/__init__.py +6 -0
- camel/configs/mistral_config.py +0 -3
- camel/configs/nvidia_config.py +70 -0
- camel/configs/ollama_config.py +4 -2
- camel/configs/sglang_config.py +71 -0
- camel/configs/vllm_config.py +10 -1
- camel/data_collector/__init__.py +19 -0
- camel/data_collector/alpaca_collector.py +127 -0
- camel/data_collector/base.py +211 -0
- camel/data_collector/sharegpt_collector.py +205 -0
- camel/datahubs/__init__.py +23 -0
- camel/datahubs/base.py +136 -0
- camel/datahubs/huggingface.py +433 -0
- camel/datahubs/models.py +22 -0
- camel/embeddings/vlm_embedding.py +4 -1
- camel/interpreters/__init__.py +2 -0
- camel/interpreters/docker_interpreter.py +7 -2
- camel/interpreters/e2b_interpreter.py +136 -0
- camel/interpreters/subprocess_interpreter.py +7 -2
- camel/loaders/__init__.py +3 -1
- camel/loaders/base_io.py +41 -41
- camel/loaders/firecrawl_reader.py +0 -3
- camel/logger.py +112 -0
- camel/messages/__init__.py +3 -1
- camel/messages/base.py +10 -7
- camel/messages/conversion/__init__.py +3 -1
- camel/messages/conversion/alpaca.py +122 -0
- camel/models/__init__.py +7 -0
- camel/models/anthropic_model.py +14 -4
- camel/models/base_model.py +28 -0
- camel/models/groq_model.py +1 -1
- camel/models/model_factory.py +6 -0
- camel/models/model_manager.py +212 -0
- camel/models/nvidia_model.py +141 -0
- camel/models/ollama_model.py +12 -0
- camel/models/openai_model.py +0 -25
- camel/models/reward/__init__.py +22 -0
- camel/models/reward/base_reward_model.py +58 -0
- camel/models/reward/evaluator.py +63 -0
- camel/models/reward/nemotron_model.py +112 -0
- camel/models/sglang_model.py +225 -0
- camel/models/vllm_model.py +1 -1
- camel/personas/persona_hub.py +2 -2
- camel/retrievers/vector_retriever.py +22 -5
- camel/schemas/openai_converter.py +2 -2
- camel/societies/babyagi_playing.py +4 -1
- camel/societies/workforce/role_playing_worker.py +2 -2
- camel/societies/workforce/single_agent_worker.py +2 -2
- camel/societies/workforce/workforce.py +3 -3
- camel/storages/object_storages/amazon_s3.py +2 -2
- camel/storages/object_storages/azure_blob.py +2 -2
- camel/storages/object_storages/google_cloud.py +2 -2
- camel/toolkits/__init__.py +5 -0
- camel/toolkits/code_execution.py +42 -4
- camel/toolkits/function_tool.py +41 -0
- camel/toolkits/human_toolkit.py +1 -0
- camel/toolkits/math_toolkit.py +47 -16
- camel/toolkits/meshy_toolkit.py +185 -0
- camel/toolkits/search_toolkit.py +154 -2
- camel/toolkits/stripe_toolkit.py +273 -0
- camel/toolkits/twitter_toolkit.py +3 -0
- camel/types/__init__.py +2 -0
- camel/types/enums.py +68 -10
- camel/utils/commons.py +22 -5
- camel/utils/token_counting.py +26 -11
- {camel_ai-0.2.10.dist-info → camel_ai-0.2.12.dist-info}/METADATA +13 -6
- {camel_ai-0.2.10.dist-info → camel_ai-0.2.12.dist-info}/RECORD +76 -51
- /camel/messages/conversion/{models.py → conversation_models.py} +0 -0
- {camel_ai-0.2.10.dist-info → camel_ai-0.2.12.dist-info}/LICENSE +0 -0
- {camel_ai-0.2.10.dist-info → camel_ai-0.2.12.dist-info}/WHEEL +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: camel-ai
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.12
|
|
4
4
|
Summary: Communicative Agents for AI Society Study
|
|
5
5
|
Home-page: https://www.camel-ai.org/
|
|
6
6
|
License: Apache-2.0
|
|
@@ -28,12 +28,12 @@ Provides-Extra: tools
|
|
|
28
28
|
Provides-Extra: vector-databases
|
|
29
29
|
Requires-Dist: PyMuPDF (>=1.22.5,<2.0.0) ; extra == "tools" or extra == "all"
|
|
30
30
|
Requires-Dist: accelerate (>=0,<1) ; extra == "huggingface-agent" or extra == "all"
|
|
31
|
-
Requires-Dist: agentops (>=0.3.
|
|
32
|
-
Requires-Dist: anthropic (>=0.
|
|
31
|
+
Requires-Dist: agentops (>=0.3.21,<0.4.0) ; extra == "tools" or extra == "all"
|
|
32
|
+
Requires-Dist: anthropic (>=0.40.0,<0.41.0) ; extra == "model-platforms" or extra == "all"
|
|
33
33
|
Requires-Dist: apify_client (>=1.8.1,<2.0.0) ; extra == "tools" or extra == "all"
|
|
34
34
|
Requires-Dist: arxiv (>=2.1.3,<3.0.0) ; extra == "tools" or extra == "all"
|
|
35
35
|
Requires-Dist: arxiv2text (>=0.1.14,<0.2.0) ; extra == "tools" or extra == "all"
|
|
36
|
-
Requires-Dist: asknews (>=0.7.
|
|
36
|
+
Requires-Dist: asknews (>=0.7.54,<0.8.0) ; extra == "tools" or extra == "all"
|
|
37
37
|
Requires-Dist: azure-storage-blob (>=12.21.0,<13.0.0) ; extra == "object-storages" or extra == "all"
|
|
38
38
|
Requires-Dist: beautifulsoup4 (>=4,<5) ; extra == "tools" or extra == "all"
|
|
39
39
|
Requires-Dist: botocore (>=1.35.3,<2.0.0) ; extra == "object-storages" or extra == "all"
|
|
@@ -49,12 +49,14 @@ Requires-Dist: docker (>=7.1.0,<8.0.0) ; extra == "tools" or extra == "runtime"
|
|
|
49
49
|
Requires-Dist: docstring-parser (>=0.15,<0.16)
|
|
50
50
|
Requires-Dist: docx2txt (>=0.8,<0.9) ; extra == "tools" or extra == "all"
|
|
51
51
|
Requires-Dist: duckduckgo-search (>=6.2.12,<7.0.0) ; extra == "search-tools" or extra == "tools" or extra == "all"
|
|
52
|
+
Requires-Dist: e2b-code-interpreter (>=1.0.3,<2.0.0) ; extra == "tools" or extra == "all"
|
|
52
53
|
Requires-Dist: eval-type-backport (==0.2.0)
|
|
53
54
|
Requires-Dist: ffmpeg-python (>=0.2.0,<0.3.0) ; extra == "tools" or extra == "all"
|
|
54
55
|
Requires-Dist: firecrawl-py (>=1.0.0,<2.0.0) ; extra == "tools" or extra == "all"
|
|
55
56
|
Requires-Dist: google-cloud-storage (>=2.18.0,<3.0.0) ; extra == "object-storages" or extra == "all"
|
|
56
57
|
Requires-Dist: google-generativeai (>=0.6.0,<0.7.0) ; extra == "model-platforms" or extra == "all"
|
|
57
58
|
Requires-Dist: googlemaps (>=4.10.0,<5.0.0) ; extra == "tools" or extra == "all"
|
|
59
|
+
Requires-Dist: httpx (>=0.23.0,<0.27.3)
|
|
58
60
|
Requires-Dist: imageio[pyav] (>=2.34.2,<3.0.0) ; extra == "tools" or extra == "all"
|
|
59
61
|
Requires-Dist: ipykernel (>=6.0.0,<7.0.0) ; extra == "tools" or extra == "all"
|
|
60
62
|
Requires-Dist: jsonschema (>=4,<5)
|
|
@@ -86,6 +88,7 @@ Requires-Dist: pymilvus (>=2.4.0,<3.0.0) ; extra == "rag" or extra == "vector-da
|
|
|
86
88
|
Requires-Dist: pyowm (>=3.3.0,<4.0.0) ; extra == "tools" or extra == "all"
|
|
87
89
|
Requires-Dist: pytest (>=7,<8) ; extra == "test"
|
|
88
90
|
Requires-Dist: pytest-asyncio (>=0.23.0,<0.24.0) ; extra == "test"
|
|
91
|
+
Requires-Dist: pyyaml (>=6.0.2,<7.0.0) ; extra == "tools" or extra == "all"
|
|
89
92
|
Requires-Dist: qdrant-client (>=1.9.0,<2.0.0) ; extra == "rag" or extra == "vector-databases" or extra == "all"
|
|
90
93
|
Requires-Dist: rank-bm25 (>=0.2.2,<0.3.0) ; extra == "rag" or extra == "retrievers" or extra == "all"
|
|
91
94
|
Requires-Dist: redis (>=5.0.6,<6.0.0) ; extra == "kv-stroages" or extra == "all"
|
|
@@ -94,13 +97,15 @@ Requires-Dist: requests_oauthlib (>=1.3.1,<2.0.0) ; extra == "tools" or extra ==
|
|
|
94
97
|
Requires-Dist: scholarly[tor] (==1.7.11) ; extra == "tools" or extra == "all"
|
|
95
98
|
Requires-Dist: sentence-transformers (>=3.0.1,<4.0.0) ; extra == "rag" or extra == "encoders" or extra == "all"
|
|
96
99
|
Requires-Dist: sentencepiece (>=0,<1) ; extra == "huggingface-agent" or extra == "all"
|
|
100
|
+
Requires-Dist: sglang (>=0.4.0,<0.5.0) ; extra == "model-platforms" or extra == "all"
|
|
97
101
|
Requires-Dist: slack-bolt (>=1.20.1,<2.0.0) ; extra == "tools" or extra == "all"
|
|
98
102
|
Requires-Dist: slack-sdk (>=3.27.2,<4.0.0) ; extra == "tools" or extra == "all"
|
|
99
103
|
Requires-Dist: soundfile (>=0,<1) ; extra == "huggingface-agent" or extra == "all"
|
|
104
|
+
Requires-Dist: stripe (>=11.3.0,<12.0.0) ; extra == "tools" or extra == "all"
|
|
100
105
|
Requires-Dist: tavily-python (>=0.5.0,<0.6.0) ; extra == "search-tools" or extra == "all"
|
|
101
106
|
Requires-Dist: textblob (>=0.18.0.post0,<0.19.0) ; extra == "tools" or extra == "all"
|
|
102
107
|
Requires-Dist: tiktoken (>=0.7.0,<0.8.0)
|
|
103
|
-
Requires-Dist: torch (==2.1
|
|
108
|
+
Requires-Dist: torch (==2.2.1) ; (platform_system == "Darwin" and platform_machine != "arm64") and (extra == "huggingface-agent" or extra == "all")
|
|
104
109
|
Requires-Dist: torch (>=2,<3) ; (platform_system != "Darwin" or platform_machine == "arm64") and (extra == "huggingface-agent" or extra == "all")
|
|
105
110
|
Requires-Dist: transformers (>=4,<5) ; extra == "huggingface-agent" or extra == "all"
|
|
106
111
|
Requires-Dist: unstructured[all-docs] (>=0.14,<0.15) ; extra == "rag" or extra == "tools" or extra == "all"
|
|
@@ -257,7 +262,7 @@ conda create --name camel python=3.10
|
|
|
257
262
|
conda activate camel
|
|
258
263
|
|
|
259
264
|
# Clone github repo
|
|
260
|
-
git clone -b v0.2.
|
|
265
|
+
git clone -b v0.2.12 https://github.com/camel-ai/camel.git
|
|
261
266
|
|
|
262
267
|
# Change directory into project directory
|
|
263
268
|
cd camel
|
|
@@ -434,6 +439,8 @@ Practical guides and tutorials for implementing specific functionalities in CAME
|
|
|
434
439
|
| **[Track CAMEL Agents with AgentOps](https://docs.camel-ai.org/cookbooks/agents_tracking.html)** | Tools for tracking and managing agents in operations. |
|
|
435
440
|
| **[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
441
|
| **[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. |
|
|
442
|
+
| **[Data Deneration with CAMEL and Finetuning with Unsloth](https://docs.camel-ai.org/cookbooks/sft_data_generation_and_unsloth_finetuning.html)** | Learn how to generate data with CAMEL and fine-tune models effectively with Unsloth. |
|
|
443
|
+
| **[Customer Service Discord Bot with Agentic RAG](https://docs.camel-ai.org/cookbooks/customer_service_Discord_bot_with_agentic_RAG.html)** | Learn how to build a robust customer service bot for Discord using Agentic RAG. |
|
|
437
444
|
|
|
438
445
|
## Utilize Various LLMs as Backends
|
|
439
446
|
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
camel/__init__.py,sha256=
|
|
1
|
+
camel/__init__.py,sha256=aJei7L6hjseNbAS47bvyPT3JanfBEJIFyFbvpCz8KYY,912
|
|
2
2
|
camel/agents/__init__.py,sha256=LcS4m8s97-yADfznvcaAdUe9W0E9h3m6zrSc9H6m9so,1545
|
|
3
3
|
camel/agents/base.py,sha256=c4bJYL3G3Z41SaFdMPMn8ZjLdFiFaVOFO6EQIfuCVR8,1124
|
|
4
|
-
camel/agents/chat_agent.py,sha256=
|
|
4
|
+
camel/agents/chat_agent.py,sha256=70QQVzQhFY5VsPdcT2TE80LDgPh32SZ4v1Ci1Nc4P_M,51468
|
|
5
5
|
camel/agents/critic_agent.py,sha256=qFVlHlQo0CVgmPWfWYLT8_oP_KyzCLFsQw_nN_vu5Bs,7487
|
|
6
|
-
camel/agents/deductive_reasoner_agent.py,sha256=
|
|
6
|
+
camel/agents/deductive_reasoner_agent.py,sha256=6BZGaq1hR6hKJuQtOfoYQnk_AkZpw_Mr7mUy2MspQgs,13540
|
|
7
7
|
camel/agents/embodied_agent.py,sha256=XBxBu5ZMmSJ4B2U3Z7SMwvLlgp6yNpaBe8HNQmY9CZA,7536
|
|
8
8
|
camel/agents/knowledge_graph_agent.py,sha256=MxG40XL8rs9sxcK8BKDLKurZz-Jui-oJOpYJaR5ZjMo,8962
|
|
9
9
|
camel/agents/role_assignment_agent.py,sha256=8bkTc14XToFHkP-ZOef5KP0P4hTlCDv0eNsDZPYuukA,5088
|
|
@@ -12,13 +12,16 @@ camel/agents/task_agent.py,sha256=KfJvZ5vOjjbrn20UGqSMnf6lds5ydfXdb7eNMxBU5vs,14
|
|
|
12
12
|
camel/agents/tool_agents/__init__.py,sha256=hhd1kQYDshfvszN5JHBorINH9L3dI6xdDfKnbAAaKa0,856
|
|
13
13
|
camel/agents/tool_agents/base.py,sha256=T6G5OaAJd4L_yHSFoWcrtqkMEyhge42ppVjx7lYD3Cg,1393
|
|
14
14
|
camel/agents/tool_agents/hugging_face_tool_agent.py,sha256=nNySkdBRYaD05rLyPxzmq8W7D9WPcNHCY9h1jD6S0Hk,8717
|
|
15
|
+
camel/benchmarks/__init__.py,sha256=LPdpk9YqYmNj9wMXYbtWwZ0CtW9BY16bm1TH1oZk-UQ,859
|
|
16
|
+
camel/benchmarks/base.py,sha256=GHbcE0KAenEiYb3x8orLgyGPp40KTdLHwahVFhI-cgE,4594
|
|
17
|
+
camel/benchmarks/gaia.py,sha256=rMCD9bkUYdHol1i-JROf4CS7jqmLHcNXSOJ7ndJgA7U,16774
|
|
15
18
|
camel/bots/__init__.py,sha256=pAe-LJmAcYDG10DU_UU7-qL20223ZpctVw_8WGP5EsA,1178
|
|
16
19
|
camel/bots/discord_app.py,sha256=HMBrE0_V2wjdtFvB_fwBFQAv0CAmvJdGaFwKZFG7Wsg,4998
|
|
17
20
|
camel/bots/slack/__init__.py,sha256=iqySoYftEb7SI4pabhMvvTp1YYS09BvjwGXPEbcP1Hc,1055
|
|
18
21
|
camel/bots/slack/models.py,sha256=xMz3RO-88yrxPRrbBDjiabpbZIlpEHCvU-1CvASKARc,5143
|
|
19
22
|
camel/bots/slack/slack_app.py,sha256=SoSRZZnuTJ0aiLUBZqdG8cUFJzYpfpZh7304t0a_7Dg,9944
|
|
20
23
|
camel/bots/telegram_bot.py,sha256=gnyxToSHkjRpNDoCWBNv59WcdxeocVJHU2S4jexzM2E,2741
|
|
21
|
-
camel/configs/__init__.py,sha256=
|
|
24
|
+
camel/configs/__init__.py,sha256=FRlzs2p34Pz8wX_FO0hhypog97HhGMCNIVLs0vy4bco,2791
|
|
22
25
|
camel/configs/anthropic_config.py,sha256=155XWgprizY_iSRQjp22uLfie417ttisiR6h5LHmGhU,3278
|
|
23
26
|
camel/configs/base_config.py,sha256=RrlOwwTUXeTjsDChZXUZIBK1uCojyavEbX21bGVLuog,3286
|
|
24
27
|
camel/configs/cohere_config.py,sha256=joF4GHqoTIRuEDlyTmxW5Ud23psE0xP1VCcEvKychko,3997
|
|
@@ -26,39 +29,51 @@ camel/configs/deepseek_config.py,sha256=ZH6VELkvZ0rjA64PTwcvINDo4PWtkiPMTY7VwNXx
|
|
|
26
29
|
camel/configs/gemini_config.py,sha256=m4p9zijSBmIba41NbSa997NRz2HumiRcb5nTICAMPXM,5686
|
|
27
30
|
camel/configs/groq_config.py,sha256=Xe82_EbEYfacNXQApIHZiXw-NscufZxnLau72YEy_iA,5744
|
|
28
31
|
camel/configs/litellm_config.py,sha256=oa6b67M0UotlvN7NuXrSUXLrskdpm3RMcew0rBfSsBc,4686
|
|
29
|
-
camel/configs/mistral_config.py,sha256=
|
|
30
|
-
camel/configs/
|
|
32
|
+
camel/configs/mistral_config.py,sha256=ul7AAeG3172PtodEEruAZky0OURwgp6YeNq8ma-4os4,3463
|
|
33
|
+
camel/configs/nvidia_config.py,sha256=1Oc3tulHOqAfx1mkrEywrxKIV1SBNzPm0CNrWgj9HXo,3226
|
|
34
|
+
camel/configs/ollama_config.py,sha256=oEYSgieliXFyvZWs-de-ZsSZVzhoDUC_oyCx1GW3HYY,4403
|
|
31
35
|
camel/configs/openai_config.py,sha256=CRqM00fA4mXsaADuhwbwwceW3t4o0ae9_7CiKjJg1gI,7448
|
|
32
36
|
camel/configs/qwen_config.py,sha256=wLzkv0G3qzcqRN31oHv-6OXKcB1-ILlROj4xgdFSmPM,4648
|
|
33
37
|
camel/configs/reka_config.py,sha256=QhTa4hUKz_TF3txTJRNlLSJ391uphEqZOG0zev6bI7w,3498
|
|
34
38
|
camel/configs/samba_config.py,sha256=2__Xj0HIsFWN38rsbZl9a-lXwOO5XHXoo_j7VwiUDpA,8825
|
|
39
|
+
camel/configs/sglang_config.py,sha256=NPgwUZZ3igCl5LTMDYZzkzOvmk5vbgnbv_UUUlMRI74,3509
|
|
35
40
|
camel/configs/togetherai_config.py,sha256=bzFlDPR78NwvGCIPAhplITiy8WsGrdK4IDBbfQ7xGSw,5655
|
|
36
|
-
camel/configs/vllm_config.py,sha256=
|
|
41
|
+
camel/configs/vllm_config.py,sha256=9F81FtJGbO8T3aGFggDOVUL5qequPmg882ZSXjIeFW0,6110
|
|
37
42
|
camel/configs/yi_config.py,sha256=ZvrOroEdYgdyBWcYxn3CHyOA64P5I16XBVbgfusxaPQ,2745
|
|
38
43
|
camel/configs/zhipuai_config.py,sha256=30plN-bSwogoP87V7elTRCMBspOZ58t4aKgg9ZoJFCk,3589
|
|
44
|
+
camel/data_collector/__init__.py,sha256=UWZya21xeJ6DvyLcf54XlYPg7ShOsNJmNR88kfRLmnA,924
|
|
45
|
+
camel/data_collector/alpaca_collector.py,sha256=fqS_kws1EU9mDWlVxPXcoD1GhJ7lEzC28muGIMxiUpg,4683
|
|
46
|
+
camel/data_collector/base.py,sha256=AOX-4xAf88g_5h_chD5fjNK4oz3f4Em1u2lr7NQ_EIY,6727
|
|
47
|
+
camel/data_collector/sharegpt_collector.py,sha256=CnXvbo1K--67Tlym01Xx6Q1ZxmyKk8EKbgPVbsCLYXc,7219
|
|
48
|
+
camel/datahubs/__init__.py,sha256=1a8fRuzgirO2pHtPnuisZ76iF_AN9GxMFq9gwFKWE5I,906
|
|
49
|
+
camel/datahubs/base.py,sha256=4QKWiJaeL5ReQpyTAbOtzHs-2CzAYbVyoMngYwdpZGU,4357
|
|
50
|
+
camel/datahubs/huggingface.py,sha256=Pg7Sp_u4ESbKmSzWovDmNZwEsrKNuV2z4jryes4X11s,14707
|
|
51
|
+
camel/datahubs/models.py,sha256=e_jkKz1ShwmMLwveDOE1xGJk-w3-j1p2hSc0j-4cEuQ,903
|
|
39
52
|
camel/embeddings/__init__.py,sha256=uOPul-p528_0TcCoBIe8-jhU4p1z1r5Lnsy0IFle3HQ,1200
|
|
40
53
|
camel/embeddings/base.py,sha256=mxqFkWh2AfbxuVKPOqVx16fCznmuSh9QXGjaEeZHvoY,2190
|
|
41
54
|
camel/embeddings/mistral_embedding.py,sha256=hU58FkRlQxTMlR0IMXln3F4M7stdX2Kbw9neAD6aZT0,3235
|
|
42
55
|
camel/embeddings/openai_compatible_embedding.py,sha256=dCeVuWTL1LYJyUOGLWaH9t4vI-SPcabv8Xgh8WIeFDI,3048
|
|
43
56
|
camel/embeddings/openai_embedding.py,sha256=iLrUhwHDMXYt3r6ECT4-LRGs4Nd4yiDgkgGmJZDxMKw,3602
|
|
44
57
|
camel/embeddings/sentence_transformers_embeddings.py,sha256=E7a8lN50CtDBsFO-NOFQ6qfCnbH41O0_kTTg7dG3sOo,2724
|
|
45
|
-
camel/embeddings/vlm_embedding.py,sha256=
|
|
58
|
+
camel/embeddings/vlm_embedding.py,sha256=HZFdcz1YzkFPzMj45_jaCVmDQJyccoXN561aLWlrYmo,5497
|
|
46
59
|
camel/generators.py,sha256=JRqj9_m1PF4qT6UtybzTQ-KBT9MJQt18OAAYvQ_fr2o,13844
|
|
47
60
|
camel/human.py,sha256=9X09UmxI2JqQnhrFfnZ3B9EzFmVfdSWQcjLWTIXKXe0,4962
|
|
48
|
-
camel/interpreters/__init__.py,sha256=
|
|
61
|
+
camel/interpreters/__init__.py,sha256=NOQUsg7gR84zO8nBXu4JGUatsxSDJqZS6otltjXfop4,1265
|
|
49
62
|
camel/interpreters/base.py,sha256=F026f2ZnvHwikSMbk6APYNvB9qP4Ye5quSkTbFKV3O0,1898
|
|
50
|
-
camel/interpreters/docker_interpreter.py,sha256=
|
|
63
|
+
camel/interpreters/docker_interpreter.py,sha256=Uo5r2jcJGjC6rn5Yzx9qLzlXTsA5RH7AnFe7I0rxo10,8700
|
|
64
|
+
camel/interpreters/e2b_interpreter.py,sha256=1neRpS-ZuvwnSjAmDjSrczE1YD3PLl_mCEa3CDJmVK0,4768
|
|
51
65
|
camel/interpreters/internal_python_interpreter.py,sha256=YYAXAmDWayrPQgeae7UVdD_k35DHxqUyFuHfDsApQjc,21860
|
|
52
66
|
camel/interpreters/interpreter_error.py,sha256=uEhcmHmmcajt5C9PLeHs21h1fE6cmyt23tCAGie1kTA,880
|
|
53
67
|
camel/interpreters/ipython_interpreter.py,sha256=-erOR6imuh5pUtpbUYky3zoLDr30Y5E7lm59BwwxzNs,5976
|
|
54
|
-
camel/interpreters/subprocess_interpreter.py,sha256=
|
|
55
|
-
camel/loaders/__init__.py,sha256=
|
|
68
|
+
camel/interpreters/subprocess_interpreter.py,sha256=HZBpYBI_W1WPZ6W0uEXYnlAzGC-7fJChGMXl1yoMTss,6909
|
|
69
|
+
camel/loaders/__init__.py,sha256=fkpw2Qw8EG99bFFsO8dGFWm2JTLu2vE3R4QF328Dj88,1142
|
|
56
70
|
camel/loaders/apify_reader.py,sha256=6-D85eJDdzt3fFAa5nDgS46vGR_QUzd4zv8hkLYArZ4,7900
|
|
57
|
-
camel/loaders/base_io.py,sha256=
|
|
71
|
+
camel/loaders/base_io.py,sha256=SAJInsmIYin45lXMSAhzWEFl7FjQ4WswqRU0D7sihRs,10170
|
|
58
72
|
camel/loaders/chunkr_reader.py,sha256=lfhei64xoFVb8AJLdQHtuNClGPQ4zn6mC0Sw9jav9fc,6068
|
|
59
|
-
camel/loaders/firecrawl_reader.py,sha256=
|
|
73
|
+
camel/loaders/firecrawl_reader.py,sha256=w9fupPJij4oyuvFnCVjS-Hfm40367jSLBBqoHSjMDB4,6604
|
|
60
74
|
camel/loaders/jina_url_reader.py,sha256=dL9J5JlsFKEhi4gU_vYIxKvvf_RJ4LY9gG6i8P8JpcA,3601
|
|
61
75
|
camel/loaders/unstructured_io.py,sha256=Dh-MB02nrhVXFyQCUrYt4DATd12zi5bNWE47cPC5yBs,17429
|
|
76
|
+
camel/logger.py,sha256=0EeHaRByKFNDjodpD7T6p2ERPgCrVbAhF410q0SOM9Y,3951
|
|
62
77
|
camel/memories/__init__.py,sha256=JQbs-_7VkcVTjE8y9J0DWI3btDyMRZilTZNVuy_RxZM,1358
|
|
63
78
|
camel/memories/agent_memories.py,sha256=8NV5U28fR1ncVXhWfElfkP19Ka4mMpkevheMFVCg2J0,7101
|
|
64
79
|
camel/memories/base.py,sha256=c4sSufQqaK96Lm9APkWB2V8m7PM1QkKmSxecGcddIM0,4997
|
|
@@ -68,42 +83,50 @@ camel/memories/blocks/vectordb_block.py,sha256=gH55PZGbGMyUPjszUskxN0i-jTxiNpvgg
|
|
|
68
83
|
camel/memories/context_creators/__init__.py,sha256=pqzkBM2ro5JZD7RhWg05TjinphhCq0QTIqBJlIL1sJ0,800
|
|
69
84
|
camel/memories/context_creators/score_based.py,sha256=eNZDvLt1AV1bDXB_No0gDWDJQNczKL85E8WRjWetvxg,5379
|
|
70
85
|
camel/memories/records.py,sha256=wOMlTit1xWTs32uztGQ7KQ2wdT6vgHzFdpVCiih2lBA,3680
|
|
71
|
-
camel/messages/__init__.py,sha256=
|
|
72
|
-
camel/messages/base.py,sha256=
|
|
73
|
-
camel/messages/conversion/__init__.py,sha256=
|
|
74
|
-
camel/messages/conversion/
|
|
86
|
+
camel/messages/__init__.py,sha256=85FeH6KpPt8eriwJEIS_jMQdiD6pCuU_0Hwt0pA7tSE,1878
|
|
87
|
+
camel/messages/base.py,sha256=3CHOT7jt4iB6aqD8wA4JSN4AIt0oNdsKjKE_7tzLKrU,19609
|
|
88
|
+
camel/messages/conversion/__init__.py,sha256=8B4C-0wj-dm925YRKNyx31WYK25PWpME7Q9jPtx2jkY,1047
|
|
89
|
+
camel/messages/conversion/alpaca.py,sha256=jBU2bMhzNjzptGuoasThYvFov_cYPCYt3pEfs0T7z7U,4163
|
|
90
|
+
camel/messages/conversion/conversation_models.py,sha256=f2ybtYdCbILq9IYgaHkQ57yYxDdCBSspKrfaArZvNw8,5300
|
|
75
91
|
camel/messages/conversion/sharegpt/__init__.py,sha256=oWUuHV5w85kxqhz_hoElLmCfzLm-ccku-fM9SnUJ5zI,794
|
|
76
92
|
camel/messages/conversion/sharegpt/function_call_formatter.py,sha256=cn7e7CfmxEVFlfOqhjhNuA8nuWvWD6hXYn-3okXNxxQ,1832
|
|
77
93
|
camel/messages/conversion/sharegpt/hermes/__init__.py,sha256=mxuMSm-neaTgInIjYXuIVdC310E6jKJzM3IdtaJ4qY4,812
|
|
78
94
|
camel/messages/conversion/sharegpt/hermes/hermes_function_formatter.py,sha256=zJ9q7KFFMlQ27-WuFxf4LLL9DQt2bpeGJ2IzoUzmqZg,4552
|
|
79
95
|
camel/messages/func_message.py,sha256=MTkkJksMCd640QJx5pzRHI__6jJyh86u3B-02hi2Csk,5639
|
|
80
|
-
camel/models/__init__.py,sha256=
|
|
81
|
-
camel/models/anthropic_model.py,sha256=
|
|
96
|
+
camel/models/__init__.py,sha256=Wviku57BMkHjETiyCkpBbwGIKeEMXPl0rW8_TvL_Nvo,2326
|
|
97
|
+
camel/models/anthropic_model.py,sha256=hahX3M0fY3mfxa9cNhNLtY_sjC-EgVJaaeNhFY2AQ_o,6500
|
|
82
98
|
camel/models/azure_openai_model.py,sha256=--BgJfqujFBsDKoTwx8M4q69v6EnpykBh-ztc6G2gDk,6169
|
|
83
|
-
camel/models/base_model.py,sha256=
|
|
99
|
+
camel/models/base_model.py,sha256=rxRZc31cKone4OGuvXi14FI_O9TC1aBvIy8WFSlVeSI,5727
|
|
84
100
|
camel/models/cohere_model.py,sha256=NpkFxnlwLWn6r00MqbS7PlP4SEp6YaQhlgO9Le2K8Js,10320
|
|
85
101
|
camel/models/deepseek_model.py,sha256=1Y_24EyatcjHEkZ2hMj1zOXy7TeonEnDvg5uN6kfr0U,5033
|
|
86
102
|
camel/models/gemini_model.py,sha256=dWkh50rTTlXs1399cKvLrIqg2Sa_A-CGbt1EdV0RJuc,5048
|
|
87
|
-
camel/models/groq_model.py,sha256=
|
|
103
|
+
camel/models/groq_model.py,sha256=TLDE7eeoqmq50G0tABeO6KquL68N6WSG3RlED2EYFEM,4961
|
|
88
104
|
camel/models/litellm_model.py,sha256=-9DcJlVBL25vsZOdA0UkEWt5G5PP8QaXXhcE2PRiwRw,5296
|
|
89
105
|
camel/models/mistral_model.py,sha256=wq0oKZ0rLPEIDZPgmNiPoeDdQBo5_oISU9u-62FO6us,9772
|
|
90
|
-
camel/models/model_factory.py,sha256=
|
|
106
|
+
camel/models/model_factory.py,sha256=O8gz27WeDWm_HG1GiSAdmeHmwXJrfdIs0Hkjtv8wY6s,6142
|
|
107
|
+
camel/models/model_manager.py,sha256=ji1d1S-2lwk6uDggSyTnXbalu2F5lHaZnfPBBCJwBxU,7159
|
|
91
108
|
camel/models/nemotron_model.py,sha256=qV_uSZVEdv5Nwi5aO-Wt0gWfZgTOH14xA7B47HKHgVM,2905
|
|
92
|
-
camel/models/
|
|
109
|
+
camel/models/nvidia_model.py,sha256=hPpcaS_TZxni1ZqMbDEm6x-qgGvBslYmNGT2E_5-1To,5194
|
|
110
|
+
camel/models/ollama_model.py,sha256=LNylkRs_rHCrA4cHZY3dih1euVUS68rK7W2wouDzEPw,6056
|
|
93
111
|
camel/models/openai_audio_models.py,sha256=61tGMxwOwXwh9RThXcQmkTCiGPEhau85_BM_nxgIKmY,10036
|
|
94
112
|
camel/models/openai_compatible_model.py,sha256=VkzjSlWBgHVlKAPzbLwYiKeWs7Om4rAnNYMgZjrVKRQ,4058
|
|
95
|
-
camel/models/openai_model.py,sha256=
|
|
113
|
+
camel/models/openai_model.py,sha256=Fy5WJN9Lm3SVexCa7RBClssSb6-uFLl1A_0jH-STzkM,6564
|
|
96
114
|
camel/models/qwen_model.py,sha256=GKGFfVUWvWiCT9HUFgZ_fdQaFy8Z3uAhTE5Em_r-zpY,4991
|
|
97
115
|
camel/models/reka_model.py,sha256=lwg27dzrEOlia9-apX5Km5sHShL6Fl55C4EOr8PXjDQ,8277
|
|
116
|
+
camel/models/reward/__init__.py,sha256=8tvL9Qo9YAqllhcXB5yfH9dAwuvlXKNpKL1WIM_lJ9s,912
|
|
117
|
+
camel/models/reward/base_reward_model.py,sha256=erCmBCl51oFNjEHCXWxdHKIPNVJnQlNGgYBDn2bFD-Q,2064
|
|
118
|
+
camel/models/reward/evaluator.py,sha256=54ev5MuQ_5Tp0-LGO59EIuIkGrVMbtXXqpBR5Ps9kCM,2426
|
|
119
|
+
camel/models/reward/nemotron_model.py,sha256=F9Nvgy9RIvWPoE7YI3p3-xi7ZuI_sv5pqC0nNV5m1v8,3868
|
|
98
120
|
camel/models/samba_model.py,sha256=sND841pldlPOIRGA9KPnchfe2tVTel33UGfBZ7o2LtM,14479
|
|
121
|
+
camel/models/sglang_model.py,sha256=cYrqZNwS2sgx9DWImRg42WcT1MxaGJ5dfKXcZPZAQ20,8145
|
|
99
122
|
camel/models/stub_model.py,sha256=TKTTryatEqCfjQ8NTco9ipj29CbLLtmWEcF_VcaWvQI,3703
|
|
100
123
|
camel/models/togetherai_model.py,sha256=J5kK_uaF7u6l7lj69pA_7D9AOq3BcVh8Dbrx0I-d5uk,5245
|
|
101
|
-
camel/models/vllm_model.py,sha256=
|
|
124
|
+
camel/models/vllm_model.py,sha256=OjOjbpihb4L5uU0TVunXXiOpNmzuZGjhwzcElyhLZoU,5639
|
|
102
125
|
camel/models/yi_model.py,sha256=9MLV2O8eRmkCvErkgsaYfE7wlnAYsCnM_EoZEzM0EiM,4906
|
|
103
126
|
camel/models/zhipuai_model.py,sha256=hLvdQ1A2VylCxnTgTSlmQXVcRSOx--TDn_-w_Vb5O64,5120
|
|
104
127
|
camel/personas/__init__.py,sha256=b2EU-unbIfCZjgq2dODf9mq0L9-VP5QXDVTjeYyvKCM,804
|
|
105
128
|
camel/personas/persona.py,sha256=Ssvp8coQU_kYuDm0W0J8r5AAZyOsn8EScLhVa0HjDOs,4221
|
|
106
|
-
camel/personas/persona_hub.py,sha256=
|
|
129
|
+
camel/personas/persona_hub.py,sha256=v5O3BE_krz6s1OOiRhhnODuCf-2cqIw1tDCWgGG55dU,10555
|
|
107
130
|
camel/prompts/__init__.py,sha256=suZUHJ4XUDCU4mB0AtMCcPbfzHU2nHEZH37sC_oyCx4,2386
|
|
108
131
|
camel/prompts/ai_society.py,sha256=dOLSDCcjHkwTFXYorc0bSZq76DHj2cRMGKBVCViaaEg,6300
|
|
109
132
|
camel/prompts/base.py,sha256=z5sVuat3K4TMV4xscLLczzrH8AHBCTyEW_P4E_uuYqo,8458
|
|
@@ -128,7 +151,7 @@ camel/retrievers/auto_retriever.py,sha256=QdeZzuEb7UNJY_J1asGU85RaA-tuLuDLlh3cd8
|
|
|
128
151
|
camel/retrievers/base.py,sha256=Sx66VHuNOJE31u59DX5XBwota4XqubeVm0feqLV7i28,2640
|
|
129
152
|
camel/retrievers/bm25_retriever.py,sha256=feQgn3dwnbQG8H7KSbFzjaFAw3KtKObfoyA6gmL836A,5149
|
|
130
153
|
camel/retrievers/cohere_rerank_retriever.py,sha256=tzMS3HG4wD3gbIAVcHsC5fTbFxuiNrT4qJ10oJMJ0BA,4032
|
|
131
|
-
camel/retrievers/vector_retriever.py,sha256=
|
|
154
|
+
camel/retrievers/vector_retriever.py,sha256=LkOKwPJIeZJp8bovpUbsCZgakrQDX19BLGbUF8ZSQX4,10609
|
|
132
155
|
camel/runtime/__init__.py,sha256=QFxG8qYixImqSmC5bLXgT4_gkC5V8nq9dr9XlY4iZZM,1125
|
|
133
156
|
camel/runtime/api.py,sha256=NBSg1C0v6RqlooTIzPEDKcHNixPTaQImFvWmWsaskhc,3095
|
|
134
157
|
camel/runtime/base.py,sha256=KKBLO6PwWEWBXbYaVtO9JXqBT8110iYpMhgNSIxQvYQ,1512
|
|
@@ -141,19 +164,19 @@ camel/runtime/utils/function_risk_toolkit.py,sha256=rXVnh5Dm9syHvjFGMMZH5ABSIhsx
|
|
|
141
164
|
camel/runtime/utils/ignore_risk_toolkit.py,sha256=ms9xEpHdpCnfrl3ppaAhgERcifKKoD3FcJHmWRLI2zg,2693
|
|
142
165
|
camel/schemas/__init__.py,sha256=FIispqu0jMi7DPFg8iGsc3NdbC0daxSbWjybd72F6cA,792
|
|
143
166
|
camel/schemas/base.py,sha256=S5fDiqJmNzTOhxN3Wl93gAcZnu3ke71fhZod5lq4mPI,1660
|
|
144
|
-
camel/schemas/openai_converter.py,sha256=
|
|
167
|
+
camel/schemas/openai_converter.py,sha256=heyQesFAAjo4RF4R5BB1SPpF4mbNt9UhTvszxyJYDTM,4310
|
|
145
168
|
camel/societies/__init__.py,sha256=NOHjtlsY-gV9UCF2xXgcbG-xXyuigmbwbpLpNsDgEJ4,826
|
|
146
|
-
camel/societies/babyagi_playing.py,sha256=
|
|
169
|
+
camel/societies/babyagi_playing.py,sha256=KbTdpHfZ2V8AripVck0bNTOyF-RSaMPCRARz3DvzWfQ,11855
|
|
147
170
|
camel/societies/role_playing.py,sha256=I7xCYauJwGex1Fj9p1S6UxHI25lVshyidAeY8_6gE2o,23809
|
|
148
171
|
camel/societies/workforce/__init__.py,sha256=bkTI-PE-MSK9AQ2V2gR6cR2WY-R7Jqy_NmXRtAoqo8o,920
|
|
149
172
|
camel/societies/workforce/base.py,sha256=4uSTmBQsWk_UX1xUrEbjo0X7OuYRbGWoroTV71Tvg8U,1947
|
|
150
173
|
camel/societies/workforce/prompts.py,sha256=KBiBWDXhclpJLvdUmk2anX2J9eeUDD7xHYwSeZJD_Hc,6178
|
|
151
|
-
camel/societies/workforce/role_playing_worker.py,sha256=
|
|
152
|
-
camel/societies/workforce/single_agent_worker.py,sha256=
|
|
174
|
+
camel/societies/workforce/role_playing_worker.py,sha256=GhU2yKHYxU_etbTXn6xz8pq4ywtQRbP-UKdPSX6uIbA,7128
|
|
175
|
+
camel/societies/workforce/single_agent_worker.py,sha256=RgZveQhinTLJA9XPRb_ph_mGY4h7goeYrG20ydtwVjA,3582
|
|
153
176
|
camel/societies/workforce/task_channel.py,sha256=9t5hoinfGYnbRavX4kx34Jk1FOy05SnJZYbNzb5M-CQ,7140
|
|
154
177
|
camel/societies/workforce/utils.py,sha256=yPbcLx8lNZStl15C4UXRBl5qsTrGA-hiIGynnGi53WQ,2384
|
|
155
178
|
camel/societies/workforce/worker.py,sha256=Do6FDpEraICQVptBH-LiG5KDYYQzD83sLoYO9J8NAbc,3933
|
|
156
|
-
camel/societies/workforce/workforce.py,sha256=
|
|
179
|
+
camel/societies/workforce/workforce.py,sha256=pnyLnV4Fo5awuddf_kMWGwoHyyIw8STdIYfEQqVGkQE,18276
|
|
157
180
|
camel/storages/__init__.py,sha256=jXff0PfC9VzAlSAgwlPv3uzZQlhuc82Did_OPNLJJuY,1617
|
|
158
181
|
camel/storages/graph_storages/__init__.py,sha256=G29BNn651C0WTOpjCl4QnVM-4B9tcNh8DdmsCiONH8Y,948
|
|
159
182
|
camel/storages/graph_storages/base.py,sha256=uSe9jWuLudfm5jtfo6E-L_kNzITwK1_Ef-6L4HWw-JM,2852
|
|
@@ -166,10 +189,10 @@ camel/storages/key_value_storages/in_memory.py,sha256=k04Nx53lYxD5MoqDtBEgZrQYkA
|
|
|
166
189
|
camel/storages/key_value_storages/json.py,sha256=aVQ8BeC7p59valOYCE_HpziH7BrQQgh6ViEGDsm28gE,3486
|
|
167
190
|
camel/storages/key_value_storages/redis.py,sha256=MTxInVFNOi-lTxJK3TFwdJTBwllxqzvwPVWYOBcBSbs,5700
|
|
168
191
|
camel/storages/object_storages/__init__.py,sha256=26yATVTD9yVH-p9KueD30JakstTGiDh89GcFtUNNe4U,915
|
|
169
|
-
camel/storages/object_storages/amazon_s3.py,sha256=
|
|
170
|
-
camel/storages/object_storages/azure_blob.py,sha256=
|
|
192
|
+
camel/storages/object_storages/amazon_s3.py,sha256=9Yvyyyb1LGHxr8REEza7oGopbVtLEfOyXWJc18ZwgqA,7418
|
|
193
|
+
camel/storages/object_storages/azure_blob.py,sha256=66dHcvjE2ZNdb339oBU6LbFiKzPYrnlb4tQ_3m2Yazc,5992
|
|
171
194
|
camel/storages/object_storages/base.py,sha256=pImWylYJm7Wt8q87lBE1Cxk26IJ9sRtXq_OJmV6bJlg,3796
|
|
172
|
-
camel/storages/object_storages/google_cloud.py,sha256=
|
|
195
|
+
camel/storages/object_storages/google_cloud.py,sha256=59AvGar_GDoGYHhzUi5KBtInv2KaUVnw8SalsL43410,5332
|
|
173
196
|
camel/storages/vectordb_storages/__init__.py,sha256=NCXSLGFE5BuGWDYrsXuiJIsOJObwGnyAzpWuzMoxeWU,1070
|
|
174
197
|
camel/storages/vectordb_storages/base.py,sha256=XhgTthEg4jEIsycwKy48QXj4POnCx9j9UndlTM_cG9w,6675
|
|
175
198
|
camel/storages/vectordb_storages/milvus.py,sha256=XGKSQQflvqvTCo92rrgmbwYtsJKY9JxphdEQqGXf_kA,13483
|
|
@@ -181,20 +204,21 @@ camel/terminators/__init__.py,sha256=t8uqrkUnXEOYMXQDgaBkMFJ0EXFKI0kmx4cUimli3Ls
|
|
|
181
204
|
camel/terminators/base.py,sha256=xmJzERX7GdSXcxZjAHHODa0rOxRChMSRboDCNHWSscs,1511
|
|
182
205
|
camel/terminators/response_terminator.py,sha256=n3G5KP6Oj7-7WlRN0yFcrtLpqAJKaKS0bmhrWlFfCgQ,4982
|
|
183
206
|
camel/terminators/token_limit_terminator.py,sha256=YWv6ZR8R9yI2Qnf_3xES5bEE_O5bb2CxQ0EUXfMh34c,2118
|
|
184
|
-
camel/toolkits/__init__.py,sha256=
|
|
207
|
+
camel/toolkits/__init__.py,sha256=NS4O1h4MwQB0g8jH1HvN__e25Y6BhgTl1wzQCXJb1xc,2574
|
|
185
208
|
camel/toolkits/arxiv_toolkit.py,sha256=WsK8WcrYrz54tNbYb0JKrohPYhbG95115z3dkh0iupo,5666
|
|
186
209
|
camel/toolkits/ask_news_toolkit.py,sha256=1HzyS5ZChq8E98dL0rPJAHRGJBWBxvbYbGQu3qeC3qE,23156
|
|
187
210
|
camel/toolkits/base.py,sha256=XnERVclg201dG7BrawwbuSeSlkz1ngIfatES1ingpkA,1264
|
|
188
|
-
camel/toolkits/code_execution.py,sha256=
|
|
211
|
+
camel/toolkits/code_execution.py,sha256=DRJ1yHDubv93CQfgm0tSi4Tn1uvqh3eGmYGXjtd2bCA,4464
|
|
189
212
|
camel/toolkits/dalle_toolkit.py,sha256=Usmw3JiJErLQgWSB1qKq_bOACNwbUTQPFc_EsVzTrGo,5115
|
|
190
213
|
camel/toolkits/data_commons_toolkit.py,sha256=_LJJ83eWEHuT8VsPLsH66LSakRkxwV4AkQmktN017S4,13060
|
|
191
|
-
camel/toolkits/function_tool.py,sha256=
|
|
214
|
+
camel/toolkits/function_tool.py,sha256=Zo2F77DeMnrsgFJh6HD8zBjUIYRSlf6WAgUAos2LSFo,29417
|
|
192
215
|
camel/toolkits/github_toolkit.py,sha256=tZyZTlvUK6uFxhB0Acr4tVmVKV_KTitJPqBSpdXrSeg,11625
|
|
193
216
|
camel/toolkits/google_maps_toolkit.py,sha256=a5ex5_PyhOEriv_0UloUgSpXGI7b12lwhQyewp78s1I,11948
|
|
194
217
|
camel/toolkits/google_scholar_toolkit.py,sha256=TVU2JlNR8u-zMgasIkOGgb4C3mh1UKDhHgU33WkM2Mg,6534
|
|
195
|
-
camel/toolkits/human_toolkit.py,sha256=
|
|
218
|
+
camel/toolkits/human_toolkit.py,sha256=4YsZrCSFaMceM1MpGa-tg5gkmbdcZrm0qe3j2JRgfE8,1829
|
|
196
219
|
camel/toolkits/linkedin_toolkit.py,sha256=r1q8Ds95chC9vxtsaUYUDEitM8tDjUw_MrkpWpM4W8s,7911
|
|
197
|
-
camel/toolkits/math_toolkit.py,sha256=
|
|
220
|
+
camel/toolkits/math_toolkit.py,sha256=5yVF0bKuwkZIV01uICd3TOfktXlTERjKt4DrFyz_oaE,3639
|
|
221
|
+
camel/toolkits/meshy_toolkit.py,sha256=jvXF5HocWH1yhQk6hGoxBpYrv6s6QUp43bT6wNJVS_g,6329
|
|
198
222
|
camel/toolkits/notion_toolkit.py,sha256=jXvPBNs_VHMDDWa59UmTZuwFgJXgRgFirlH1BK70kHw,9506
|
|
199
223
|
camel/toolkits/open_api_specs/biztoc/__init__.py,sha256=OKCZrQCDwaWtXIN_2rA9FSqEvgpQRieRoHh7Ek6N16A,702
|
|
200
224
|
camel/toolkits/open_api_specs/biztoc/ai-plugin.json,sha256=IJinQbLv5MFPGFwdN7PbOhwArFVExSEZdJspe-mOBIo,866
|
|
@@ -224,23 +248,24 @@ camel/toolkits/open_api_specs/web_scraper/paths/scraper.py,sha256=aWy1_ppV4NVVEZ
|
|
|
224
248
|
camel/toolkits/open_api_toolkit.py,sha256=Venfq8JwTMQfzRzzB7AYmYUMEX35hW0BjIv_ozFMiNk,23316
|
|
225
249
|
camel/toolkits/reddit_toolkit.py,sha256=tb0qwgtawgWe-PPotKVsKqMqkSiACP6k9MzKHuMbkXU,8886
|
|
226
250
|
camel/toolkits/retrieval_toolkit.py,sha256=gMHk-Y-KDROGd-yX9ykfpwAf6ViO678j9Q9Ju3sfBGo,3695
|
|
227
|
-
camel/toolkits/search_toolkit.py,sha256=
|
|
251
|
+
camel/toolkits/search_toolkit.py,sha256=L71Fp5jg7yCh5AHwdRChQ-TU_dAuGgf1zpO8lDB81CM,26249
|
|
228
252
|
camel/toolkits/slack_toolkit.py,sha256=n8cn3kZIc27B-2KMTRK6Nsdan37SwMqBiBi1PMtuUvQ,10744
|
|
229
|
-
camel/toolkits/
|
|
253
|
+
camel/toolkits/stripe_toolkit.py,sha256=TTZerSG5ktYEgZLvCqVride3cqtyPbRdiIJRlvlxzzc,9576
|
|
254
|
+
camel/toolkits/twitter_toolkit.py,sha256=ioAus3aFZi2GS3K73HqzRnXY9E7hr6MidO-asLFGZRM,15586
|
|
230
255
|
camel/toolkits/video_toolkit.py,sha256=n1P7F_cjdnC2jfUQQiJnhueRYA83GIjUF7HWIrES5xs,7089
|
|
231
256
|
camel/toolkits/weather_toolkit.py,sha256=qHAMD56zqd5GWnEWiaA_0aBDwvgacdx0pAHScinY4GY,6965
|
|
232
257
|
camel/toolkits/whatsapp_toolkit.py,sha256=H_83AFCIoBMvZUcfUvfRTIAjfR2DR79xP2J-rfQKtNo,6326
|
|
233
|
-
camel/types/__init__.py,sha256=
|
|
234
|
-
camel/types/enums.py,sha256=
|
|
258
|
+
camel/types/__init__.py,sha256=NkjLAPjxo_BReMzRrnv7hfEIQX42F9GHoBK1T_J-WxM,2187
|
|
259
|
+
camel/types/enums.py,sha256=QEIh5XjMFf487AGKLonu2nBykirFkXf8L1_LZ30mCfo,23497
|
|
235
260
|
camel/types/openai_types.py,sha256=7tfrPHScqyerPwIP7dPmKss87lVkvsb175cT-jLJWyg,2222
|
|
236
261
|
camel/types/unified_model_type.py,sha256=ocNxJM98xdCDeqCt1F7Fcvd4Hw1ZxMgsMRZqetGWndo,3819
|
|
237
262
|
camel/utils/__init__.py,sha256=PS-QW4kT3DefTtjUEkHvBkxMK06ar_uACbkszQWWPTM,2313
|
|
238
263
|
camel/utils/async_func.py,sha256=4esRhhGrvfm-iJRloUbU-sYWyHp_mt0bBBXpwyCv6vc,1556
|
|
239
|
-
camel/utils/commons.py,sha256=
|
|
264
|
+
camel/utils/commons.py,sha256=8TB55DseOepZtwlWqHPkqCivQKNecCOfzFKnqpD2hg4,18101
|
|
240
265
|
camel/utils/constants.py,sha256=MQD3bgLIq_NATp0D1iFkrwfkCwVX-PAOSXheTkkEdkY,1410
|
|
241
266
|
camel/utils/response_format.py,sha256=9KrbwtOM9cA3LSjTgLiK7oKy-53_uMh1cvpyNwwJpng,2419
|
|
242
|
-
camel/utils/token_counting.py,sha256=
|
|
243
|
-
camel_ai-0.2.
|
|
244
|
-
camel_ai-0.2.
|
|
245
|
-
camel_ai-0.2.
|
|
246
|
-
camel_ai-0.2.
|
|
267
|
+
camel/utils/token_counting.py,sha256=DOWsADpnfmmWRXyt6aoiMF20JvG9V-7y_S7gwPllhNI,15027
|
|
268
|
+
camel_ai-0.2.12.dist-info/LICENSE,sha256=id0nB2my5kG0xXeimIu5zZrbHLS6EQvxvkKkzIHaT2k,11343
|
|
269
|
+
camel_ai-0.2.12.dist-info/METADATA,sha256=hs4xaNHHe-bXX9H5a8J8I9UQFubAz6jCpXc-fUGb9OY,31826
|
|
270
|
+
camel_ai-0.2.12.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
|
|
271
|
+
camel_ai-0.2.12.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|