camel-ai 0.2.69a7__py3-none-any.whl → 0.2.71a1__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/societies/role_playing.py +26 -28
- camel/societies/workforce/role_playing_worker.py +4 -4
- camel/societies/workforce/single_agent_worker.py +4 -4
- camel/societies/workforce/workforce.py +462 -159
- camel/societies/workforce/workforce_logger.py +37 -24
- camel/storages/__init__.py +2 -0
- camel/storages/vectordb_storages/__init__.py +2 -0
- camel/storages/vectordb_storages/pgvector.py +349 -0
- camel/tasks/task.py +83 -7
- camel/toolkits/file_write_toolkit.py +21 -7
- camel/toolkits/human_toolkit.py +23 -8
- camel/toolkits/non_visual_browser_toolkit/browser_non_visual_toolkit.py +23 -2
- camel/toolkits/non_visual_browser_toolkit/nv_browser_session.py +53 -11
- camel/toolkits/non_visual_browser_toolkit/snapshot.js +211 -131
- camel/toolkits/non_visual_browser_toolkit/snapshot.py +9 -8
- camel/toolkits/terminal_toolkit.py +28 -20
- camel/toolkits/video_download_toolkit.py +5 -1
- camel/types/enums.py +3 -0
- {camel_ai-0.2.69a7.dist-info → camel_ai-0.2.71a1.dist-info}/METADATA +5 -1
- {camel_ai-0.2.69a7.dist-info → camel_ai-0.2.71a1.dist-info}/RECORD +23 -22
- {camel_ai-0.2.69a7.dist-info → camel_ai-0.2.71a1.dist-info}/WHEEL +0 -0
- {camel_ai-0.2.69a7.dist-info → camel_ai-0.2.71a1.dist-info}/licenses/LICENSE +0 -0
|
@@ -81,7 +81,7 @@ class TerminalToolkit(BaseToolkit):
|
|
|
81
81
|
self.terminal_ready = threading.Event()
|
|
82
82
|
self.gui_thread = None
|
|
83
83
|
self.safe_mode = safe_mode
|
|
84
|
-
|
|
84
|
+
self._file_initialized = False
|
|
85
85
|
self.cloned_env_path = None
|
|
86
86
|
self.use_shell_mode = use_shell_mode
|
|
87
87
|
|
|
@@ -129,25 +129,20 @@ class TerminalToolkit(BaseToolkit):
|
|
|
129
129
|
|
|
130
130
|
self.log_file = os.path.join(os.getcwd(), "camel_terminal.txt")
|
|
131
131
|
|
|
132
|
-
if os.path.exists(self.log_file):
|
|
133
|
-
with open(self.log_file, "w") as f:
|
|
134
|
-
f.truncate(0)
|
|
135
|
-
f.write("CAMEL Terminal Session\n")
|
|
136
|
-
f.write("=" * 50 + "\n")
|
|
137
|
-
f.write(f"Working Directory: {os.getcwd()}\n")
|
|
138
|
-
f.write("=" * 50 + "\n\n")
|
|
139
|
-
else:
|
|
140
|
-
with open(self.log_file, "w") as f:
|
|
141
|
-
f.write("CAMEL Terminal Session\n")
|
|
142
|
-
f.write("=" * 50 + "\n")
|
|
143
|
-
f.write(f"Working Directory: {os.getcwd()}\n")
|
|
144
|
-
f.write("=" * 50 + "\n\n")
|
|
145
|
-
|
|
146
132
|
# Inform the user
|
|
147
|
-
logger.info(f"Terminal output redirected to: {self.log_file}")
|
|
133
|
+
logger.info(f"Terminal output will be redirected to: {self.log_file}")
|
|
148
134
|
|
|
149
135
|
def file_update(output: str):
|
|
150
136
|
try:
|
|
137
|
+
# Initialize file on first write
|
|
138
|
+
if not self._file_initialized:
|
|
139
|
+
with open(self.log_file, "w") as f:
|
|
140
|
+
f.write("CAMEL Terminal Session\n")
|
|
141
|
+
f.write("=" * 50 + "\n")
|
|
142
|
+
f.write(f"Working Directory: {os.getcwd()}\n")
|
|
143
|
+
f.write("=" * 50 + "\n\n")
|
|
144
|
+
self._file_initialized = True
|
|
145
|
+
|
|
151
146
|
# Directly append to the end of the file
|
|
152
147
|
with open(self.log_file, "a") as f:
|
|
153
148
|
f.write(output)
|
|
@@ -165,6 +160,12 @@ class TerminalToolkit(BaseToolkit):
|
|
|
165
160
|
def _clone_current_environment(self):
|
|
166
161
|
r"""Create a new Python virtual environment."""
|
|
167
162
|
try:
|
|
163
|
+
if self.cloned_env_path is None:
|
|
164
|
+
self._update_terminal_output(
|
|
165
|
+
"Error: No environment path specified\n"
|
|
166
|
+
)
|
|
167
|
+
return
|
|
168
|
+
|
|
168
169
|
if os.path.exists(self.cloned_env_path):
|
|
169
170
|
self._update_terminal_output(
|
|
170
171
|
f"Using existing environment: {self.cloned_env_path}\n"
|
|
@@ -187,7 +188,8 @@ class TerminalToolkit(BaseToolkit):
|
|
|
187
188
|
logger.error(f"Failed to create environment: {e}")
|
|
188
189
|
|
|
189
190
|
def _create_terminal(self):
|
|
190
|
-
r"""Create a terminal GUI.
|
|
191
|
+
r"""Create a terminal GUI. If GUI creation fails, fallback
|
|
192
|
+
to file output."""
|
|
191
193
|
|
|
192
194
|
try:
|
|
193
195
|
import tkinter as tk
|
|
@@ -239,7 +241,12 @@ class TerminalToolkit(BaseToolkit):
|
|
|
239
241
|
self.root.mainloop()
|
|
240
242
|
|
|
241
243
|
except Exception as e:
|
|
242
|
-
logger.
|
|
244
|
+
logger.warning(
|
|
245
|
+
f"Failed to create GUI terminal: {e}, "
|
|
246
|
+
f"falling back to file output mode"
|
|
247
|
+
)
|
|
248
|
+
# Fallback to file output mode when GUI creation fails
|
|
249
|
+
self._setup_file_output()
|
|
243
250
|
self.terminal_ready.set()
|
|
244
251
|
|
|
245
252
|
def _update_terminal_output(self, output: str):
|
|
@@ -249,8 +256,9 @@ class TerminalToolkit(BaseToolkit):
|
|
|
249
256
|
output (str): The output to be sent to the agent
|
|
250
257
|
"""
|
|
251
258
|
try:
|
|
252
|
-
# If it is macOS
|
|
253
|
-
|
|
259
|
+
# If it is macOS or if we have a log_file (fallback mode),
|
|
260
|
+
# write to file
|
|
261
|
+
if self.is_macos or hasattr(self, 'log_file'):
|
|
254
262
|
if hasattr(self, 'log_file'):
|
|
255
263
|
with open(self.log_file, "a") as f:
|
|
256
264
|
f.write(output)
|
|
@@ -123,6 +123,9 @@ class VideoDownloaderToolkit(BaseToolkit):
|
|
|
123
123
|
yt-dlp will detect if the video is downloaded automatically so there
|
|
124
124
|
is no need to check if the video exists.
|
|
125
125
|
|
|
126
|
+
Args:
|
|
127
|
+
url (str): The URL of the video to download.
|
|
128
|
+
|
|
126
129
|
Returns:
|
|
127
130
|
str: The path to the downloaded video file.
|
|
128
131
|
"""
|
|
@@ -175,7 +178,8 @@ class VideoDownloaderToolkit(BaseToolkit):
|
|
|
175
178
|
dividing the video into equal parts if an integer is provided.
|
|
176
179
|
|
|
177
180
|
Args:
|
|
178
|
-
|
|
181
|
+
video_path (str): The local path or URL of the video to take
|
|
182
|
+
screenshots.
|
|
179
183
|
amount (int): the amount of evenly split screenshots to capture.
|
|
180
184
|
|
|
181
185
|
Returns:
|
camel/types/enums.py
CHANGED
|
@@ -209,6 +209,7 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
209
209
|
MISTRAL_PIXTRAL_12B = "pixtral-12b-2409"
|
|
210
210
|
MISTRAL_MEDIUM_3 = "mistral-medium-latest"
|
|
211
211
|
MAGISTRAL_MEDIUM = "magistral-medium-2506"
|
|
212
|
+
MISTRAL_SMALL_3_2 = "mistral-small-2506"
|
|
212
213
|
|
|
213
214
|
# Reka models
|
|
214
215
|
REKA_CORE = "reka-core"
|
|
@@ -646,6 +647,7 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
646
647
|
ModelType.MISTRAL_3B,
|
|
647
648
|
ModelType.MISTRAL_MEDIUM_3,
|
|
648
649
|
ModelType.MAGISTRAL_MEDIUM,
|
|
650
|
+
ModelType.MISTRAL_SMALL_3_2,
|
|
649
651
|
}
|
|
650
652
|
|
|
651
653
|
@property
|
|
@@ -1166,6 +1168,7 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
1166
1168
|
ModelType.MISTRAL_PIXTRAL_12B,
|
|
1167
1169
|
ModelType.MISTRAL_8B,
|
|
1168
1170
|
ModelType.MISTRAL_3B,
|
|
1171
|
+
ModelType.MISTRAL_SMALL_3_2,
|
|
1169
1172
|
ModelType.QWEN_2_5_CODER_32B,
|
|
1170
1173
|
ModelType.QWEN_2_5_VL_72B,
|
|
1171
1174
|
ModelType.QWEN_2_5_72B,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: camel-ai
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.71a1
|
|
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
|
|
@@ -87,10 +87,12 @@ Requires-Dist: openapi-spec-validator<0.8,>=0.7.1; extra == 'all'
|
|
|
87
87
|
Requires-Dist: openpyxl>=3.1.5; extra == 'all'
|
|
88
88
|
Requires-Dist: pandas<2,>=1.5.3; extra == 'all'
|
|
89
89
|
Requires-Dist: pandasai<3,>=2.3.0; extra == 'all'
|
|
90
|
+
Requires-Dist: pgvector<0.3,>=0.2.4; extra == 'all'
|
|
90
91
|
Requires-Dist: playwright>=1.50.0; extra == 'all'
|
|
91
92
|
Requires-Dist: prance<24,>=23.6.21.0; extra == 'all'
|
|
92
93
|
Requires-Dist: praw<8,>=7.7.1; extra == 'all'
|
|
93
94
|
Requires-Dist: pre-commit<4,>=3; extra == 'all'
|
|
95
|
+
Requires-Dist: psycopg[binary]<4,>=3.1.18; extra == 'all'
|
|
94
96
|
Requires-Dist: pyautogui<0.10,>=0.9.54; extra == 'all'
|
|
95
97
|
Requires-Dist: pydub<0.26,>=0.25.1; extra == 'all'
|
|
96
98
|
Requires-Dist: pygithub<3,>=2.6.0; extra == 'all'
|
|
@@ -319,6 +321,8 @@ Requires-Dist: google-cloud-storage<3,>=2.18.0; extra == 'storage'
|
|
|
319
321
|
Requires-Dist: mem0ai>=0.1.73; extra == 'storage'
|
|
320
322
|
Requires-Dist: nebula3-python==3.8.2; extra == 'storage'
|
|
321
323
|
Requires-Dist: neo4j<6,>=5.18.0; extra == 'storage'
|
|
324
|
+
Requires-Dist: pgvector<0.3,>=0.2.4; extra == 'storage'
|
|
325
|
+
Requires-Dist: psycopg[binary]<4,>=3.1.18; extra == 'storage'
|
|
322
326
|
Requires-Dist: pymilvus<3,>=2.4.0; extra == 'storage'
|
|
323
327
|
Requires-Dist: pyobvector>=0.1.18; extra == 'storage'
|
|
324
328
|
Requires-Dist: pytidb-experimental==0.0.1.dev4; extra == 'storage'
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
camel/__init__.py,sha256=
|
|
1
|
+
camel/__init__.py,sha256=68LIL5xxwGZbXNGzdkomtyNm1ytDBwGSvZ0_FqIqzvQ,901
|
|
2
2
|
camel/generators.py,sha256=JRqj9_m1PF4qT6UtybzTQ-KBT9MJQt18OAAYvQ_fr2o,13844
|
|
3
3
|
camel/human.py,sha256=Xg8x1cS5KK4bQ1SDByiHZnzsRpvRP-KZViNvmu38xo4,5475
|
|
4
4
|
camel/logger.py,sha256=rZVeOVYuQ9RYJ5Tqyv0usqy0g4zaVEq4qSfZ9nd2640,5755
|
|
@@ -268,18 +268,18 @@ camel/schemas/openai_converter.py,sha256=SEnYsYcboZgVmjcC1YP5xke3c0MYPESPRmYQWsD
|
|
|
268
268
|
camel/schemas/outlines_converter.py,sha256=OYKPR1fNyrYs9eh5RiXEAccMbnRc9WTwSVJYbh9HkKE,8738
|
|
269
269
|
camel/societies/__init__.py,sha256=NOHjtlsY-gV9UCF2xXgcbG-xXyuigmbwbpLpNsDgEJ4,826
|
|
270
270
|
camel/societies/babyagi_playing.py,sha256=KbTdpHfZ2V8AripVck0bNTOyF-RSaMPCRARz3DvzWfQ,11855
|
|
271
|
-
camel/societies/role_playing.py,sha256=
|
|
271
|
+
camel/societies/role_playing.py,sha256=0XScr3WfxX1QOC71RhBLmrcS5y2c7DMQB_mAFOHU34M,31421
|
|
272
272
|
camel/societies/workforce/__init__.py,sha256=bkTI-PE-MSK9AQ2V2gR6cR2WY-R7Jqy_NmXRtAoqo8o,920
|
|
273
273
|
camel/societies/workforce/base.py,sha256=z2DmbTP5LL5-aCAAqglznQqCLfPmnyM5zD3w6jjtsb8,2175
|
|
274
274
|
camel/societies/workforce/prompts.py,sha256=_l7OUkzH5p7KOd8HMZle9zB9W3jKza_Yb_6elFKiZ2s,11813
|
|
275
|
-
camel/societies/workforce/role_playing_worker.py,sha256=
|
|
276
|
-
camel/societies/workforce/single_agent_worker.py,sha256=
|
|
275
|
+
camel/societies/workforce/role_playing_worker.py,sha256=2W5NEg15ukv2z_KGSufAZznj_g0oecfV1TLP9XYVZlM,7599
|
|
276
|
+
camel/societies/workforce/single_agent_worker.py,sha256=mU5CKRctz73xwSBEzfOeBo5NYaE9GxXFU_0Dc__v3wM,14611
|
|
277
277
|
camel/societies/workforce/task_channel.py,sha256=uqQQI67Tr4awbR4bjZXdx8_4gL6-ON5IjQk_H_ryqT4,7431
|
|
278
278
|
camel/societies/workforce/utils.py,sha256=Gjlz7pLo4r1b6iNHtlIMxeEuat4d6tEEQMI40JAU3kY,6190
|
|
279
279
|
camel/societies/workforce/worker.py,sha256=36tkOyz4G2wfBdrFjt9NBPXsx4UbE6uL5on8sP2aoqk,6414
|
|
280
|
-
camel/societies/workforce/workforce.py,sha256=
|
|
281
|
-
camel/societies/workforce/workforce_logger.py,sha256=
|
|
282
|
-
camel/storages/__init__.py,sha256=
|
|
280
|
+
camel/societies/workforce/workforce.py,sha256=HS1zW6k8nhIjCVX0XiLEVCsKookHmtJjvYIuP2Cr7hg,108733
|
|
281
|
+
camel/societies/workforce/workforce_logger.py,sha256=ihBS0NMigFWjNS3GatFYq_ViPnmYSr2jznOe4VjvxVk,24817
|
|
282
|
+
camel/storages/__init__.py,sha256=RwpEyvxpMbJzVDZJJygeBg4AzyYMkTjjkfB53hTuqGo,2141
|
|
283
283
|
camel/storages/graph_storages/__init__.py,sha256=G29BNn651C0WTOpjCl4QnVM-4B9tcNh8DdmsCiONH8Y,948
|
|
284
284
|
camel/storages/graph_storages/base.py,sha256=uSe9jWuLudfm5jtfo6E-L_kNzITwK1_Ef-6L4HWw-JM,2852
|
|
285
285
|
camel/storages/graph_storages/graph_element.py,sha256=X_2orbQOMaQd00xxzAoJLfEcrVNE1mgCqMJv0orMAKA,2733
|
|
@@ -296,17 +296,18 @@ camel/storages/object_storages/amazon_s3.py,sha256=9Yvyyyb1LGHxr8REEza7oGopbVtLE
|
|
|
296
296
|
camel/storages/object_storages/azure_blob.py,sha256=66dHcvjE2ZNdb339oBU6LbFiKzPYrnlb4tQ_3m2Yazc,5992
|
|
297
297
|
camel/storages/object_storages/base.py,sha256=pImWylYJm7Wt8q87lBE1Cxk26IJ9sRtXq_OJmV6bJlg,3796
|
|
298
298
|
camel/storages/object_storages/google_cloud.py,sha256=59AvGar_GDoGYHhzUi5KBtInv2KaUVnw8SalsL43410,5332
|
|
299
|
-
camel/storages/vectordb_storages/__init__.py,sha256=
|
|
299
|
+
camel/storages/vectordb_storages/__init__.py,sha256=ZxN9EWkhh4W9LGfpwmnQkpiaY1dEfvVERd6QZ-jN4Bs,1412
|
|
300
300
|
camel/storages/vectordb_storages/base.py,sha256=EP_WbEtI3SJPHro9rjNkIq9UDUP1AAHmxZgeya94Lgk,6738
|
|
301
301
|
camel/storages/vectordb_storages/chroma.py,sha256=wXuLUYsgkC2VvdyLrlL5VqEDVzJDBUo7OdimK8hBLmg,27553
|
|
302
302
|
camel/storages/vectordb_storages/faiss.py,sha256=MHE3db9kJmVuu0aScXsSo8p60TCtc2Ot0rO77zcPgt8,26760
|
|
303
303
|
camel/storages/vectordb_storages/milvus.py,sha256=ChQyEuaXCWCKxytLN2z4QrkEthx2xE6bQPO6KCS9RgQ,13535
|
|
304
304
|
camel/storages/vectordb_storages/oceanbase.py,sha256=eNBelw4D6r3OWlhHzGJ8Xw-ej9nU1uTZ6CYoXdbxDkI,17054
|
|
305
|
+
camel/storages/vectordb_storages/pgvector.py,sha256=p-5RGCVT46zP-Yop85thWi2m0ZnHILSJFpu2A-7qWnk,12438
|
|
305
306
|
camel/storages/vectordb_storages/qdrant.py,sha256=a_cT0buSCHQ2CPZy852-mdvMDwy5zodCvAKMaa4zIvg,18017
|
|
306
307
|
camel/storages/vectordb_storages/tidb.py,sha256=w83bxgKgso43MtHqlpf2EMSpn1_Nz6ZZtY4fPw_-vgs,11192
|
|
307
308
|
camel/storages/vectordb_storages/weaviate.py,sha256=wDUE4KvfmOl3DqHFU4uF0VKbHu-q9vKhZDe8FZ6QXsk,27888
|
|
308
309
|
camel/tasks/__init__.py,sha256=MuHwkw5GRQc8NOCzj8tjtBrr2Xg9KrcKp-ed_-2ZGIM,906
|
|
309
|
-
camel/tasks/task.py,sha256=
|
|
310
|
+
camel/tasks/task.py,sha256=H47DQxPDWKRFx5McBjWuazjVyC2WaF50w6cW0kZnctI,20302
|
|
310
311
|
camel/tasks/task_prompt.py,sha256=3KZmKYKUPcTKe8EAZOZBN3G05JHRVt7oHY9ORzLVu1g,2150
|
|
311
312
|
camel/terminators/__init__.py,sha256=t8uqrkUnXEOYMXQDgaBkMFJ0EXFKI0kmx4cUimli3Ls,991
|
|
312
313
|
camel/terminators/base.py,sha256=xmJzERX7GdSXcxZjAHHODa0rOxRChMSRboDCNHWSscs,1511
|
|
@@ -329,14 +330,14 @@ camel/toolkits/dappier_toolkit.py,sha256=OEHOYXX_oXhgbVtWYAy13nO9uXf9i5qEXSwY4Pe
|
|
|
329
330
|
camel/toolkits/data_commons_toolkit.py,sha256=aHZUSL1ACpnYGaf1rE2csVKTmXTmN8lMGRUBYhZ_YEk,14168
|
|
330
331
|
camel/toolkits/edgeone_pages_mcp_toolkit.py,sha256=1TFpAGHUNLggFQeN1OEw7P5laijwnlrCkfxBtgxFuUY,2331
|
|
331
332
|
camel/toolkits/excel_toolkit.py,sha256=9Uk5GLWl719c4W-NcGPJTNMtodAbEE5gUgLsFkIInbk,32564
|
|
332
|
-
camel/toolkits/file_write_toolkit.py,sha256=
|
|
333
|
+
camel/toolkits/file_write_toolkit.py,sha256=8G7swo_9EXpbt5IO-hCy-Wf5BPd70ewfpCHqErPsCXU,17072
|
|
333
334
|
camel/toolkits/function_tool.py,sha256=xCDzjxTRCVj_kmbnMFBuwK-3NuzM4JNe_kv9HLtjnIA,33644
|
|
334
335
|
camel/toolkits/github_toolkit.py,sha256=iUyRrjWGAW_iljZVfNyfkm1Vi55wJxK6PsDAQs9pOag,13099
|
|
335
336
|
camel/toolkits/google_calendar_toolkit.py,sha256=E-sdgdbtNBs_CXbhht9t1dsVr4DsTr5NguHkx4fvSmc,15410
|
|
336
337
|
camel/toolkits/google_drive_mcp_toolkit.py,sha256=NubrRdPV8_t8bM4vP-7eKSVMuVwSEBXLfubWR_Hba7k,2583
|
|
337
338
|
camel/toolkits/google_maps_toolkit.py,sha256=WTnkURpGri9KcY5OwV7AJJHOzmpu5RNmYE1QCVqvwWM,12023
|
|
338
339
|
camel/toolkits/google_scholar_toolkit.py,sha256=WQ9a0HQr0vro1Uo1m--alCUXvMmaHVKeQYqGCxXc2s8,7562
|
|
339
|
-
camel/toolkits/human_toolkit.py,sha256=
|
|
340
|
+
camel/toolkits/human_toolkit.py,sha256=BMjYEj8Qayx3UJIirHnsEt6xvPslHrYAI6wvg9OV-7g,3264
|
|
340
341
|
camel/toolkits/image_analysis_toolkit.py,sha256=IC36mtytgyMSW20IImIZDgQPsgPxmxZG7qIxO_gIkrs,7647
|
|
341
342
|
camel/toolkits/jina_reranker_toolkit.py,sha256=0OWUlSqRNYYmD5EQZW7OX87lfmzLRjjDmHRyqHU6dmU,11963
|
|
342
343
|
camel/toolkits/klavis_toolkit.py,sha256=ZKerhgz5e-AV-iv0ftf07HgWikknIHjB3EOQswfuR80,9864
|
|
@@ -367,11 +368,11 @@ camel/toolkits/slack_toolkit.py,sha256=Nb3w-TbUmnUWEvHE9Hbf_wkpSepm_zKQj7m19UyoF
|
|
|
367
368
|
camel/toolkits/stripe_toolkit.py,sha256=07swo5znGTnorafC1uYLKB4NRcJIOPOx19J7tkpLYWk,10102
|
|
368
369
|
camel/toolkits/sympy_toolkit.py,sha256=BAQnI8EFJydNUpKQWXBdleQ1Cm-srDBhFlqp9V9pbPQ,33757
|
|
369
370
|
camel/toolkits/task_planning_toolkit.py,sha256=Ttw9fHae4omGC1SA-6uaeXVHJ1YkwiVloz_hO-fm1gw,4855
|
|
370
|
-
camel/toolkits/terminal_toolkit.py,sha256=
|
|
371
|
+
camel/toolkits/terminal_toolkit.py,sha256=3s5cx2lEgwRjx97DDP5LcvNF7j4dxT4PLWcpoq9pZNk,37652
|
|
371
372
|
camel/toolkits/thinking_toolkit.py,sha256=nZYLvKWIx2BM1DYu69I9B5EISAG7aYcLYXKv9663BVk,8000
|
|
372
373
|
camel/toolkits/twitter_toolkit.py,sha256=Px4N8aUxUzy01LhGSWkdrC2JgwKkrY3cvxgMeJ2XYfU,15939
|
|
373
374
|
camel/toolkits/video_analysis_toolkit.py,sha256=Wh08MAVvs3PtgXN88Sk0TXYaGfVmQAol8FPCXMPPpIM,23375
|
|
374
|
-
camel/toolkits/video_download_toolkit.py,sha256=
|
|
375
|
+
camel/toolkits/video_download_toolkit.py,sha256=4-_kp9IE4HuVxPb3P3ueZYFDH33iMheNo3s3HAhC7MU,7602
|
|
375
376
|
camel/toolkits/weather_toolkit.py,sha256=fs9x9aC38Wsvni6A4PPpbRX6-aBnZiqs2Jix39yoULU,7413
|
|
376
377
|
camel/toolkits/whatsapp_toolkit.py,sha256=udUQXkXyeWsmrUlOJZsGBhHtc_jhB05Axe_TchhibsU,5760
|
|
377
378
|
camel/toolkits/wolfram_alpha_toolkit.py,sha256=qeIM8ySn5ilcExBWtx-hDOc35bNcebLVnZ67kt1H3mQ,9295
|
|
@@ -379,10 +380,10 @@ camel/toolkits/zapier_toolkit.py,sha256=A83y1UcfuopH7Fx82pORzypl1StbhBjB2HhyOqYa
|
|
|
379
380
|
camel/toolkits/non_visual_browser_toolkit/__init__.py,sha256=mXAjf6qkl8BgJrBKPR5d2C3B2m4pOHvq6sRavmgOweA,812
|
|
380
381
|
camel/toolkits/non_visual_browser_toolkit/actions.py,sha256=pue7Q5ZGLhqcmbkuahrN_JBYdeV0xtqu9i4gr9mqGWU,7113
|
|
381
382
|
camel/toolkits/non_visual_browser_toolkit/agent.py,sha256=y6sAWlPXScVn7f2bPueS8yd8IQ3CkJ0HutP4DChs6P8,10330
|
|
382
|
-
camel/toolkits/non_visual_browser_toolkit/browser_non_visual_toolkit.py,sha256=
|
|
383
|
-
camel/toolkits/non_visual_browser_toolkit/nv_browser_session.py,sha256=
|
|
384
|
-
camel/toolkits/non_visual_browser_toolkit/snapshot.js,sha256=
|
|
385
|
-
camel/toolkits/non_visual_browser_toolkit/snapshot.py,sha256=
|
|
383
|
+
camel/toolkits/non_visual_browser_toolkit/browser_non_visual_toolkit.py,sha256=HrKow47ZMq-3dWdC-zz2zWV5ICzt13EOTTrYHCEd0VU,17106
|
|
384
|
+
camel/toolkits/non_visual_browser_toolkit/nv_browser_session.py,sha256=vYG4aVyKnQGu0EVfwL6kHXwKHSNlfVJYkkNsozjhk3w,8699
|
|
385
|
+
camel/toolkits/non_visual_browser_toolkit/snapshot.js,sha256=67cvZamV85PpWXQ0n2Hml0GKkZhznWz3qH8SP_Xoup4,10531
|
|
386
|
+
camel/toolkits/non_visual_browser_toolkit/snapshot.py,sha256=1kbsk0v7fe_PTKzxIADE3Ocjjl6wykxxHLb5HvR0DCc,8092
|
|
386
387
|
camel/toolkits/open_api_specs/security_config.py,sha256=ZVnBa_zEifaE_ao2xsvV5majuJHpn2Tn7feMDOnj-eo,898
|
|
387
388
|
camel/toolkits/open_api_specs/biztoc/__init__.py,sha256=OKCZrQCDwaWtXIN_2rA9FSqEvgpQRieRoHh7Ek6N16A,702
|
|
388
389
|
camel/toolkits/open_api_specs/biztoc/ai-plugin.json,sha256=IJinQbLv5MFPGFwdN7PbOhwArFVExSEZdJspe-mOBIo,866
|
|
@@ -409,7 +410,7 @@ camel/toolkits/open_api_specs/web_scraper/openapi.yaml,sha256=u_WalQ01e8W1D27VnZ
|
|
|
409
410
|
camel/toolkits/open_api_specs/web_scraper/paths/__init__.py,sha256=OKCZrQCDwaWtXIN_2rA9FSqEvgpQRieRoHh7Ek6N16A,702
|
|
410
411
|
camel/toolkits/open_api_specs/web_scraper/paths/scraper.py,sha256=aWy1_ppV4NVVEZfnbN3tu9XA9yAPAC9bRStJ5JuXMRU,1117
|
|
411
412
|
camel/types/__init__.py,sha256=pFTg3CWGSCfwFdoxPDTf4dKV8DdJS1x-bBPuEOmtdf0,2549
|
|
412
|
-
camel/types/enums.py,sha256=
|
|
413
|
+
camel/types/enums.py,sha256=FsUh5p4xo_c-h1Z5xzE7HeSue-pYUR7s4zzkYEDRBwI,63014
|
|
413
414
|
camel/types/mcp_registries.py,sha256=dl4LgYtSaUhsqAKpz28k_SA9La11qxqBvDLaEuyzrFE,4971
|
|
414
415
|
camel/types/openai_types.py,sha256=8ZFzLe-zGmKNPfuVZFzxlxAX98lGf18gtrPhOgMmzus,2104
|
|
415
416
|
camel/types/unified_model_type.py,sha256=ZweHiS4MQ1QbDEX3a3oUc-pvgueYP27Zt0SlAPcYg_4,5623
|
|
@@ -436,7 +437,7 @@ camel/verifiers/math_verifier.py,sha256=tA1D4S0sm8nsWISevxSN0hvSVtIUpqmJhzqfbuMo
|
|
|
436
437
|
camel/verifiers/models.py,sha256=GdxYPr7UxNrR1577yW4kyroRcLGfd-H1GXgv8potDWU,2471
|
|
437
438
|
camel/verifiers/physics_verifier.py,sha256=c1grrRddcrVN7szkxhv2QirwY9viIRSITWeWFF5HmLs,30187
|
|
438
439
|
camel/verifiers/python_verifier.py,sha256=ogTz77wODfEcDN4tMVtiSkRQyoiZbHPY2fKybn59lHw,20558
|
|
439
|
-
camel_ai-0.2.
|
|
440
|
-
camel_ai-0.2.
|
|
441
|
-
camel_ai-0.2.
|
|
442
|
-
camel_ai-0.2.
|
|
440
|
+
camel_ai-0.2.71a1.dist-info/METADATA,sha256=6SM1mT10AceKXI4TD8T4aBzmQR14HBBi2Mv9s9QUgNs,45276
|
|
441
|
+
camel_ai-0.2.71a1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
442
|
+
camel_ai-0.2.71a1.dist-info/licenses/LICENSE,sha256=id0nB2my5kG0xXeimIu5zZrbHLS6EQvxvkKkzIHaT2k,11343
|
|
443
|
+
camel_ai-0.2.71a1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|