camel-ai 0.2.58__py3-none-any.whl → 0.2.60__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of camel-ai might be problematic. Click here for more details.
- camel/__init__.py +1 -1
- camel/agents/chat_agent.py +126 -9
- camel/agents/critic_agent.py +73 -8
- camel/benchmarks/__init__.py +2 -0
- camel/benchmarks/browsecomp.py +854 -0
- camel/configs/cohere_config.py +1 -1
- camel/configs/mistral_config.py +1 -1
- camel/configs/openai_config.py +3 -0
- camel/configs/reka_config.py +1 -1
- camel/configs/samba_config.py +2 -2
- camel/datagen/cot_datagen.py +29 -34
- camel/embeddings/jina_embedding.py +8 -1
- camel/embeddings/sentence_transformers_embeddings.py +2 -2
- camel/embeddings/vlm_embedding.py +9 -2
- camel/human.py +14 -0
- camel/memories/records.py +3 -0
- camel/messages/base.py +15 -3
- camel/models/azure_openai_model.py +1 -0
- camel/models/model_factory.py +2 -2
- camel/retrievers/bm25_retriever.py +1 -2
- camel/retrievers/hybrid_retrival.py +2 -2
- camel/societies/role_playing.py +50 -0
- camel/societies/workforce/role_playing_worker.py +17 -8
- camel/societies/workforce/workforce.py +70 -14
- camel/storages/vectordb_storages/oceanbase.py +1 -2
- camel/toolkits/async_browser_toolkit.py +5 -1
- camel/toolkits/base.py +4 -2
- camel/toolkits/browser_toolkit.py +6 -3
- camel/toolkits/dalle_toolkit.py +4 -0
- camel/toolkits/excel_toolkit.py +11 -3
- camel/toolkits/github_toolkit.py +43 -25
- camel/toolkits/image_analysis_toolkit.py +3 -0
- camel/toolkits/jina_reranker_toolkit.py +194 -77
- camel/toolkits/mcp_toolkit.py +60 -16
- camel/toolkits/page_script.js +40 -28
- camel/toolkits/twitter_toolkit.py +6 -1
- camel/toolkits/video_analysis_toolkit.py +3 -0
- camel/toolkits/video_download_toolkit.py +3 -0
- camel/toolkits/wolfram_alpha_toolkit.py +46 -22
- camel/types/enums.py +14 -5
- {camel_ai-0.2.58.dist-info → camel_ai-0.2.60.dist-info}/METADATA +7 -9
- {camel_ai-0.2.58.dist-info → camel_ai-0.2.60.dist-info}/RECORD +44 -43
- {camel_ai-0.2.58.dist-info → camel_ai-0.2.60.dist-info}/WHEEL +0 -0
- {camel_ai-0.2.58.dist-info → camel_ai-0.2.60.dist-info}/licenses/LICENSE +0 -0
|
@@ -12,6 +12,9 @@
|
|
|
12
12
|
# limitations under the License.
|
|
13
13
|
# ========= Copyright 2023-2024 @ CAMEL-AI.org. All Rights Reserved. =========
|
|
14
14
|
|
|
15
|
+
# Enables postponed evaluation of annotations (for string-based type hints)
|
|
16
|
+
from __future__ import annotations
|
|
17
|
+
|
|
15
18
|
import io
|
|
16
19
|
import os
|
|
17
20
|
import tempfile
|
|
@@ -12,6 +12,9 @@
|
|
|
12
12
|
# limitations under the License.
|
|
13
13
|
# ========= Copyright 2023-2024 @ CAMEL-AI.org. All Rights Reserved. =========
|
|
14
14
|
|
|
15
|
+
# Enables postponed evaluation of annotations (for string-based type hints)
|
|
16
|
+
from __future__ import annotations
|
|
17
|
+
|
|
15
18
|
import io
|
|
16
19
|
import tempfile
|
|
17
20
|
from pathlib import Path
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
# ========= Copyright 2023-2024 @ CAMEL-AI.org. All Rights Reserved. =========
|
|
14
14
|
import os
|
|
15
15
|
import xml.etree.ElementTree as ET
|
|
16
|
-
from typing import Any, Dict, List
|
|
16
|
+
from typing import Any, Dict, List
|
|
17
17
|
|
|
18
18
|
import requests
|
|
19
19
|
|
|
@@ -37,21 +37,14 @@ class WolframAlphaToolkit(BaseToolkit):
|
|
|
37
37
|
]
|
|
38
38
|
)
|
|
39
39
|
@dependencies_required("wolframalpha")
|
|
40
|
-
def query_wolfram_alpha(
|
|
41
|
-
|
|
42
|
-
) -> Union[str, Dict[str, Any]]:
|
|
43
|
-
r"""Queries Wolfram|Alpha and returns the result.
|
|
40
|
+
def query_wolfram_alpha(self, query: str) -> str:
|
|
41
|
+
r"""Queries Wolfram|Alpha and returns the result as a simple answer.
|
|
44
42
|
|
|
45
43
|
Args:
|
|
46
44
|
query (str): The query to send to Wolfram Alpha.
|
|
47
|
-
is_detailed (bool): Whether to include additional details
|
|
48
|
-
including step by step information in the result.
|
|
49
|
-
(default: :obj:`False`)
|
|
50
45
|
|
|
51
46
|
Returns:
|
|
52
|
-
|
|
53
|
-
Returns a string if `is_detailed` is False, otherwise returns
|
|
54
|
-
a dictionary with detailed information.
|
|
47
|
+
str: The result from Wolfram Alpha as a simple answer.
|
|
55
48
|
"""
|
|
56
49
|
import wolframalpha
|
|
57
50
|
|
|
@@ -64,24 +57,54 @@ class WolframAlphaToolkit(BaseToolkit):
|
|
|
64
57
|
except Exception as e:
|
|
65
58
|
return f"Wolfram Alpha wasn't able to answer it. Error: {e}"
|
|
66
59
|
|
|
67
|
-
|
|
60
|
+
parsed_result = self._parse_wolfram_result(res)
|
|
61
|
+
return parsed_result["final_answer"]
|
|
68
62
|
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
63
|
+
@api_keys_required(
|
|
64
|
+
[
|
|
65
|
+
(None, "WOLFRAMALPHA_APP_ID"),
|
|
66
|
+
]
|
|
67
|
+
)
|
|
68
|
+
@dependencies_required("wolframalpha")
|
|
69
|
+
def query_wolfram_alpha_step_by_step(self, query: str) -> Dict[str, Any]:
|
|
70
|
+
r"""Queries Wolfram|Alpha and returns detailed results with
|
|
71
|
+
step-by-step solution.
|
|
72
|
+
|
|
73
|
+
Args:
|
|
74
|
+
query (str): The query to send to Wolfram Alpha.
|
|
75
|
+
|
|
76
|
+
Returns:
|
|
77
|
+
Dict[str, Any]: A dictionary with detailed information including
|
|
78
|
+
step-by-step solution.
|
|
79
|
+
"""
|
|
80
|
+
import wolframalpha
|
|
81
|
+
|
|
82
|
+
WOLFRAMALPHA_APP_ID = os.environ.get("WOLFRAMALPHA_APP_ID", "")
|
|
83
|
+
|
|
84
|
+
try:
|
|
85
|
+
client = wolframalpha.Client(WOLFRAMALPHA_APP_ID)
|
|
86
|
+
res = client.query(query)
|
|
87
|
+
|
|
88
|
+
except Exception as e:
|
|
89
|
+
return {
|
|
90
|
+
"error": f"Wolfram Alpha wasn't able to answer it. Error: {e}"
|
|
91
|
+
}
|
|
75
92
|
|
|
76
|
-
|
|
93
|
+
parsed_result = self._parse_wolfram_result(res)
|
|
94
|
+
step_info = self._get_wolframalpha_step_by_step_solution(
|
|
95
|
+
WOLFRAMALPHA_APP_ID, query
|
|
96
|
+
)
|
|
97
|
+
parsed_result["steps"] = step_info
|
|
98
|
+
return parsed_result
|
|
77
99
|
|
|
78
100
|
@api_keys_required(
|
|
79
101
|
[
|
|
80
102
|
(None, "WOLFRAMALPHA_APP_ID"),
|
|
81
103
|
]
|
|
82
104
|
)
|
|
83
|
-
def
|
|
84
|
-
r"""
|
|
105
|
+
def query_wolfram_alpha_llm(self, query: str) -> str:
|
|
106
|
+
r"""Sends a query to the Wolfram|Alpha API optimized for language
|
|
107
|
+
model usage.
|
|
85
108
|
|
|
86
109
|
Args:
|
|
87
110
|
query (str): The query to send to Wolfram Alpha LLM.
|
|
@@ -233,5 +256,6 @@ class WolframAlphaToolkit(BaseToolkit):
|
|
|
233
256
|
"""
|
|
234
257
|
return [
|
|
235
258
|
FunctionTool(self.query_wolfram_alpha),
|
|
236
|
-
FunctionTool(self.
|
|
259
|
+
FunctionTool(self.query_wolfram_alpha_step_by_step),
|
|
260
|
+
FunctionTool(self.query_wolfram_alpha_llm),
|
|
237
261
|
]
|
camel/types/enums.py
CHANGED
|
@@ -180,10 +180,13 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
180
180
|
NVIDIA_LLAMA3_3_70B_INSTRUCT = "meta/llama-3.3-70b-instruct"
|
|
181
181
|
|
|
182
182
|
# Gemini models
|
|
183
|
+
GEMINI_2_5_FLASH_PREVIEW = "gemini-2.5-flash-preview-04-17"
|
|
183
184
|
GEMINI_2_5_PRO_PREVIEW = "gemini-2.5-pro-preview-05-06"
|
|
184
|
-
GEMINI_2_0_FLASH = "gemini-2.0-flash
|
|
185
|
+
GEMINI_2_0_FLASH = "gemini-2.0-flash"
|
|
186
|
+
GEMINI_2_0_FLASH_EXP = "gemini-2.0-flash-exp"
|
|
185
187
|
GEMINI_2_0_FLASH_THINKING = "gemini-2.0-flash-thinking-exp"
|
|
186
188
|
GEMINI_2_0_PRO_EXP = "gemini-2.0-pro-exp-02-05"
|
|
189
|
+
GEMINI_2_0_FLASH_LITE = "gemini-2.0-flash-lite"
|
|
187
190
|
GEMINI_2_0_FLASH_LITE_PREVIEW = "gemini-2.0-flash-lite-preview-02-05"
|
|
188
191
|
GEMINI_1_5_FLASH = "gemini-1.5-flash"
|
|
189
192
|
GEMINI_1_5_PRO = "gemini-1.5-pro"
|
|
@@ -629,13 +632,16 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
629
632
|
bool: Whether this type of models is gemini.
|
|
630
633
|
"""
|
|
631
634
|
return self in {
|
|
635
|
+
ModelType.GEMINI_2_5_FLASH_PREVIEW,
|
|
632
636
|
ModelType.GEMINI_2_5_PRO_PREVIEW,
|
|
633
637
|
ModelType.GEMINI_2_0_FLASH,
|
|
634
|
-
ModelType.
|
|
635
|
-
ModelType.GEMINI_1_5_PRO,
|
|
638
|
+
ModelType.GEMINI_2_0_FLASH_EXP,
|
|
636
639
|
ModelType.GEMINI_2_0_FLASH_THINKING,
|
|
637
640
|
ModelType.GEMINI_2_0_PRO_EXP,
|
|
641
|
+
ModelType.GEMINI_2_0_FLASH_LITE,
|
|
638
642
|
ModelType.GEMINI_2_0_FLASH_LITE_PREVIEW,
|
|
643
|
+
ModelType.GEMINI_1_5_FLASH,
|
|
644
|
+
ModelType.GEMINI_1_5_PRO,
|
|
639
645
|
}
|
|
640
646
|
|
|
641
647
|
@property
|
|
@@ -1181,12 +1187,15 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
1181
1187
|
}:
|
|
1182
1188
|
return 512_000
|
|
1183
1189
|
elif self in {
|
|
1190
|
+
ModelType.GEMINI_2_5_FLASH_PREVIEW,
|
|
1184
1191
|
ModelType.GEMINI_2_5_PRO_PREVIEW,
|
|
1185
1192
|
ModelType.GEMINI_2_0_FLASH,
|
|
1186
|
-
ModelType.
|
|
1187
|
-
ModelType.GEMINI_1_5_PRO,
|
|
1193
|
+
ModelType.GEMINI_2_0_FLASH_EXP,
|
|
1188
1194
|
ModelType.GEMINI_2_0_FLASH_THINKING,
|
|
1195
|
+
ModelType.GEMINI_2_0_FLASH_LITE,
|
|
1189
1196
|
ModelType.GEMINI_2_0_FLASH_LITE_PREVIEW,
|
|
1197
|
+
ModelType.GEMINI_1_5_FLASH,
|
|
1198
|
+
ModelType.GEMINI_1_5_PRO,
|
|
1190
1199
|
ModelType.GEMINI_2_0_PRO_EXP, # Not given in doc, assume the same
|
|
1191
1200
|
ModelType.GLM_4_LONG,
|
|
1192
1201
|
ModelType.TOGETHER_LLAMA_4_MAVERICK,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: camel-ai
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.60
|
|
4
4
|
Summary: Communicative Agents for AI Society Study
|
|
5
5
|
Project-URL: Homepage, https://www.camel-ai.org/
|
|
6
6
|
Project-URL: Repository, https://github.com/camel-ai/camel
|
|
@@ -16,6 +16,7 @@ Requires-Dist: httpx<1.0.0dev,>=0.28.0
|
|
|
16
16
|
Requires-Dist: jsonschema<5,>=4
|
|
17
17
|
Requires-Dist: mcp>=1.3.0
|
|
18
18
|
Requires-Dist: openai<2,>=1.68.0
|
|
19
|
+
Requires-Dist: pillow<11.0.0,>=10.1.0
|
|
19
20
|
Requires-Dist: psutil<6,>=5.9.8
|
|
20
21
|
Requires-Dist: pydantic>=2.10.6
|
|
21
22
|
Requires-Dist: tiktoken<0.8,>=0.7.0
|
|
@@ -77,14 +78,13 @@ Requires-Dist: neo4j<6,>=5.18.0; extra == 'all'
|
|
|
77
78
|
Requires-Dist: networkx<4,>=3.4.2; extra == 'all'
|
|
78
79
|
Requires-Dist: newspaper3k<0.3,>=0.2.8; extra == 'all'
|
|
79
80
|
Requires-Dist: notion-client<3,>=2.2.1; extra == 'all'
|
|
80
|
-
Requires-Dist: numpy
|
|
81
|
+
Requires-Dist: numpy<=2.2,>=1.2; extra == 'all'
|
|
81
82
|
Requires-Dist: openapi-spec-validator<0.8,>=0.7.1; extra == 'all'
|
|
82
83
|
Requires-Dist: opencv-python<5,>=4; extra == 'all'
|
|
83
84
|
Requires-Dist: openpyxl>=3.1.5; extra == 'all'
|
|
84
85
|
Requires-Dist: outlines<0.2,>=0.1.7; extra == 'all'
|
|
85
86
|
Requires-Dist: pandas<2,>=1.5.3; extra == 'all'
|
|
86
87
|
Requires-Dist: pandasai<3,>=2.3.0; extra == 'all'
|
|
87
|
-
Requires-Dist: pillow<11.0.0,>=10.1.0; extra == 'all'
|
|
88
88
|
Requires-Dist: playwright>=1.50.0; extra == 'all'
|
|
89
89
|
Requires-Dist: prance<24,>=23.6.21.0; extra == 'all'
|
|
90
90
|
Requires-Dist: praw<8,>=7.7.1; extra == 'all'
|
|
@@ -150,7 +150,7 @@ Requires-Dist: datacommons-pandas<0.0.4,>=0.0.3; extra == 'data-tools'
|
|
|
150
150
|
Requires-Dist: datacommons<2,>=1.4.3; extra == 'data-tools'
|
|
151
151
|
Requires-Dist: math-verify<0.8,>=0.7.0; extra == 'data-tools'
|
|
152
152
|
Requires-Dist: networkx<4,>=3.4.2; extra == 'data-tools'
|
|
153
|
-
Requires-Dist: numpy
|
|
153
|
+
Requires-Dist: numpy<=2.2,>=1.2; extra == 'data-tools'
|
|
154
154
|
Requires-Dist: pandas<2,>=1.5.3; extra == 'data-tools'
|
|
155
155
|
Requires-Dist: rouge<2,>=1.0.1; extra == 'data-tools'
|
|
156
156
|
Requires-Dist: stripe<12,>=11.3.0; extra == 'data-tools'
|
|
@@ -198,7 +198,7 @@ Requires-Dist: docx2txt<0.9,>=0.8; extra == 'document-tools'
|
|
|
198
198
|
Requires-Dist: docx>=0.2.4; extra == 'document-tools'
|
|
199
199
|
Requires-Dist: fpdf>=1.7.2; extra == 'document-tools'
|
|
200
200
|
Requires-Dist: markitdown==0.1.1; extra == 'document-tools'
|
|
201
|
-
Requires-Dist: numpy
|
|
201
|
+
Requires-Dist: numpy<=2.2,>=1.2; extra == 'document-tools'
|
|
202
202
|
Requires-Dist: openapi-spec-validator<0.8,>=0.7.1; extra == 'document-tools'
|
|
203
203
|
Requires-Dist: openpyxl>=3.1.5; extra == 'document-tools'
|
|
204
204
|
Requires-Dist: pandasai<3,>=2.3.0; extra == 'document-tools'
|
|
@@ -219,7 +219,6 @@ Requires-Dist: transformers<5,>=4; extra == 'huggingface'
|
|
|
219
219
|
Provides-Extra: media-tools
|
|
220
220
|
Requires-Dist: ffmpeg-python<0.3,>=0.2.0; extra == 'media-tools'
|
|
221
221
|
Requires-Dist: imageio[pyav]<3,>=2.34.2; extra == 'media-tools'
|
|
222
|
-
Requires-Dist: pillow<11.0.0,>=10.1.0; extra == 'media-tools'
|
|
223
222
|
Requires-Dist: pydub<0.26,>=0.25.1; extra == 'media-tools'
|
|
224
223
|
Requires-Dist: scenedetect>=0.6.5.2; extra == 'media-tools'
|
|
225
224
|
Requires-Dist: yt-dlp<2025,>=2024.11.4; extra == 'media-tools'
|
|
@@ -249,14 +248,13 @@ Requires-Dist: imageio[pyav]<3,>=2.34.2; extra == 'owl'
|
|
|
249
248
|
Requires-Dist: mcp-server-fetch==2025.1.17; extra == 'owl'
|
|
250
249
|
Requires-Dist: mcp-simple-arxiv==0.2.2; extra == 'owl'
|
|
251
250
|
Requires-Dist: newspaper3k<0.3,>=0.2.8; extra == 'owl'
|
|
252
|
-
Requires-Dist: numpy
|
|
251
|
+
Requires-Dist: numpy<=2.2,>=1.2; extra == 'owl'
|
|
253
252
|
Requires-Dist: openapi-spec-validator<0.8,>=0.7.1; extra == 'owl'
|
|
254
253
|
Requires-Dist: opencv-python<5,>=4; extra == 'owl'
|
|
255
254
|
Requires-Dist: openpyxl>=3.1.5; extra == 'owl'
|
|
256
255
|
Requires-Dist: outlines<0.2,>=0.1.7; extra == 'owl'
|
|
257
256
|
Requires-Dist: pandas<2,>=1.5.3; extra == 'owl'
|
|
258
257
|
Requires-Dist: pandasai<3,>=2.3.0; extra == 'owl'
|
|
259
|
-
Requires-Dist: pillow<11.0.0,>=10.1.0; extra == 'owl'
|
|
260
258
|
Requires-Dist: playwright>=1.50.0; extra == 'owl'
|
|
261
259
|
Requires-Dist: prance<24,>=23.6.21.0; extra == 'owl'
|
|
262
260
|
Requires-Dist: pyautogui<0.10,>=0.9.54; extra == 'owl'
|
|
@@ -284,7 +282,7 @@ Requires-Dist: crawl4ai>=0.3.745; extra == 'rag'
|
|
|
284
282
|
Requires-Dist: google-genai>=1.13.0; extra == 'rag'
|
|
285
283
|
Requires-Dist: nebula3-python==3.8.2; extra == 'rag'
|
|
286
284
|
Requires-Dist: neo4j<6,>=5.18.0; extra == 'rag'
|
|
287
|
-
Requires-Dist: numpy
|
|
285
|
+
Requires-Dist: numpy<=2.2,>=1.2; extra == 'rag'
|
|
288
286
|
Requires-Dist: pandasai<3,>=2.3.0; extra == 'rag'
|
|
289
287
|
Requires-Dist: pymilvus<3,>=2.4.0; extra == 'rag'
|
|
290
288
|
Requires-Dist: pyobvector>=0.1.18; extra == 'rag'
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
camel/__init__.py,sha256=
|
|
1
|
+
camel/__init__.py,sha256=HJGhZRP9XpIxa_8WHATSjk43NBJGfBLuVwYyTVxJ_9E,899
|
|
2
2
|
camel/generators.py,sha256=JRqj9_m1PF4qT6UtybzTQ-KBT9MJQt18OAAYvQ_fr2o,13844
|
|
3
|
-
camel/human.py,sha256=
|
|
3
|
+
camel/human.py,sha256=Xg8x1cS5KK4bQ1SDByiHZnzsRpvRP-KZViNvmu38xo4,5475
|
|
4
4
|
camel/logger.py,sha256=rZVeOVYuQ9RYJ5Tqyv0usqy0g4zaVEq4qSfZ9nd2640,5755
|
|
5
5
|
camel/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
6
|
camel/agents/__init__.py,sha256=64weKqdvmpZcGWyVkO-OKASAmVUdrQjv60JApgPk_SA,1644
|
|
7
7
|
camel/agents/_types.py,sha256=ryPRmEXnpNtbFT23GoAcwK-zxWWsIOqYu64mxMx_PhI,1430
|
|
8
8
|
camel/agents/_utils.py,sha256=AR7Qqgbkmn4X2edYUQf1rdksGUyV5hm3iK1z-Dn0Mcg,6266
|
|
9
9
|
camel/agents/base.py,sha256=c4bJYL3G3Z41SaFdMPMn8ZjLdFiFaVOFO6EQIfuCVR8,1124
|
|
10
|
-
camel/agents/chat_agent.py,sha256=
|
|
11
|
-
camel/agents/critic_agent.py,sha256=
|
|
10
|
+
camel/agents/chat_agent.py,sha256=IjEs6-2BAhf8cQd-WcirlRUZoFWK-axfhgZBuoUdASA,65008
|
|
11
|
+
camel/agents/critic_agent.py,sha256=L6cTbYjyZB0DCa51tQ6LZLA6my8kHLC4nktHySH78H4,10433
|
|
12
12
|
camel/agents/deductive_reasoner_agent.py,sha256=6BZGaq1hR6hKJuQtOfoYQnk_AkZpw_Mr7mUy2MspQgs,13540
|
|
13
13
|
camel/agents/embodied_agent.py,sha256=XBxBu5ZMmSJ4B2U3Z7SMwvLlgp6yNpaBe8HNQmY9CZA,7536
|
|
14
14
|
camel/agents/knowledge_graph_agent.py,sha256=7Tchhyvm1s8tQ3at7iGKZt70xWZllRXu2vwUFR37p10,9681
|
|
@@ -22,10 +22,11 @@ camel/agents/task_agent.py,sha256=KfJvZ5vOjjbrn20UGqSMnf6lds5ydfXdb7eNMxBU5vs,14
|
|
|
22
22
|
camel/agents/tool_agents/__init__.py,sha256=hhd1kQYDshfvszN5JHBorINH9L3dI6xdDfKnbAAaKa0,856
|
|
23
23
|
camel/agents/tool_agents/base.py,sha256=T6G5OaAJd4L_yHSFoWcrtqkMEyhge42ppVjx7lYD3Cg,1393
|
|
24
24
|
camel/agents/tool_agents/hugging_face_tool_agent.py,sha256=nNySkdBRYaD05rLyPxzmq8W7D9WPcNHCY9h1jD6S0Hk,8717
|
|
25
|
-
camel/benchmarks/__init__.py,sha256=
|
|
25
|
+
camel/benchmarks/__init__.py,sha256=6a2CrCz7CeCqBSvDwi2HpXC35I-HKCMwupI1_uX4xVA,1193
|
|
26
26
|
camel/benchmarks/apibank.py,sha256=kZyyFqqlk8aI5gPD7-zWnrSioME8BMRbk3vtEohYNGg,21429
|
|
27
27
|
camel/benchmarks/apibench.py,sha256=87wRpKP73nKr8e4q9qecNt6Muaf6tdMWB9-nd1Z64PA,19068
|
|
28
28
|
camel/benchmarks/base.py,sha256=GHbcE0KAenEiYb3x8orLgyGPp40KTdLHwahVFhI-cgE,4594
|
|
29
|
+
camel/benchmarks/browsecomp.py,sha256=SlsDynCooeEor-GPh7CAoyONv2B_2vo-sYlfIwU_xbk,30816
|
|
29
30
|
camel/benchmarks/gaia.py,sha256=TKUZr1XsPAVsJHxkpy0HUi64BMz0x3LAUUSRHlG2SxM,16858
|
|
30
31
|
camel/benchmarks/nexus.py,sha256=Yp1UGyaD3_857QKoUTOeSeB4MKqP08znaxa9hzm5gRk,18207
|
|
31
32
|
camel/benchmarks/ragbench.py,sha256=XlBV6YK_eZSH0yscNMX10BFHsVOXDfLqj4b8QHgsjlk,11079
|
|
@@ -43,26 +44,26 @@ camel/configs/aiml_config.py,sha256=6niTHsxusPfXyNKNfxipTudgeULMIeOeXHAv5hRblsM,
|
|
|
43
44
|
camel/configs/anthropic_config.py,sha256=z8tTKgOimmMk8Xa1UjaSsDaCE8sNIkRYJx9EHGHdAgU,4007
|
|
44
45
|
camel/configs/base_config.py,sha256=2nEIRQoY6tIMeBIcxcBtCadmpsd8bSQj9rzewQsgfXo,3188
|
|
45
46
|
camel/configs/bedrock_config.py,sha256=KZ_oZg25AGcC0sC3ZmVElwFcBjchtcPEbya0u0EVv28,3899
|
|
46
|
-
camel/configs/cohere_config.py,sha256=
|
|
47
|
+
camel/configs/cohere_config.py,sha256=PD8YDgzP0R1-7bixpqvKEHPMf6_SjU1aq-9UVAg-xCI,4019
|
|
47
48
|
camel/configs/deepseek_config.py,sha256=EuS5agT2ZjJ9-pZGjlpGKPpMjycwozXI87gkQ41ixmQ,5728
|
|
48
49
|
camel/configs/gemini_config.py,sha256=RKCGFOX_yIgWGX30byQFWfiuGQ7diPyyvS2aVmgfORw,4725
|
|
49
50
|
camel/configs/groq_config.py,sha256=H4YEBpSNwqkMrBkJmSpInHucS1Qddr4qOpF-LZqb6QQ,5732
|
|
50
51
|
camel/configs/internlm_config.py,sha256=OfA_jSQ_DBEqqMogUkwYecSY-XVT4pVa3J1KE_F83tg,2989
|
|
51
52
|
camel/configs/litellm_config.py,sha256=fBTa-iGTC_zYRnl2tikQMoaQ-ilScvbSDaziMg93Bak,4878
|
|
52
53
|
camel/configs/lmstudio_config.py,sha256=QXOI54kSArG2p8eOrmgk6FaZrDcSgu_0m4b2fIn4hLc,5325
|
|
53
|
-
camel/configs/mistral_config.py,sha256=
|
|
54
|
+
camel/configs/mistral_config.py,sha256=zYHZ_4GlVvTuQ-wm6V5jAFW3ho-gPEaXo5LxRFRf4Kw,3533
|
|
54
55
|
camel/configs/modelscope_config.py,sha256=GcxleksbNZ6IAiud0hqprSEpTS5RhTw2g0OwcIHNSPE,2937
|
|
55
56
|
camel/configs/moonshot_config.py,sha256=GTULZtMVC1bMDnXCF3t3LKVPBMWjN4fI7prGlRXq9tw,2851
|
|
56
57
|
camel/configs/netmind_config.py,sha256=h9kfHypsdxqJR4wL8Xf0JmdoJ-0zxBE09QZqvjsX6ok,4298
|
|
57
58
|
camel/configs/novita_config.py,sha256=pyVznTDJt4g3j23XIqJqdiD1L3xXebDXlVdwYi3Y4c0,5724
|
|
58
59
|
camel/configs/nvidia_config.py,sha256=2DmYriFWh4ZYNkAJhuvJHhHUi1BT62E5ee6HXWY12eA,3269
|
|
59
60
|
camel/configs/ollama_config.py,sha256=R6hX6N_uCfu3ocnRsunUpdmKRWMIRMwbAAXMk9vwFbo,4403
|
|
60
|
-
camel/configs/openai_config.py,sha256=
|
|
61
|
+
camel/configs/openai_config.py,sha256=7YsHp0iTRb9nJds1EgSpJ7-dWWf0gwpujQDgqJhI7Pg,7415
|
|
61
62
|
camel/configs/openrouter_config.py,sha256=bSPP2NmEI1nJby8s-6FCcgpKqvDEKpxlQcx5GZMGanE,5894
|
|
62
63
|
camel/configs/ppio_config.py,sha256=HXtwMqDUW9ozg19hDwOSxnXo3wkRb8NmUp3wQq6CZ18,5718
|
|
63
64
|
camel/configs/qwen_config.py,sha256=ohf70QzLkrh909qqSEWMA3Cs7aU2je443uKxbPcOxj4,4353
|
|
64
|
-
camel/configs/reka_config.py,sha256=
|
|
65
|
-
camel/configs/samba_config.py,sha256=
|
|
65
|
+
camel/configs/reka_config.py,sha256=4eL9K6kXT315iC7eGzRKKOalxln7UAxiLpA-ha_MDWY,3396
|
|
66
|
+
camel/configs/samba_config.py,sha256=t7jm6LEen6_d3TBohdIu_fOiYU0rscra2CFttnoOiDg,8602
|
|
66
67
|
camel/configs/sglang_config.py,sha256=GgqfDiuAHYJH0HfzBpkP8DvoDc7FYLO1ZP6kNnmKEdo,3943
|
|
67
68
|
camel/configs/siliconflow_config.py,sha256=o1mRul-Krb-r3HCZQZfV_UgEJL6nXTH9qu9bUemaoGU,4115
|
|
68
69
|
camel/configs/togetherai_config.py,sha256=7tge2Tarri68B1AS9FXWPm89jjcIbo6fB3aJaEMYwTc,5449
|
|
@@ -75,7 +76,7 @@ camel/data_collector/alpaca_collector.py,sha256=fqS_kws1EU9mDWlVxPXcoD1GhJ7lEzC2
|
|
|
75
76
|
camel/data_collector/base.py,sha256=Rn0aJBBvpMZYYTLT1yNjIalIvDuVVwOx6iawKlzocZQ,6708
|
|
76
77
|
camel/data_collector/sharegpt_collector.py,sha256=MqsGjkP9jOPuXY2fhN0xQ6HUZM0ZDuD6GHMdrCpbCpw,7616
|
|
77
78
|
camel/datagen/__init__.py,sha256=EPF-eZ4rg7qbeSVZhfQ0iME0WDRSqRwBGbW-s0ZJ2EA,949
|
|
78
|
-
camel/datagen/cot_datagen.py,sha256=
|
|
79
|
+
camel/datagen/cot_datagen.py,sha256=_KuXa0ksUkGy9UdIyWC-ld9C8rISnGCVI8Ef1H0SUIo,17345
|
|
79
80
|
camel/datagen/self_improving_cot.py,sha256=5Mznv7EASZTgfwAjg3d1CQSy_YvKICnHbv9-N0IYH9s,34284
|
|
80
81
|
camel/datagen/evol_instruct/__init__.py,sha256=cajmED2eAPBUBH4EfabTJsgYehMtsTPwEYHWX-uTXTQ,827
|
|
81
82
|
camel/datagen/evol_instruct/evol_instruct.py,sha256=JEh3w5r0BybElfQgpBwptFSPMx0jfLztm4oSGGrM1Xc,16269
|
|
@@ -106,13 +107,13 @@ camel/embeddings/__init__.py,sha256=nLFckLBkHXb6HolqPcIssQYO89di0KOeinT_t0S8V9g,
|
|
|
106
107
|
camel/embeddings/azure_embedding.py,sha256=ClMu3ko1PnkNvWPSWILwCNUnxhzUL7UJHv2sB-OptuE,4233
|
|
107
108
|
camel/embeddings/base.py,sha256=mxqFkWh2AfbxuVKPOqVx16fCznmuSh9QXGjaEeZHvoY,2190
|
|
108
109
|
camel/embeddings/gemini_embedding.py,sha256=5g8QvIPZuE1ZsLwr1VGRyQYYaiBmOpN3bHFq9TksDAo,4056
|
|
109
|
-
camel/embeddings/jina_embedding.py,sha256=
|
|
110
|
+
camel/embeddings/jina_embedding.py,sha256=np5PooA0X2szjIT6AEWudw8gP_zQJaAOxFPNFQyv02I,6833
|
|
110
111
|
camel/embeddings/mistral_embedding.py,sha256=JaHjcHrc4U216QfGA4NxOSLrgYB9lM19VR2mIMAkuvk,3287
|
|
111
112
|
camel/embeddings/openai_compatible_embedding.py,sha256=3hzMC-OiwP-xZnzKXTyYwkuuqgtWdiEfDaVNGf5FyKI,3471
|
|
112
113
|
camel/embeddings/openai_embedding.py,sha256=zix0O8KdbiVarol4hktKi-0I060epsnj8qAE4kwx3nc,3952
|
|
113
|
-
camel/embeddings/sentence_transformers_embeddings.py,sha256=
|
|
114
|
+
camel/embeddings/sentence_transformers_embeddings.py,sha256=q9jR_C5y58R-35WGaluT5q5gOwVRWz3-uo-Ivisbsj4,2732
|
|
114
115
|
camel/embeddings/together_embedding.py,sha256=Nl7uyk3pxyI4-l147LEkc1zj5O-H17RbJtb8pYb2K7Q,4765
|
|
115
|
-
camel/embeddings/vlm_embedding.py,sha256=
|
|
116
|
+
camel/embeddings/vlm_embedding.py,sha256=ydmU1n-3ecqkqsRH5crvLfbRlfNcWnpHBuE6B_5_HuQ,5708
|
|
116
117
|
camel/environments/__init__.py,sha256=fwk74TJO5OaOhL5Pmiz6s6h77B_-DGav5m_HbfS1oUQ,1053
|
|
117
118
|
camel/environments/models.py,sha256=jVcCyU7xObKoWPnkshmPqyyKi3AOiMVVtUZA-tWEYUU,4194
|
|
118
119
|
camel/environments/multi_step.py,sha256=HPIH2W-iWsmtDLeN1gjxo7LoAnMQQZzdmfjhmRoBAxg,8534
|
|
@@ -145,14 +146,14 @@ camel/loaders/unstructured_io.py,sha256=wA3fkDeS4mSPFkMDnWZzJYKDltio7l72BU9D3EGf
|
|
|
145
146
|
camel/memories/__init__.py,sha256=JQbs-_7VkcVTjE8y9J0DWI3btDyMRZilTZNVuy_RxZM,1358
|
|
146
147
|
camel/memories/agent_memories.py,sha256=HysjYAB6srRdb3uE_IXmC94YPZBfGcAUdTlbcbzzLZE,9330
|
|
147
148
|
camel/memories/base.py,sha256=3BGuExfwwkbkVpxw1uYms8O37F-PD8ArcmYnFKYUcI4,5652
|
|
148
|
-
camel/memories/records.py,sha256=
|
|
149
|
+
camel/memories/records.py,sha256=ZNLKF9_oNh4-DTzhXqg8le38RxVKjxJvxFfuO4ZuiTo,4431
|
|
149
150
|
camel/memories/blocks/__init__.py,sha256=ci7_WU11222cNd1Zkv-a0z5E2ux95NMjAYm_cDzF0pE,854
|
|
150
151
|
camel/memories/blocks/chat_history_block.py,sha256=klDXMw85ygsU95ibOugOPz2pPx4BWqxN8xUbTJRKBlE,6705
|
|
151
152
|
camel/memories/blocks/vectordb_block.py,sha256=lf0ipY4cJMB--tQDvpInqsmHZCn7sD1pkmjC70vTtn4,3941
|
|
152
153
|
camel/memories/context_creators/__init__.py,sha256=pqzkBM2ro5JZD7RhWg05TjinphhCq0QTIqBJlIL1sJ0,800
|
|
153
154
|
camel/memories/context_creators/score_based.py,sha256=b35GNjioYgFueXIFr-Yk2NlJHLlaOvLj3Yh_b_qRrrA,10313
|
|
154
155
|
camel/messages/__init__.py,sha256=Px-gTFp2Kcgbeb2sZQ_f4tqjoLHE-QEOiMHIMfPrvTw,1949
|
|
155
|
-
camel/messages/base.py,sha256=
|
|
156
|
+
camel/messages/base.py,sha256=4tW240FyYWBoNhvfFClCjCGoiHiAdhHqMqsbg2_nX44,19760
|
|
156
157
|
camel/messages/func_message.py,sha256=2fv35Ruyhhf-wmqtCPiqC-ZujnR-hJH-rEoSgPTKdA8,5959
|
|
157
158
|
camel/messages/conversion/__init__.py,sha256=8B4C-0wj-dm925YRKNyx31WYK25PWpME7Q9jPtx2jkY,1047
|
|
158
159
|
camel/messages/conversion/alpaca.py,sha256=jBU2bMhzNjzptGuoasThYvFov_cYPCYt3pEfs0T7z7U,4163
|
|
@@ -166,7 +167,7 @@ camel/models/_utils.py,sha256=hob1ehnS5xZitMCdYToHVgaTB55JnaP4_DSWnTEfVsg,2045
|
|
|
166
167
|
camel/models/aiml_model.py,sha256=HO_jRvMN2WEVlZRc_UG-OoZ1hv8sEiO5j_7BBKuGlp0,3753
|
|
167
168
|
camel/models/anthropic_model.py,sha256=0jilp8dBrk1JAP0dkw_YX21uL3_81ZGL0qmKZiAI2w0,4331
|
|
168
169
|
camel/models/aws_bedrock_model.py,sha256=cpY66Wcwb-clNf0TCch9WI8au3_GGxHBYUd09rGQi_U,4353
|
|
169
|
-
camel/models/azure_openai_model.py,sha256
|
|
170
|
+
camel/models/azure_openai_model.py,sha256=KuLbYtyTTdDaEsRxPpbPvqj1_SFAoJ10-SD6O7VP95c,12068
|
|
170
171
|
camel/models/base_audio_model.py,sha256=_VUWh1L3rh8mldNvM5R6jBOKtvmTeBKJyRxAdPJmPlY,3324
|
|
171
172
|
camel/models/base_model.py,sha256=eDeUlgH8iS0Stk6zommzqce4dfD4Qj51tvgXUs5ys4s,14474
|
|
172
173
|
camel/models/cohere_model.py,sha256=OgRHxlPrei-NT5UVDFf6lVR88k6eKnmcZMyFj4XmONE,14880
|
|
@@ -178,7 +179,7 @@ camel/models/internlm_model.py,sha256=l7WjJ7JISCCqkezhEXzmjj_Mvhqhxxhsg4NuenP7w9
|
|
|
178
179
|
camel/models/litellm_model.py,sha256=rlSt3EnBAAYyoIxq0_XTuRmRnc4RWvD2Z14yIrI_7uw,5942
|
|
179
180
|
camel/models/lmstudio_model.py,sha256=_Lnv0e2ichks_MrNJGNIawEtGtP7T_xX8v0bFNNeWes,3641
|
|
180
181
|
camel/models/mistral_model.py,sha256=3tT59xJO0rwZK0Gs0RXtV6TC9g6uEO9gD7D_-NzhHDc,13399
|
|
181
|
-
camel/models/model_factory.py,sha256=
|
|
182
|
+
camel/models/model_factory.py,sha256=RDRc7XW70KfxzcCFw94_OwMVoozcbGgPNODibj3oAo8,11478
|
|
182
183
|
camel/models/model_manager.py,sha256=gfpL-WUxuTXgNeCkIVg8Y0zRvxMqRLX8JGt0XEAPQ8Y,9214
|
|
183
184
|
camel/models/modelscope_model.py,sha256=aI7i50DSIE6MO2U_WvULan6Sk4b5d7iZoEHQaARo4FA,10487
|
|
184
185
|
camel/models/moonshot_model.py,sha256=yeD2jrfQpFaWJHVe1s1KrI6aHQVzKRcBDt9C2Qo4nU8,4305
|
|
@@ -234,9 +235,9 @@ camel/responses/agent_responses.py,sha256=bDK6if8u-CNBk91yAIHKFcppdFYkihRyJXgXVd
|
|
|
234
235
|
camel/retrievers/__init__.py,sha256=MkuWD18uPLg78KPugd8ER8FOE4w0GC6UuHyFaqGhu6Y,1140
|
|
235
236
|
camel/retrievers/auto_retriever.py,sha256=AkPooLvYlWQQaLfMj4W21FIHdVWK7lbYcm2CeX--ZPg,10439
|
|
236
237
|
camel/retrievers/base.py,sha256=Sx66VHuNOJE31u59DX5XBwota4XqubeVm0feqLV7i28,2640
|
|
237
|
-
camel/retrievers/bm25_retriever.py,sha256=
|
|
238
|
+
camel/retrievers/bm25_retriever.py,sha256=JNgwEjhtJsjUKNVXhaD7SnxzO5nTCzVFQG6wx3ll4O4,5156
|
|
238
239
|
camel/retrievers/cohere_rerank_retriever.py,sha256=tzMS3HG4wD3gbIAVcHsC5fTbFxuiNrT4qJ10oJMJ0BA,4032
|
|
239
|
-
camel/retrievers/hybrid_retrival.py,sha256=
|
|
240
|
+
camel/retrievers/hybrid_retrival.py,sha256=5PouW7nqui0tKbqi5BwDMz0gEm4TLm2u46iVaASOZmI,9474
|
|
240
241
|
camel/retrievers/vector_retriever.py,sha256=Fp6k7FkoeUXLiUokqsMIO74Dh2mJcmJP2TrCP-6Ekcc,11051
|
|
241
242
|
camel/runtime/__init__.py,sha256=bFbqDIST69V6LC_Oe5YBz-8qlUaJt4zWGFFT0ctiMLI,1273
|
|
242
243
|
camel/runtime/api.py,sha256=JfkHqQ_Xs3ZNl4TXC_obV3Ymi21ltP1LAkXzBA3H_Lo,3227
|
|
@@ -256,16 +257,16 @@ camel/schemas/openai_converter.py,sha256=SEnYsYcboZgVmjcC1YP5xke3c0MYPESPRmYQWsD
|
|
|
256
257
|
camel/schemas/outlines_converter.py,sha256=OYKPR1fNyrYs9eh5RiXEAccMbnRc9WTwSVJYbh9HkKE,8738
|
|
257
258
|
camel/societies/__init__.py,sha256=NOHjtlsY-gV9UCF2xXgcbG-xXyuigmbwbpLpNsDgEJ4,826
|
|
258
259
|
camel/societies/babyagi_playing.py,sha256=KbTdpHfZ2V8AripVck0bNTOyF-RSaMPCRARz3DvzWfQ,11855
|
|
259
|
-
camel/societies/role_playing.py,sha256=
|
|
260
|
+
camel/societies/role_playing.py,sha256=1TsQbGYmN91BeQ0DGM5PpSJ9TMbn1F3maJNuv4fQ5zI,31749
|
|
260
261
|
camel/societies/workforce/__init__.py,sha256=bkTI-PE-MSK9AQ2V2gR6cR2WY-R7Jqy_NmXRtAoqo8o,920
|
|
261
262
|
camel/societies/workforce/base.py,sha256=4uSTmBQsWk_UX1xUrEbjo0X7OuYRbGWoroTV71Tvg8U,1947
|
|
262
263
|
camel/societies/workforce/prompts.py,sha256=4OGp-1-XFYIZ8ZERubSsG-hwXti8fhjtwc3n5-WEgsA,7821
|
|
263
|
-
camel/societies/workforce/role_playing_worker.py,sha256=
|
|
264
|
+
camel/societies/workforce/role_playing_worker.py,sha256=rNI0q_pq0yCXT1_YQs5ViLcaemdT5ZGuUzrhUHRag4Y,7511
|
|
264
265
|
camel/societies/workforce/single_agent_worker.py,sha256=2pWmUNv5Ru5pZjcEtejuG062byXv4GnL-FhWIH6Jj_o,3465
|
|
265
266
|
camel/societies/workforce/task_channel.py,sha256=9t5hoinfGYnbRavX4kx34Jk1FOy05SnJZYbNzb5M-CQ,7140
|
|
266
267
|
camel/societies/workforce/utils.py,sha256=yPbcLx8lNZStl15C4UXRBl5qsTrGA-hiIGynnGi53WQ,2384
|
|
267
268
|
camel/societies/workforce/worker.py,sha256=Do6FDpEraICQVptBH-LiG5KDYYQzD83sLoYO9J8NAbc,3933
|
|
268
|
-
camel/societies/workforce/workforce.py,sha256=
|
|
269
|
+
camel/societies/workforce/workforce.py,sha256=jlr7Us6GhVfKh_FTDUN-K5kRBqCOoVBKn0U1hE1bMKs,21599
|
|
269
270
|
camel/storages/__init__.py,sha256=slOLuoxK45LEmLzogqkSmAfbItwYGa4ytzwZopSvhK0,1840
|
|
270
271
|
camel/storages/graph_storages/__init__.py,sha256=G29BNn651C0WTOpjCl4QnVM-4B9tcNh8DdmsCiONH8Y,948
|
|
271
272
|
camel/storages/graph_storages/base.py,sha256=uSe9jWuLudfm5jtfo6E-L_kNzITwK1_Ef-6L4HWw-JM,2852
|
|
@@ -286,7 +287,7 @@ camel/storages/object_storages/google_cloud.py,sha256=59AvGar_GDoGYHhzUi5KBtInv2
|
|
|
286
287
|
camel/storages/vectordb_storages/__init__.py,sha256=DMd6osd7V7wq_34Evy_mOIu8RDHw2ssJiiun-aauEZE,1183
|
|
287
288
|
camel/storages/vectordb_storages/base.py,sha256=EP_WbEtI3SJPHro9rjNkIq9UDUP1AAHmxZgeya94Lgk,6738
|
|
288
289
|
camel/storages/vectordb_storages/milvus.py,sha256=ChQyEuaXCWCKxytLN2z4QrkEthx2xE6bQPO6KCS9RgQ,13535
|
|
289
|
-
camel/storages/vectordb_storages/oceanbase.py,sha256=
|
|
290
|
+
camel/storages/vectordb_storages/oceanbase.py,sha256=eNBelw4D6r3OWlhHzGJ8Xw-ej9nU1uTZ6CYoXdbxDkI,17054
|
|
290
291
|
camel/storages/vectordb_storages/qdrant.py,sha256=a_cT0buSCHQ2CPZy852-mdvMDwy5zodCvAKMaa4zIvg,18017
|
|
291
292
|
camel/storages/vectordb_storages/tidb.py,sha256=w83bxgKgso43MtHqlpf2EMSpn1_Nz6ZZtY4fPw_-vgs,11192
|
|
292
293
|
camel/tasks/__init__.py,sha256=MuHwkw5GRQc8NOCzj8tjtBrr2Xg9KrcKp-ed_-2ZGIM,906
|
|
@@ -300,28 +301,28 @@ camel/toolkits/__init__.py,sha256=NDZxXqKBcvAVyFJdkaQ4EqL_5ODn8ycCN83mSU0xFqs,48
|
|
|
300
301
|
camel/toolkits/aci_toolkit.py,sha256=jhXMQggG22hd3dXdT3iJm7qWTH3KJC-TUVk1txoNWrM,16079
|
|
301
302
|
camel/toolkits/arxiv_toolkit.py,sha256=Bs2-K1yfmqhEhHoQ0j00KoI8LpOd8M3ApXcvI_-ApVw,6303
|
|
302
303
|
camel/toolkits/ask_news_toolkit.py,sha256=WfWaqwEo1Apbil3-Rb5y65Ws43NU4rAFWZu5VHe4los,23448
|
|
303
|
-
camel/toolkits/async_browser_toolkit.py,sha256=
|
|
304
|
+
camel/toolkits/async_browser_toolkit.py,sha256=b4_yrU4Vjm5E5BtwIx5Vs-vge2kEBpO1j3xWwzAZ-kE,65968
|
|
304
305
|
camel/toolkits/audio_analysis_toolkit.py,sha256=dnDtQJbztVBwBpamSyCfigPw2GBnDAfi3fOPgql4Y50,8941
|
|
305
|
-
camel/toolkits/base.py,sha256=
|
|
306
|
-
camel/toolkits/browser_toolkit.py,sha256=
|
|
306
|
+
camel/toolkits/base.py,sha256=7vW2Je9HZqsA1yKwH3aXEGAsjRN1cqeCnsIWfHp6yfE,2386
|
|
307
|
+
camel/toolkits/browser_toolkit.py,sha256=uc91A9yiBo92TjYQdKd_qLYaSMKafzaIQq_gLdYmuLM,56089
|
|
307
308
|
camel/toolkits/code_execution.py,sha256=6nI5wSBE6W8Ha05UfoPRoe7dtyszGUZ7W55_3HUgUoY,4626
|
|
308
|
-
camel/toolkits/dalle_toolkit.py,sha256=
|
|
309
|
+
camel/toolkits/dalle_toolkit.py,sha256=GSnV7reQsVmhMi9sbQy1Ks_5Vs57Dlir_AbT2PPCZwo,6153
|
|
309
310
|
camel/toolkits/dappier_toolkit.py,sha256=ewhXeeUj7e4DiTzuWDA-gHGhrLdyoZ4l9pbijvF3py0,8199
|
|
310
311
|
camel/toolkits/data_commons_toolkit.py,sha256=aHZUSL1ACpnYGaf1rE2csVKTmXTmN8lMGRUBYhZ_YEk,14168
|
|
311
|
-
camel/toolkits/excel_toolkit.py,sha256=
|
|
312
|
+
camel/toolkits/excel_toolkit.py,sha256=DSjBXl24_LrJubGFFmB_vqliKzzWTbT1TH309YQVUO8,6653
|
|
312
313
|
camel/toolkits/file_write_toolkit.py,sha256=UiN5G7hX3dqSkktqvpMq0WhQQJW_fKbiPiOhUeuSWYU,14351
|
|
313
314
|
camel/toolkits/function_tool.py,sha256=3y0snbYnHHijz4WYkS0xs6GInuTCRJAPACLjR7iutX4,30365
|
|
314
|
-
camel/toolkits/github_toolkit.py,sha256=
|
|
315
|
+
camel/toolkits/github_toolkit.py,sha256=Xq4KynmvIW_2924BJBS98I9TaF0ugmN62Y74kcNv_us,13102
|
|
315
316
|
camel/toolkits/google_calendar_toolkit.py,sha256=E-sdgdbtNBs_CXbhht9t1dsVr4DsTr5NguHkx4fvSmc,15410
|
|
316
317
|
camel/toolkits/google_maps_toolkit.py,sha256=WTnkURpGri9KcY5OwV7AJJHOzmpu5RNmYE1QCVqvwWM,12023
|
|
317
318
|
camel/toolkits/google_scholar_toolkit.py,sha256=WQ9a0HQr0vro1Uo1m--alCUXvMmaHVKeQYqGCxXc2s8,7562
|
|
318
319
|
camel/toolkits/human_toolkit.py,sha256=ZbhXPA0G3mQkcNW_jPwywReAft2pIJG0WkVXOG48s1w,2328
|
|
319
|
-
camel/toolkits/image_analysis_toolkit.py,sha256=
|
|
320
|
-
camel/toolkits/jina_reranker_toolkit.py,sha256=
|
|
320
|
+
camel/toolkits/image_analysis_toolkit.py,sha256=IC36mtytgyMSW20IImIZDgQPsgPxmxZG7qIxO_gIkrs,7647
|
|
321
|
+
camel/toolkits/jina_reranker_toolkit.py,sha256=0OWUlSqRNYYmD5EQZW7OX87lfmzLRjjDmHRyqHU6dmU,11963
|
|
321
322
|
camel/toolkits/klavis_toolkit.py,sha256=ZKerhgz5e-AV-iv0ftf07HgWikknIHjB3EOQswfuR80,9864
|
|
322
323
|
camel/toolkits/linkedin_toolkit.py,sha256=wn4eXwYYlVA7doTna7k7WYhUqTBF83W79S-UJs_IQr0,8065
|
|
323
324
|
camel/toolkits/math_toolkit.py,sha256=KdI8AJ9Dbq5cfWboAYJUYgSkmADMCO5eZ6yqYkWuiIQ,3686
|
|
324
|
-
camel/toolkits/mcp_toolkit.py,sha256=
|
|
325
|
+
camel/toolkits/mcp_toolkit.py,sha256=HX9qatxhOoITF5LulJxh8ZPbNpL1PzKfSvwOnsqS2WI,28288
|
|
325
326
|
camel/toolkits/memory_toolkit.py,sha256=TeKYd5UMwgjVpuS2orb-ocFL13eUNKujvrFOruDCpm8,4436
|
|
326
327
|
camel/toolkits/meshy_toolkit.py,sha256=NbgdOBD3FYLtZf-AfonIv6-Q8-8DW129jsaP1PqI2rs,7126
|
|
327
328
|
camel/toolkits/mineru_toolkit.py,sha256=vRX9LholLNkpbJ6axfEN4pTG85aWb0PDmlVy3rAAXhg,6868
|
|
@@ -330,7 +331,7 @@ camel/toolkits/notion_toolkit.py,sha256=jmmVWk_WazRNWnx4r9DAvhFTAL-n_ige0tb32UHJ
|
|
|
330
331
|
camel/toolkits/open_api_toolkit.py,sha256=Venfq8JwTMQfzRzzB7AYmYUMEX35hW0BjIv_ozFMiNk,23316
|
|
331
332
|
camel/toolkits/openai_agent_toolkit.py,sha256=hT2ancdQigngAiY1LNnGJzZeiBDHUxrRGv6BdZTJizc,4696
|
|
332
333
|
camel/toolkits/openbb_toolkit.py,sha256=8yBZL9E2iSgskosBQhD3pTP56oV6gerWpFjIJc_2UMo,28935
|
|
333
|
-
camel/toolkits/page_script.js,sha256=
|
|
334
|
+
camel/toolkits/page_script.js,sha256=mXepZPnQNVLp_Wgb64lv7DMQIJYl_XIHJHLVt1OFZO4,13146
|
|
334
335
|
camel/toolkits/playwright_mcp_toolkit.py,sha256=_TcCRA3ECaWO0pqUjoZ2whfWXgvank4A4isqNjgZqqc,2403
|
|
335
336
|
camel/toolkits/pubmed_toolkit.py,sha256=VGl8KeyWi7pjb2kEhFBLmpBlP9ezv8JyWRHtEVTQ6nQ,12227
|
|
336
337
|
camel/toolkits/pulse_mcp_search_toolkit.py,sha256=uLUpm19uC_4xLJow0gGVS9f-5T5EW2iRAXdJ4nqJG-A,4783
|
|
@@ -345,12 +346,12 @@ camel/toolkits/stripe_toolkit.py,sha256=07swo5znGTnorafC1uYLKB4NRcJIOPOx19J7tkpL
|
|
|
345
346
|
camel/toolkits/sympy_toolkit.py,sha256=dkzGp7C7Oy-qP1rVziEk_ZOPRb37d5LoI7JKCLiTEo4,33758
|
|
346
347
|
camel/toolkits/terminal_toolkit.py,sha256=gupuTvNkwnFzcFwDB_irSJ9-dXRr8yEAsYq5ChEkkHg,37230
|
|
347
348
|
camel/toolkits/thinking_toolkit.py,sha256=NyA6rDFG-WbCNt7NFODBTpqOIDtP6he6GhnZpPlA2To,8001
|
|
348
|
-
camel/toolkits/twitter_toolkit.py,sha256=
|
|
349
|
-
camel/toolkits/video_analysis_toolkit.py,sha256
|
|
350
|
-
camel/toolkits/video_download_toolkit.py,sha256=
|
|
349
|
+
camel/toolkits/twitter_toolkit.py,sha256=Px4N8aUxUzy01LhGSWkdrC2JgwKkrY3cvxgMeJ2XYfU,15939
|
|
350
|
+
camel/toolkits/video_analysis_toolkit.py,sha256=Mf7kZ2UDKFzIq8XjJc6EhL8qXQnEomQ8OBy_eyjD49A,20647
|
|
351
|
+
camel/toolkits/video_download_toolkit.py,sha256=jBb2SQ9OA5HIuGF7FbNQ0KrvvwMWPxUnvUyCHjbHuQQ,7501
|
|
351
352
|
camel/toolkits/weather_toolkit.py,sha256=fs9x9aC38Wsvni6A4PPpbRX6-aBnZiqs2Jix39yoULU,7413
|
|
352
353
|
camel/toolkits/whatsapp_toolkit.py,sha256=udUQXkXyeWsmrUlOJZsGBhHtc_jhB05Axe_TchhibsU,5760
|
|
353
|
-
camel/toolkits/wolfram_alpha_toolkit.py,sha256=
|
|
354
|
+
camel/toolkits/wolfram_alpha_toolkit.py,sha256=2eOk53R2CVGduB3faBNzaYLa9NGhUlOwXkeOQlT3xTc,9209
|
|
354
355
|
camel/toolkits/zapier_toolkit.py,sha256=A83y1UcfuopH7Fx82pORzypl1StbhBjB2HhyOqYa300,7124
|
|
355
356
|
camel/toolkits/open_api_specs/security_config.py,sha256=ZVnBa_zEifaE_ao2xsvV5majuJHpn2Tn7feMDOnj-eo,898
|
|
356
357
|
camel/toolkits/open_api_specs/biztoc/__init__.py,sha256=OKCZrQCDwaWtXIN_2rA9FSqEvgpQRieRoHh7Ek6N16A,702
|
|
@@ -378,7 +379,7 @@ camel/toolkits/open_api_specs/web_scraper/openapi.yaml,sha256=u_WalQ01e8W1D27VnZ
|
|
|
378
379
|
camel/toolkits/open_api_specs/web_scraper/paths/__init__.py,sha256=OKCZrQCDwaWtXIN_2rA9FSqEvgpQRieRoHh7Ek6N16A,702
|
|
379
380
|
camel/toolkits/open_api_specs/web_scraper/paths/scraper.py,sha256=aWy1_ppV4NVVEZfnbN3tu9XA9yAPAC9bRStJ5JuXMRU,1117
|
|
380
381
|
camel/types/__init__.py,sha256=pFTg3CWGSCfwFdoxPDTf4dKV8DdJS1x-bBPuEOmtdf0,2549
|
|
381
|
-
camel/types/enums.py,sha256=
|
|
382
|
+
camel/types/enums.py,sha256=oTm0vsRkG03FyoHBmzvb0y8LKNVsz6_zyuzUorCgbGs,58963
|
|
382
383
|
camel/types/mcp_registries.py,sha256=dl4LgYtSaUhsqAKpz28k_SA9La11qxqBvDLaEuyzrFE,4971
|
|
383
384
|
camel/types/openai_types.py,sha256=8ZFzLe-zGmKNPfuVZFzxlxAX98lGf18gtrPhOgMmzus,2104
|
|
384
385
|
camel/types/unified_model_type.py,sha256=TpiUmJ3IuX8LNLtTUeUcVM7U82r4ClSq3ZQlNX3ODKs,5351
|
|
@@ -403,7 +404,7 @@ camel/verifiers/math_verifier.py,sha256=tA1D4S0sm8nsWISevxSN0hvSVtIUpqmJhzqfbuMo
|
|
|
403
404
|
camel/verifiers/models.py,sha256=GdxYPr7UxNrR1577yW4kyroRcLGfd-H1GXgv8potDWU,2471
|
|
404
405
|
camel/verifiers/physics_verifier.py,sha256=c1grrRddcrVN7szkxhv2QirwY9viIRSITWeWFF5HmLs,30187
|
|
405
406
|
camel/verifiers/python_verifier.py,sha256=ogTz77wODfEcDN4tMVtiSkRQyoiZbHPY2fKybn59lHw,20558
|
|
406
|
-
camel_ai-0.2.
|
|
407
|
-
camel_ai-0.2.
|
|
408
|
-
camel_ai-0.2.
|
|
409
|
-
camel_ai-0.2.
|
|
407
|
+
camel_ai-0.2.60.dist-info/METADATA,sha256=j0YpVvS0QIY2cs_TX8qLlFyN_tuo-HLI0mHNsCxpF8c,44292
|
|
408
|
+
camel_ai-0.2.60.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
409
|
+
camel_ai-0.2.60.dist-info/licenses/LICENSE,sha256=id0nB2my5kG0xXeimIu5zZrbHLS6EQvxvkKkzIHaT2k,11343
|
|
410
|
+
camel_ai-0.2.60.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|