camel-ai 0.2.64__py3-none-any.whl → 0.2.65__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 +19 -7
- camel/benchmarks/mock_website/README.md +96 -0
- camel/benchmarks/mock_website/mock_web.py +299 -0
- camel/benchmarks/mock_website/requirements.txt +3 -0
- camel/benchmarks/mock_website/shopping_mall/app.py +465 -0
- camel/benchmarks/mock_website/task.json +104 -0
- camel/datasets/models.py +1 -1
- camel/datasets/static_dataset.py +6 -0
- camel/models/openai_model.py +1 -0
- camel/societies/workforce/role_playing_worker.py +9 -1
- camel/societies/workforce/single_agent_worker.py +8 -1
- camel/societies/workforce/utils.py +51 -0
- camel/societies/workforce/workforce.py +3 -3
- camel/tasks/task.py +8 -0
- camel/toolkits/async_browser_toolkit.py +97 -54
- camel/toolkits/browser_toolkit.py +65 -18
- camel/toolkits/function_tool.py +2 -2
- camel/toolkits/playwright_mcp_toolkit.py +16 -3
- camel/toolkits/task_planning_toolkit.py +134 -0
- camel/types/enums.py +5 -1
- {camel_ai-0.2.64.dist-info → camel_ai-0.2.65.dist-info}/METADATA +4 -12
- {camel_ai-0.2.64.dist-info → camel_ai-0.2.65.dist-info}/RECORD +25 -19
- {camel_ai-0.2.64.dist-info → camel_ai-0.2.65.dist-info}/WHEEL +0 -0
- {camel_ai-0.2.64.dist-info → camel_ai-0.2.65.dist-info}/licenses/LICENSE +0 -0
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
# ========= Copyright 2023-2024 @ CAMEL-AI.org. All Rights Reserved. =========
|
|
2
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
3
|
+
# you may not use this file except in compliance with the License.
|
|
4
|
+
# You may obtain a copy of the License at
|
|
5
|
+
#
|
|
6
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
|
7
|
+
#
|
|
8
|
+
# Unless required by applicable law or agreed to in writing, software
|
|
9
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
10
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
11
|
+
# See the License for the specific language governing permissions and
|
|
12
|
+
# limitations under the License.
|
|
13
|
+
# ========= Copyright 2023-2024 @ CAMEL-AI.org. All Rights Reserved. =========
|
|
14
|
+
import uuid
|
|
15
|
+
from typing import List, Optional
|
|
16
|
+
|
|
17
|
+
from camel.logger import get_logger
|
|
18
|
+
from camel.tasks import Task
|
|
19
|
+
from camel.toolkits import BaseToolkit, FunctionTool
|
|
20
|
+
|
|
21
|
+
logger = get_logger(__name__)
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
class TaskPlanningToolkit(BaseToolkit):
|
|
25
|
+
r"""A toolkit for task decomposition and re-planning."""
|
|
26
|
+
|
|
27
|
+
def __init__(
|
|
28
|
+
self,
|
|
29
|
+
timeout: Optional[float] = None,
|
|
30
|
+
):
|
|
31
|
+
r"""Initialize the TaskPlanningToolkit.
|
|
32
|
+
|
|
33
|
+
Args:
|
|
34
|
+
timeout (Optional[float]): The timeout for the toolkit.
|
|
35
|
+
(default: :obj: `None`)
|
|
36
|
+
"""
|
|
37
|
+
super().__init__(timeout=timeout)
|
|
38
|
+
|
|
39
|
+
def decompose_task(
|
|
40
|
+
self,
|
|
41
|
+
original_task_content: str,
|
|
42
|
+
sub_task_contents: List[str],
|
|
43
|
+
original_task_id: Optional[str] = None,
|
|
44
|
+
) -> List[Task]:
|
|
45
|
+
r"""Use the tool to decompose an original task into several sub-tasks.
|
|
46
|
+
It creates new Task objects from the provided original task content,
|
|
47
|
+
used when the original task is complex and needs to be decomposed.
|
|
48
|
+
|
|
49
|
+
Args:
|
|
50
|
+
original_task_content (str): The content of the task to be
|
|
51
|
+
decomposed.
|
|
52
|
+
sub_task_contents (List[str]): A list of strings, where each
|
|
53
|
+
string is the content for a new sub-task.
|
|
54
|
+
original_task_id (Optional[str]): The id of the task to be
|
|
55
|
+
decomposed. If not provided, a new id will be generated.
|
|
56
|
+
(default: :obj: `None`)
|
|
57
|
+
|
|
58
|
+
Returns:
|
|
59
|
+
List[Task]: A list of newly created sub-task objects.
|
|
60
|
+
"""
|
|
61
|
+
# Create the original task object from its content
|
|
62
|
+
original_task = Task(
|
|
63
|
+
content=original_task_content,
|
|
64
|
+
id=original_task_id if original_task_id else str(uuid.uuid4()),
|
|
65
|
+
)
|
|
66
|
+
|
|
67
|
+
new_tasks: List[Task] = []
|
|
68
|
+
for i, content in enumerate(sub_task_contents):
|
|
69
|
+
new_task = Task(
|
|
70
|
+
content=content,
|
|
71
|
+
id=f"{original_task.id}.{i}",
|
|
72
|
+
parent=original_task,
|
|
73
|
+
)
|
|
74
|
+
new_tasks.append(new_task)
|
|
75
|
+
original_task.subtasks.append(new_task)
|
|
76
|
+
|
|
77
|
+
logger.debug(
|
|
78
|
+
f"Decomposed task (content: '{original_task.content[:50]}...', "
|
|
79
|
+
f"id: {original_task.id}) into {len(new_tasks)} sub-tasks: "
|
|
80
|
+
f"{[task.id for task in new_tasks]}"
|
|
81
|
+
)
|
|
82
|
+
|
|
83
|
+
return new_tasks
|
|
84
|
+
|
|
85
|
+
def replan_tasks(
|
|
86
|
+
self,
|
|
87
|
+
original_task_content: str,
|
|
88
|
+
sub_task_contents: List[str],
|
|
89
|
+
original_task_id: Optional[str] = None,
|
|
90
|
+
) -> List[Task]:
|
|
91
|
+
r"""Use the tool to re_decompose a task into several subTasks.
|
|
92
|
+
It creates new Task objects from the provided original task content,
|
|
93
|
+
used when the decomposed tasks are not good enough to help finish
|
|
94
|
+
the task.
|
|
95
|
+
|
|
96
|
+
Args:
|
|
97
|
+
original_task_content (str): The content of the task to be
|
|
98
|
+
decomposed.
|
|
99
|
+
sub_task_contents (List[str]): A list of strings, where each
|
|
100
|
+
string is the content for a new sub-task.
|
|
101
|
+
original_task_id (Optional[str]): The id of the task to be
|
|
102
|
+
decomposed. (default: :obj: `None`)
|
|
103
|
+
|
|
104
|
+
Returns:
|
|
105
|
+
List[Task]: Reordered or modified tasks.
|
|
106
|
+
"""
|
|
107
|
+
original_task = Task(
|
|
108
|
+
content=original_task_content,
|
|
109
|
+
id=original_task_id if original_task_id else str(uuid.uuid4()),
|
|
110
|
+
)
|
|
111
|
+
|
|
112
|
+
new_tasks: List[Task] = []
|
|
113
|
+
for i, content in enumerate(sub_task_contents):
|
|
114
|
+
new_task = Task(
|
|
115
|
+
content=content,
|
|
116
|
+
id=f"{original_task.id}.{i}",
|
|
117
|
+
parent=original_task,
|
|
118
|
+
)
|
|
119
|
+
new_tasks.append(new_task)
|
|
120
|
+
original_task.subtasks.append(new_task)
|
|
121
|
+
|
|
122
|
+
logger.debug(
|
|
123
|
+
f"RePlan task (content: '{original_task.content[:50]}...', "
|
|
124
|
+
f"id: {original_task.id}) into {len(new_tasks)} sub-tasks: "
|
|
125
|
+
f"{[task.id for task in new_tasks]}"
|
|
126
|
+
)
|
|
127
|
+
|
|
128
|
+
return new_tasks
|
|
129
|
+
|
|
130
|
+
def get_tools(self) -> List[FunctionTool]:
|
|
131
|
+
return [
|
|
132
|
+
FunctionTool(self.decompose_task),
|
|
133
|
+
FunctionTool(self.replan_tasks),
|
|
134
|
+
]
|
camel/types/enums.py
CHANGED
|
@@ -30,7 +30,7 @@ class RoleType(Enum):
|
|
|
30
30
|
|
|
31
31
|
|
|
32
32
|
class ModelType(UnifiedModelType, Enum):
|
|
33
|
-
DEFAULT = os.getenv("DEFAULT_MODEL_TYPE", "gpt-
|
|
33
|
+
DEFAULT = os.getenv("DEFAULT_MODEL_TYPE", "gpt-4.1-mini-2025-04-14")
|
|
34
34
|
|
|
35
35
|
GPT_3_5_TURBO = "gpt-3.5-turbo"
|
|
36
36
|
GPT_4 = "gpt-4"
|
|
@@ -47,6 +47,7 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
47
47
|
GPT_4_1_NANO = "gpt-4.1-nano-2025-04-14"
|
|
48
48
|
O4_MINI = "o4-mini"
|
|
49
49
|
O3 = "o3"
|
|
50
|
+
O3_PRO = "o3-pro"
|
|
50
51
|
|
|
51
52
|
AWS_CLAUDE_3_7_SONNET = "anthropic.claude-3-7-sonnet-20250219-v1:0"
|
|
52
53
|
AWS_CLAUDE_3_5_SONNET = "anthropic.claude-3-5-sonnet-20241022-v2:0"
|
|
@@ -472,6 +473,7 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
472
473
|
ModelType.O1,
|
|
473
474
|
ModelType.O1_PREVIEW,
|
|
474
475
|
ModelType.O1_MINI,
|
|
476
|
+
ModelType.O3_PRO,
|
|
475
477
|
ModelType.O3_MINI,
|
|
476
478
|
ModelType.GPT_4_5_PREVIEW,
|
|
477
479
|
ModelType.GPT_4_1,
|
|
@@ -512,6 +514,7 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
512
514
|
ModelType.O1_PREVIEW,
|
|
513
515
|
ModelType.O1_MINI,
|
|
514
516
|
ModelType.O3_MINI,
|
|
517
|
+
ModelType.O3_PRO,
|
|
515
518
|
ModelType.GPT_4_5_PREVIEW,
|
|
516
519
|
ModelType.GPT_4_1,
|
|
517
520
|
ModelType.GPT_4_1_MINI,
|
|
@@ -1207,6 +1210,7 @@ class ModelType(UnifiedModelType, Enum):
|
|
|
1207
1210
|
elif self in {
|
|
1208
1211
|
ModelType.O1,
|
|
1209
1212
|
ModelType.O3_MINI,
|
|
1213
|
+
ModelType.O3_PRO,
|
|
1210
1214
|
ModelType.CLAUDE_2_1,
|
|
1211
1215
|
ModelType.CLAUDE_3_OPUS,
|
|
1212
1216
|
ModelType.CLAUDE_3_SONNET,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: camel-ai
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.65
|
|
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
|
|
@@ -21,7 +21,6 @@ Requires-Dist: psutil<6,>=5.9.8
|
|
|
21
21
|
Requires-Dist: pydantic>=2.10.6
|
|
22
22
|
Requires-Dist: tiktoken<0.8,>=0.7.0
|
|
23
23
|
Provides-Extra: all
|
|
24
|
-
Requires-Dist: accelerate<0.27,>=0.26.0; extra == 'all'
|
|
25
24
|
Requires-Dist: aci-sdk>=1.0.0b1; extra == 'all'
|
|
26
25
|
Requires-Dist: agentops<0.4,>=0.3.21; extra == 'all'
|
|
27
26
|
Requires-Dist: aiosqlite<0.21,>=0.20.0; extra == 'all'
|
|
@@ -53,6 +52,7 @@ Requires-Dist: fastapi>=0.115.11; extra == 'all'
|
|
|
53
52
|
Requires-Dist: ffmpeg-python<0.3,>=0.2.0; extra == 'all'
|
|
54
53
|
Requires-Dist: firecrawl-py<2,>=1.0.0; extra == 'all'
|
|
55
54
|
Requires-Dist: fish-audio-sdk<2025,>=2024.12.5; extra == 'all'
|
|
55
|
+
Requires-Dist: flask>=2.0; extra == 'all'
|
|
56
56
|
Requires-Dist: fpdf>=1.7.2; extra == 'all'
|
|
57
57
|
Requires-Dist: google-api-python-client==2.166.0; extra == 'all'
|
|
58
58
|
Requires-Dist: google-auth-httplib2==0.2.0; extra == 'all'
|
|
@@ -83,9 +83,7 @@ Requires-Dist: newspaper3k<0.3,>=0.2.8; extra == 'all'
|
|
|
83
83
|
Requires-Dist: notion-client<3,>=2.2.1; extra == 'all'
|
|
84
84
|
Requires-Dist: numpy<=2.2,>=1.2; extra == 'all'
|
|
85
85
|
Requires-Dist: openapi-spec-validator<0.8,>=0.7.1; extra == 'all'
|
|
86
|
-
Requires-Dist: opencv-python<5,>=4; extra == 'all'
|
|
87
86
|
Requires-Dist: openpyxl>=3.1.5; extra == 'all'
|
|
88
|
-
Requires-Dist: outlines<0.2,>=0.1.7; extra == 'all'
|
|
89
87
|
Requires-Dist: pandas<2,>=1.5.3; extra == 'all'
|
|
90
88
|
Requires-Dist: pandasai<3,>=2.3.0; extra == 'all'
|
|
91
89
|
Requires-Dist: playwright>=1.50.0; extra == 'all'
|
|
@@ -115,7 +113,6 @@ Requires-Dist: rouge<2,>=1.0.1; extra == 'all'
|
|
|
115
113
|
Requires-Dist: scenedetect>=0.6.5.2; extra == 'all'
|
|
116
114
|
Requires-Dist: scholarly[tor]==1.7.11; extra == 'all'
|
|
117
115
|
Requires-Dist: scrapegraph-py<2,>=1.12.0; extra == 'all'
|
|
118
|
-
Requires-Dist: sentence-transformers<4,>=3.0.1; extra == 'all'
|
|
119
116
|
Requires-Dist: sentencepiece<0.3,>=0.2; extra == 'all'
|
|
120
117
|
Requires-Dist: slack-bolt<2,>=1.20.1; extra == 'all'
|
|
121
118
|
Requires-Dist: slack-sdk<4,>=3.27.2; extra == 'all'
|
|
@@ -125,7 +122,6 @@ Requires-Dist: sympy<2,>=1.13.3; extra == 'all'
|
|
|
125
122
|
Requires-Dist: tabulate>=0.9.0; extra == 'all'
|
|
126
123
|
Requires-Dist: tavily-python<0.6,>=0.5.0; extra == 'all'
|
|
127
124
|
Requires-Dist: textblob<0.18,>=0.17.1; extra == 'all'
|
|
128
|
-
Requires-Dist: torch; extra == 'all'
|
|
129
125
|
Requires-Dist: transformers<5,>=4; extra == 'all'
|
|
130
126
|
Requires-Dist: tree-sitter-python<0.24,>=0.23.6; extra == 'all'
|
|
131
127
|
Requires-Dist: tree-sitter<0.24,>=0.23.2; extra == 'all'
|
|
@@ -162,6 +158,7 @@ Requires-Dist: rouge<2,>=1.0.1; extra == 'data-tools'
|
|
|
162
158
|
Requires-Dist: stripe<12,>=11.3.0; extra == 'data-tools'
|
|
163
159
|
Requires-Dist: textblob<0.18,>=0.17.1; extra == 'data-tools'
|
|
164
160
|
Provides-Extra: dev
|
|
161
|
+
Requires-Dist: flask>=2.0; extra == 'dev'
|
|
165
162
|
Requires-Dist: gradio<4,>=3; extra == 'dev'
|
|
166
163
|
Requires-Dist: mock<6,>=5; extra == 'dev'
|
|
167
164
|
Requires-Dist: mypy<2,>=1.5.1; extra == 'dev'
|
|
@@ -218,13 +215,11 @@ Requires-Dist: tabulate>=0.9.0; extra == 'document-tools'
|
|
|
218
215
|
Requires-Dist: unstructured==0.16.20; extra == 'document-tools'
|
|
219
216
|
Requires-Dist: xls2xlsx>=0.2.0; extra == 'document-tools'
|
|
220
217
|
Provides-Extra: huggingface
|
|
221
|
-
Requires-Dist: accelerate<0.27,>=0.26.0; extra == 'huggingface'
|
|
222
218
|
Requires-Dist: datasets<4,>=3; extra == 'huggingface'
|
|
223
219
|
Requires-Dist: diffusers<0.26,>=0.25.0; extra == 'huggingface'
|
|
224
|
-
Requires-Dist:
|
|
220
|
+
Requires-Dist: huggingface-hub; extra == 'huggingface'
|
|
225
221
|
Requires-Dist: sentencepiece<0.3,>=0.2; extra == 'huggingface'
|
|
226
222
|
Requires-Dist: soundfile<0.14,>=0.13; extra == 'huggingface'
|
|
227
|
-
Requires-Dist: torch; extra == 'huggingface'
|
|
228
223
|
Requires-Dist: transformers<5,>=4; extra == 'huggingface'
|
|
229
224
|
Provides-Extra: media-tools
|
|
230
225
|
Requires-Dist: ffmpeg-python<0.3,>=0.2.0; extra == 'media-tools'
|
|
@@ -261,9 +256,7 @@ Requires-Dist: mcp-simple-arxiv==0.2.2; extra == 'owl'
|
|
|
261
256
|
Requires-Dist: newspaper3k<0.3,>=0.2.8; extra == 'owl'
|
|
262
257
|
Requires-Dist: numpy<=2.2,>=1.2; extra == 'owl'
|
|
263
258
|
Requires-Dist: openapi-spec-validator<0.8,>=0.7.1; extra == 'owl'
|
|
264
|
-
Requires-Dist: opencv-python<5,>=4; extra == 'owl'
|
|
265
259
|
Requires-Dist: openpyxl>=3.1.5; extra == 'owl'
|
|
266
|
-
Requires-Dist: outlines<0.2,>=0.1.7; extra == 'owl'
|
|
267
260
|
Requires-Dist: pandas<2,>=1.5.3; extra == 'owl'
|
|
268
261
|
Requires-Dist: pandasai<3,>=2.3.0; extra == 'owl'
|
|
269
262
|
Requires-Dist: playwright>=1.50.0; extra == 'owl'
|
|
@@ -304,7 +297,6 @@ Requires-Dist: pyobvector>=0.1.18; extra == 'rag'
|
|
|
304
297
|
Requires-Dist: pytidb-experimental==0.0.1.dev4; extra == 'rag'
|
|
305
298
|
Requires-Dist: qdrant-client<2,>=1.9.0; extra == 'rag'
|
|
306
299
|
Requires-Dist: rank-bm25<0.3,>=0.2.2; extra == 'rag'
|
|
307
|
-
Requires-Dist: sentence-transformers<4,>=3.0.1; extra == 'rag'
|
|
308
300
|
Requires-Dist: unstructured==0.16.20; extra == 'rag'
|
|
309
301
|
Requires-Dist: weaviate-client>=4.15.0; extra == 'rag'
|
|
310
302
|
Provides-Extra: research-tools
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
camel/__init__.py,sha256=
|
|
1
|
+
camel/__init__.py,sha256=5D8srkjQBq137gwwiGoNbI_-hTnhdx0GQMP7AmuGfK0,899
|
|
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
|
|
@@ -7,7 +7,7 @@ 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=
|
|
10
|
+
camel/agents/chat_agent.py,sha256=hv5tVY17U8n1v7NskNWWbkdGWzu_4UW0Wpw_tkRT348,73141
|
|
11
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
|
|
@@ -30,6 +30,11 @@ camel/benchmarks/browsecomp.py,sha256=SlsDynCooeEor-GPh7CAoyONv2B_2vo-sYlfIwU_xb
|
|
|
30
30
|
camel/benchmarks/gaia.py,sha256=TKUZr1XsPAVsJHxkpy0HUi64BMz0x3LAUUSRHlG2SxM,16858
|
|
31
31
|
camel/benchmarks/nexus.py,sha256=Yp1UGyaD3_857QKoUTOeSeB4MKqP08znaxa9hzm5gRk,18207
|
|
32
32
|
camel/benchmarks/ragbench.py,sha256=XlBV6YK_eZSH0yscNMX10BFHsVOXDfLqj4b8QHgsjlk,11079
|
|
33
|
+
camel/benchmarks/mock_website/README.md,sha256=Jy3zP_CXW8ZB-qsUyfMZ3Lzg40cbl3WaIFGMHN_tQ1I,5123
|
|
34
|
+
camel/benchmarks/mock_website/mock_web.py,sha256=c-TtPpj3rShJ7czm3BtOWAHQYqFaiRc9NYq8lXmk7II,10392
|
|
35
|
+
camel/benchmarks/mock_website/requirements.txt,sha256=R4NiPKh12E6yzKJg1Zik_wbSWzKW5bEUjUEMqWv9CeU,36
|
|
36
|
+
camel/benchmarks/mock_website/task.json,sha256=5EeykH_94xG9jTc2iC_PBIxIw6ML1m8l5FMQCiQnttw,3354
|
|
37
|
+
camel/benchmarks/mock_website/shopping_mall/app.py,sha256=FCitLbRvEM5DytoiRcUO0vA1fpMSN3y1HZTUqX900Lk,15454
|
|
33
38
|
camel/bots/__init__.py,sha256=6JRnSmUdnoZra20BJMqqrUrVfYSEbW9NyUksYmu6nwY,1174
|
|
34
39
|
camel/bots/telegram_bot.py,sha256=z0B2O14-GTKGVX5e6-Q85zMp3eISE_hH-KqxlGOFJtM,2595
|
|
35
40
|
camel/bots/discord/__init__.py,sha256=4ycOm2pMrQ7vQdjB80a5hz7TyiJGnSeHifoxkl8lyyQ,1027
|
|
@@ -101,9 +106,9 @@ camel/datahubs/models.py,sha256=tGb9OP_aomIhnwc0VapJjTg9PmyV_QCp5to9sABXF0Y,978
|
|
|
101
106
|
camel/datasets/__init__.py,sha256=WlBpnzL8MejnJdofpJQBYv9KCyu1AZgm0-sTqDht6Aw,1051
|
|
102
107
|
camel/datasets/base_generator.py,sha256=WJEJTT00J3jv1LHjQ5wPBQSfxX0OkT1tc3Uu4FgQwSI,10735
|
|
103
108
|
camel/datasets/few_shot_generator.py,sha256=HCXaJ7b5-W72deC662TKiNUtzzHKJ60dFyZ9W_2Hrsc,10867
|
|
104
|
-
camel/datasets/models.py,sha256=
|
|
109
|
+
camel/datasets/models.py,sha256=xATYBAZ3lvj01Kf3wvA_Wq7-AAapFyuD2PWJsaatYMc,2236
|
|
105
110
|
camel/datasets/self_instruct_generator.py,sha256=9FK-S7N7e-PR5rABj59BCNmUZCd8fS72La612FK0AEM,15837
|
|
106
|
-
camel/datasets/static_dataset.py,sha256=
|
|
111
|
+
camel/datasets/static_dataset.py,sha256=3ls4B0D_V2-SSLj3UvCyF8CblRRwarPIwF6l2GiuXLY,20221
|
|
107
112
|
camel/embeddings/__init__.py,sha256=nLFckLBkHXb6HolqPcIssQYO89di0KOeinT_t0S8V9g,1473
|
|
108
113
|
camel/embeddings/azure_embedding.py,sha256=ClMu3ko1PnkNvWPSWILwCNUnxhzUL7UJHv2sB-OptuE,4233
|
|
109
114
|
camel/embeddings/base.py,sha256=mxqFkWh2AfbxuVKPOqVx16fCznmuSh9QXGjaEeZHvoY,2190
|
|
@@ -193,7 +198,7 @@ camel/models/nvidia_model.py,sha256=XkHBZJ94nkYB1j9AgyPsorYfvgO1Ys6S6_z3Qh3vrhM,
|
|
|
193
198
|
camel/models/ollama_model.py,sha256=sc49XZT9KQeUWjvLqXn17kKa1jgAyAHiy2MHiUjQrzw,4416
|
|
194
199
|
camel/models/openai_audio_models.py,sha256=BSixkXlc8xirQLl2qCla-g6_y9wDLnMZVHukHrhzw98,13344
|
|
195
200
|
camel/models/openai_compatible_model.py,sha256=8sibQN-Mp9GsdCiPW3siHTc9s4S1TaebOexDacK3SGU,12687
|
|
196
|
-
camel/models/openai_model.py,sha256=
|
|
201
|
+
camel/models/openai_model.py,sha256=e1BaCqicJ9tRvUS9OA6c8cvhhU4OesJe5Nt4AGpW4hA,15262
|
|
197
202
|
camel/models/openrouter_model.py,sha256=WAZxAtl_lVMMuc0HGjWHmfs3K0zt7G0dXM55TIsZ4d0,3866
|
|
198
203
|
camel/models/ppio_model.py,sha256=Fn7TTaKkRfg5bIRIxbBSlvAXKLTcJf71iJdgQmSuBSk,3891
|
|
199
204
|
camel/models/qwen_model.py,sha256=J9DgkRA9N0FDEq40lQn30BCiw1WxYlQK-5bSeo19E_g,10285
|
|
@@ -264,12 +269,12 @@ camel/societies/role_playing.py,sha256=1TsQbGYmN91BeQ0DGM5PpSJ9TMbn1F3maJNuv4fQ5
|
|
|
264
269
|
camel/societies/workforce/__init__.py,sha256=bkTI-PE-MSK9AQ2V2gR6cR2WY-R7Jqy_NmXRtAoqo8o,920
|
|
265
270
|
camel/societies/workforce/base.py,sha256=z2DmbTP5LL5-aCAAqglznQqCLfPmnyM5zD3w6jjtsb8,2175
|
|
266
271
|
camel/societies/workforce/prompts.py,sha256=4OGp-1-XFYIZ8ZERubSsG-hwXti8fhjtwc3n5-WEgsA,7821
|
|
267
|
-
camel/societies/workforce/role_playing_worker.py,sha256=
|
|
268
|
-
camel/societies/workforce/single_agent_worker.py,sha256=
|
|
272
|
+
camel/societies/workforce/role_playing_worker.py,sha256=Bwzcs1qN4mEQNWHDz5KHnPkRzsnNdSFGQ7HVug6T_og,7802
|
|
273
|
+
camel/societies/workforce/single_agent_worker.py,sha256=Yzcp8HRXZJSyGpUdcLJe13nE4VO310AXZ5RVFv2ALT8,4758
|
|
269
274
|
camel/societies/workforce/task_channel.py,sha256=9t5hoinfGYnbRavX4kx34Jk1FOy05SnJZYbNzb5M-CQ,7140
|
|
270
|
-
camel/societies/workforce/utils.py,sha256=
|
|
275
|
+
camel/societies/workforce/utils.py,sha256=ZGcpwGzvUnskVu3zVm9IHBPsbLjMJElJ8WHMJ0MTnpw,3983
|
|
271
276
|
camel/societies/workforce/worker.py,sha256=xdUWBW8Qifhhrh4jdK5S_q4LiSEL4NxKuDZN1fgQESA,4135
|
|
272
|
-
camel/societies/workforce/workforce.py,sha256=
|
|
277
|
+
camel/societies/workforce/workforce.py,sha256=AdtkDMV66Syaht86Z3GIZmk-vfn2f2OuJg1iDIih0z8,41139
|
|
273
278
|
camel/storages/__init__.py,sha256=bFpvvAS2QyZoIr-tnwhMWsZRL411kIRq6IMUHcI7KHs,1989
|
|
274
279
|
camel/storages/graph_storages/__init__.py,sha256=G29BNn651C0WTOpjCl4QnVM-4B9tcNh8DdmsCiONH8Y,948
|
|
275
280
|
camel/storages/graph_storages/base.py,sha256=uSe9jWuLudfm5jtfo6E-L_kNzITwK1_Ef-6L4HWw-JM,2852
|
|
@@ -296,7 +301,7 @@ camel/storages/vectordb_storages/qdrant.py,sha256=a_cT0buSCHQ2CPZy852-mdvMDwy5zo
|
|
|
296
301
|
camel/storages/vectordb_storages/tidb.py,sha256=w83bxgKgso43MtHqlpf2EMSpn1_Nz6ZZtY4fPw_-vgs,11192
|
|
297
302
|
camel/storages/vectordb_storages/weaviate.py,sha256=wDUE4KvfmOl3DqHFU4uF0VKbHu-q9vKhZDe8FZ6QXsk,27888
|
|
298
303
|
camel/tasks/__init__.py,sha256=MuHwkw5GRQc8NOCzj8tjtBrr2Xg9KrcKp-ed_-2ZGIM,906
|
|
299
|
-
camel/tasks/task.py,sha256=
|
|
304
|
+
camel/tasks/task.py,sha256=W0c4mnqvZLLnA3RKE4Klj0vSXJMgc2NFCrqo4nCq99s,13980
|
|
300
305
|
camel/tasks/task_prompt.py,sha256=3KZmKYKUPcTKe8EAZOZBN3G05JHRVt7oHY9ORzLVu1g,2150
|
|
301
306
|
camel/terminators/__init__.py,sha256=t8uqrkUnXEOYMXQDgaBkMFJ0EXFKI0kmx4cUimli3Ls,991
|
|
302
307
|
camel/terminators/base.py,sha256=xmJzERX7GdSXcxZjAHHODa0rOxRChMSRboDCNHWSscs,1511
|
|
@@ -306,11 +311,11 @@ camel/toolkits/__init__.py,sha256=IZYUYPI8_xqOmPnq1fvw_GlpNKgED70ReO7befWzUFA,49
|
|
|
306
311
|
camel/toolkits/aci_toolkit.py,sha256=jhXMQggG22hd3dXdT3iJm7qWTH3KJC-TUVk1txoNWrM,16079
|
|
307
312
|
camel/toolkits/arxiv_toolkit.py,sha256=Bs2-K1yfmqhEhHoQ0j00KoI8LpOd8M3ApXcvI_-ApVw,6303
|
|
308
313
|
camel/toolkits/ask_news_toolkit.py,sha256=WfWaqwEo1Apbil3-Rb5y65Ws43NU4rAFWZu5VHe4los,23448
|
|
309
|
-
camel/toolkits/async_browser_toolkit.py,sha256=
|
|
314
|
+
camel/toolkits/async_browser_toolkit.py,sha256=dHXV8uCDetLKN7no5otyP3hHDnQIRhGY0msJRJrFbIY,50436
|
|
310
315
|
camel/toolkits/audio_analysis_toolkit.py,sha256=dnDtQJbztVBwBpamSyCfigPw2GBnDAfi3fOPgql4Y50,8941
|
|
311
316
|
camel/toolkits/base.py,sha256=7vW2Je9HZqsA1yKwH3aXEGAsjRN1cqeCnsIWfHp6yfE,2386
|
|
312
317
|
camel/toolkits/bohrium_toolkit.py,sha256=453t-m0h0IGjurG6tCHUejGzfRAN2SAkhIoY8V-WJpw,11396
|
|
313
|
-
camel/toolkits/browser_toolkit.py,sha256=
|
|
318
|
+
camel/toolkits/browser_toolkit.py,sha256=Ntn_LmCrhqqIBWq9HtiIKw-M0cL5ebn74Ej1GBoZiC8,44400
|
|
314
319
|
camel/toolkits/browser_toolkit_commons.py,sha256=uuc1V5tN3YJmTSe6NHAVJqwsL4iYD7IiSZWxPLYW67A,22196
|
|
315
320
|
camel/toolkits/code_execution.py,sha256=wUbHuGT8VZTBVjCB-IMYRRnDiW4Gw5Ahu_ccqTVzQ7Q,5554
|
|
316
321
|
camel/toolkits/dalle_toolkit.py,sha256=GSnV7reQsVmhMi9sbQy1Ks_5Vs57Dlir_AbT2PPCZwo,6153
|
|
@@ -318,7 +323,7 @@ camel/toolkits/dappier_toolkit.py,sha256=ewhXeeUj7e4DiTzuWDA-gHGhrLdyoZ4l9pbijvF
|
|
|
318
323
|
camel/toolkits/data_commons_toolkit.py,sha256=aHZUSL1ACpnYGaf1rE2csVKTmXTmN8lMGRUBYhZ_YEk,14168
|
|
319
324
|
camel/toolkits/excel_toolkit.py,sha256=DSjBXl24_LrJubGFFmB_vqliKzzWTbT1TH309YQVUO8,6653
|
|
320
325
|
camel/toolkits/file_write_toolkit.py,sha256=3JF_6fFXXQUlZv3VjkXVXDOodyGHHev0GJgSyZpkEH8,16483
|
|
321
|
-
camel/toolkits/function_tool.py,sha256=
|
|
326
|
+
camel/toolkits/function_tool.py,sha256=aMXDnPlMPJSoItED8y2lb2g2FasOXit9mkfbLm9-hEk,30367
|
|
322
327
|
camel/toolkits/github_toolkit.py,sha256=Xq4KynmvIW_2924BJBS98I9TaF0ugmN62Y74kcNv_us,13102
|
|
323
328
|
camel/toolkits/google_calendar_toolkit.py,sha256=E-sdgdbtNBs_CXbhht9t1dsVr4DsTr5NguHkx4fvSmc,15410
|
|
324
329
|
camel/toolkits/google_maps_toolkit.py,sha256=WTnkURpGri9KcY5OwV7AJJHOzmpu5RNmYE1QCVqvwWM,12023
|
|
@@ -339,7 +344,7 @@ camel/toolkits/open_api_toolkit.py,sha256=Venfq8JwTMQfzRzzB7AYmYUMEX35hW0BjIv_oz
|
|
|
339
344
|
camel/toolkits/openai_agent_toolkit.py,sha256=hT2ancdQigngAiY1LNnGJzZeiBDHUxrRGv6BdZTJizc,4696
|
|
340
345
|
camel/toolkits/openbb_toolkit.py,sha256=8yBZL9E2iSgskosBQhD3pTP56oV6gerWpFjIJc_2UMo,28935
|
|
341
346
|
camel/toolkits/page_script.js,sha256=mXepZPnQNVLp_Wgb64lv7DMQIJYl_XIHJHLVt1OFZO4,13146
|
|
342
|
-
camel/toolkits/playwright_mcp_toolkit.py,sha256=
|
|
347
|
+
camel/toolkits/playwright_mcp_toolkit.py,sha256=QXoWA13Z-PXzL-TQ61gSTzgpzyoPdng0Rjm14lR445w,2988
|
|
343
348
|
camel/toolkits/pptx_toolkit.py,sha256=qQICd53hzdqi9VUa8Ps547TfPotSYLPIxX100cmBFLI,28563
|
|
344
349
|
camel/toolkits/pubmed_toolkit.py,sha256=VGl8KeyWi7pjb2kEhFBLmpBlP9ezv8JyWRHtEVTQ6nQ,12227
|
|
345
350
|
camel/toolkits/pulse_mcp_search_toolkit.py,sha256=uLUpm19uC_4xLJow0gGVS9f-5T5EW2iRAXdJ4nqJG-A,4783
|
|
@@ -352,6 +357,7 @@ camel/toolkits/semantic_scholar_toolkit.py,sha256=Rh7eA_YPxV5pvPIzhjjvpr3vtlaCni
|
|
|
352
357
|
camel/toolkits/slack_toolkit.py,sha256=Nb3w-TbUmnUWEvHE9Hbf_wkpSepm_zKQj7m19UyoFio,11194
|
|
353
358
|
camel/toolkits/stripe_toolkit.py,sha256=07swo5znGTnorafC1uYLKB4NRcJIOPOx19J7tkpLYWk,10102
|
|
354
359
|
camel/toolkits/sympy_toolkit.py,sha256=dkzGp7C7Oy-qP1rVziEk_ZOPRb37d5LoI7JKCLiTEo4,33758
|
|
360
|
+
camel/toolkits/task_planning_toolkit.py,sha256=rsFafEc6J0UOlHFYVyzC0K5PztcFsfj5jgIG6Aawnaw,4858
|
|
355
361
|
camel/toolkits/terminal_toolkit.py,sha256=gupuTvNkwnFzcFwDB_irSJ9-dXRr8yEAsYq5ChEkkHg,37230
|
|
356
362
|
camel/toolkits/thinking_toolkit.py,sha256=NyA6rDFG-WbCNt7NFODBTpqOIDtP6he6GhnZpPlA2To,8001
|
|
357
363
|
camel/toolkits/twitter_toolkit.py,sha256=Px4N8aUxUzy01LhGSWkdrC2JgwKkrY3cvxgMeJ2XYfU,15939
|
|
@@ -387,7 +393,7 @@ camel/toolkits/open_api_specs/web_scraper/openapi.yaml,sha256=u_WalQ01e8W1D27VnZ
|
|
|
387
393
|
camel/toolkits/open_api_specs/web_scraper/paths/__init__.py,sha256=OKCZrQCDwaWtXIN_2rA9FSqEvgpQRieRoHh7Ek6N16A,702
|
|
388
394
|
camel/toolkits/open_api_specs/web_scraper/paths/scraper.py,sha256=aWy1_ppV4NVVEZfnbN3tu9XA9yAPAC9bRStJ5JuXMRU,1117
|
|
389
395
|
camel/types/__init__.py,sha256=pFTg3CWGSCfwFdoxPDTf4dKV8DdJS1x-bBPuEOmtdf0,2549
|
|
390
|
-
camel/types/enums.py,sha256=
|
|
396
|
+
camel/types/enums.py,sha256=GzJAJmsB--rk_LFwrNOWbvXigk2jwnuoh7o8oh5k4Js,61673
|
|
391
397
|
camel/types/mcp_registries.py,sha256=dl4LgYtSaUhsqAKpz28k_SA9La11qxqBvDLaEuyzrFE,4971
|
|
392
398
|
camel/types/openai_types.py,sha256=8ZFzLe-zGmKNPfuVZFzxlxAX98lGf18gtrPhOgMmzus,2104
|
|
393
399
|
camel/types/unified_model_type.py,sha256=5vHZUnDFkdiWvLXY3CMJnLdlLi5r0-zlvSdBcBXl2RQ,5486
|
|
@@ -414,7 +420,7 @@ camel/verifiers/math_verifier.py,sha256=tA1D4S0sm8nsWISevxSN0hvSVtIUpqmJhzqfbuMo
|
|
|
414
420
|
camel/verifiers/models.py,sha256=GdxYPr7UxNrR1577yW4kyroRcLGfd-H1GXgv8potDWU,2471
|
|
415
421
|
camel/verifiers/physics_verifier.py,sha256=c1grrRddcrVN7szkxhv2QirwY9viIRSITWeWFF5HmLs,30187
|
|
416
422
|
camel/verifiers/python_verifier.py,sha256=ogTz77wODfEcDN4tMVtiSkRQyoiZbHPY2fKybn59lHw,20558
|
|
417
|
-
camel_ai-0.2.
|
|
418
|
-
camel_ai-0.2.
|
|
419
|
-
camel_ai-0.2.
|
|
420
|
-
camel_ai-0.2.
|
|
423
|
+
camel_ai-0.2.65.dist-info/METADATA,sha256=tB8PH0WUEibP9l_oa9B9s0g09RC_YtnGaIZWVRr-qko,44783
|
|
424
|
+
camel_ai-0.2.65.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
425
|
+
camel_ai-0.2.65.dist-info/licenses/LICENSE,sha256=id0nB2my5kG0xXeimIu5zZrbHLS6EQvxvkKkzIHaT2k,11343
|
|
426
|
+
camel_ai-0.2.65.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|