camel-ai 0.2.52__py3-none-any.whl → 0.2.54__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/__init__.py +2 -0
- camel/agents/chat_agent.py +20 -0
- camel/agents/mcp_agent.py +233 -0
- camel/embeddings/__init__.py +2 -0
- camel/embeddings/gemini_embedding.py +115 -0
- camel/embeddings/openai_embedding.py +11 -11
- camel/embeddings/together_embedding.py +7 -7
- camel/models/mistral_model.py +1 -1
- camel/models/model_factory.py +6 -0
- camel/responses/agent_responses.py +1 -4
- camel/societies/role_playing.py +12 -0
- camel/toolkits/__init__.py +2 -0
- camel/toolkits/aci_toolkit.py +456 -0
- camel/toolkits/function_tool.py +5 -3
- camel/toolkits/mcp_toolkit.py +44 -1
- camel/types/__init__.py +2 -0
- camel/types/enums.py +28 -0
- camel/utils/__init__.py +2 -0
- camel/utils/commons.py +63 -0
- camel/utils/mcp.py +63 -0
- {camel_ai-0.2.52.dist-info → camel_ai-0.2.54.dist-info}/METADATA +6 -1
- {camel_ai-0.2.52.dist-info → camel_ai-0.2.54.dist-info}/RECORD +25 -22
- {camel_ai-0.2.52.dist-info → camel_ai-0.2.54.dist-info}/WHEEL +0 -0
- {camel_ai-0.2.52.dist-info → camel_ai-0.2.54.dist-info}/licenses/LICENSE +0 -0
camel/utils/mcp.py
CHANGED
|
@@ -17,6 +17,42 @@ from typing import Any, Callable, Optional
|
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
class MCPServer:
|
|
20
|
+
r"""Decorator class for registering functions of a class as tools in an MCP
|
|
21
|
+
(Model Context Protocol) server.
|
|
22
|
+
|
|
23
|
+
This class is typically used to wrap a toolkit or service class and
|
|
24
|
+
automatically register specified methods (or methods derived from
|
|
25
|
+
`BaseToolkit`) with a FastMCP server.
|
|
26
|
+
|
|
27
|
+
Args:
|
|
28
|
+
function_names (Optional[list[str]]): A list of method names to expose
|
|
29
|
+
via the MCP server. If not provided and the class is a subclass of
|
|
30
|
+
`BaseToolkit`, method names will be inferred from the tools
|
|
31
|
+
returned by `get_tools()`.
|
|
32
|
+
server_name (Optional[str]): A name for the MCP server. If not
|
|
33
|
+
provided, the class name of the decorated object is used.
|
|
34
|
+
|
|
35
|
+
Example:
|
|
36
|
+
```
|
|
37
|
+
@MCPServer(function_names=["run", "status"])
|
|
38
|
+
class MyTool:
|
|
39
|
+
def run(self): ...
|
|
40
|
+
def status(self): ...
|
|
41
|
+
```
|
|
42
|
+
Or, with a class inheriting from BaseToolkit (no need to specify
|
|
43
|
+
`function_names`):
|
|
44
|
+
```
|
|
45
|
+
@MCPServer()
|
|
46
|
+
class MyToolkit(BaseToolkit):
|
|
47
|
+
...
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
Raises:
|
|
51
|
+
ValueError: If no function names are provided and the class does not
|
|
52
|
+
inherit from BaseToolkit, or if any specified method is not found
|
|
53
|
+
or not callable.
|
|
54
|
+
"""
|
|
55
|
+
|
|
20
56
|
def __init__(
|
|
21
57
|
self,
|
|
22
58
|
function_names: Optional[list[str]] = None,
|
|
@@ -26,6 +62,19 @@ class MCPServer:
|
|
|
26
62
|
self.server_name = server_name
|
|
27
63
|
|
|
28
64
|
def make_wrapper(self, func: Callable[..., Any]) -> Callable[..., Any]:
|
|
65
|
+
r"""Wraps a function (sync or async) to preserve its signature and
|
|
66
|
+
metadata.
|
|
67
|
+
|
|
68
|
+
This is used to ensure the MCP server can correctly call and introspect
|
|
69
|
+
the method.
|
|
70
|
+
|
|
71
|
+
Args:
|
|
72
|
+
func (Callable[..., Any]): The function to wrap.
|
|
73
|
+
|
|
74
|
+
Returns:
|
|
75
|
+
Callable[..., Any]: The wrapped function, with preserved signature
|
|
76
|
+
and async support.
|
|
77
|
+
"""
|
|
29
78
|
if inspect.iscoroutinefunction(func):
|
|
30
79
|
|
|
31
80
|
@functools.wraps(func)
|
|
@@ -41,6 +90,20 @@ class MCPServer:
|
|
|
41
90
|
return wrapper
|
|
42
91
|
|
|
43
92
|
def __call__(self, cls):
|
|
93
|
+
r"""Decorates a class by injecting an MCP server instance and
|
|
94
|
+
registering specified methods.
|
|
95
|
+
|
|
96
|
+
Args:
|
|
97
|
+
cls (type): The class being decorated.
|
|
98
|
+
|
|
99
|
+
Returns:
|
|
100
|
+
type: The modified class with MCP integration.
|
|
101
|
+
|
|
102
|
+
Raises:
|
|
103
|
+
ValueError: If function names are missing and the class is not a
|
|
104
|
+
`BaseToolkit` subclass,
|
|
105
|
+
or if a specified method cannot be found or is not callable.
|
|
106
|
+
"""
|
|
44
107
|
from mcp.server.fastmcp import FastMCP
|
|
45
108
|
|
|
46
109
|
from camel.toolkits.base import BaseToolkit
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: camel-ai
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.54
|
|
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,6 +21,7 @@ Requires-Dist: pydantic>=2.10.6
|
|
|
21
21
|
Requires-Dist: tiktoken<0.8,>=0.7.0
|
|
22
22
|
Provides-Extra: all
|
|
23
23
|
Requires-Dist: accelerate<0.27,>=0.26.0; extra == 'all'
|
|
24
|
+
Requires-Dist: aci-sdk>=1.0.0b1; extra == 'all'
|
|
24
25
|
Requires-Dist: agentops<0.4,>=0.3.21; extra == 'all'
|
|
25
26
|
Requires-Dist: aiosqlite<0.21,>=0.20.0; extra == 'all'
|
|
26
27
|
Requires-Dist: anthropic<0.50.0,>=0.47.0; extra == 'all'
|
|
@@ -54,6 +55,7 @@ Requires-Dist: google-api-python-client==2.166.0; extra == 'all'
|
|
|
54
55
|
Requires-Dist: google-auth-httplib2==0.2.0; extra == 'all'
|
|
55
56
|
Requires-Dist: google-auth-oauthlib==1.2.1; extra == 'all'
|
|
56
57
|
Requires-Dist: google-cloud-storage<3,>=2.18.0; extra == 'all'
|
|
58
|
+
Requires-Dist: google-genai>=1.13.0; extra == 'all'
|
|
57
59
|
Requires-Dist: googlemaps<5,>=4.10.0; extra == 'all'
|
|
58
60
|
Requires-Dist: gradio<4,>=3; extra == 'all'
|
|
59
61
|
Requires-Dist: html2text>=2024.2.26; extra == 'all'
|
|
@@ -170,6 +172,7 @@ Requires-Dist: types-setuptools<70,>=69.2.0; extra == 'dev'
|
|
|
170
172
|
Requires-Dist: types-tqdm<5,>=4.66.0; extra == 'dev'
|
|
171
173
|
Requires-Dist: uv==0.6.5; extra == 'dev'
|
|
172
174
|
Provides-Extra: dev-tools
|
|
175
|
+
Requires-Dist: aci-sdk>=1.0.0b1; extra == 'dev-tools'
|
|
173
176
|
Requires-Dist: agentops<0.4,>=0.3.21; extra == 'dev-tools'
|
|
174
177
|
Requires-Dist: daytona-sdk==0.14.0; extra == 'dev-tools'
|
|
175
178
|
Requires-Dist: docker<8,>=7.1.0; extra == 'dev-tools'
|
|
@@ -227,6 +230,7 @@ Requires-Dist: litellm<2,>=1.38.1; extra == 'model-platforms'
|
|
|
227
230
|
Requires-Dist: mistralai<2,>=1.1.0; extra == 'model-platforms'
|
|
228
231
|
Requires-Dist: reka-api<4,>=3.0.8; extra == 'model-platforms'
|
|
229
232
|
Provides-Extra: owl
|
|
233
|
+
Requires-Dist: aci-sdk>=1.0.0b1; extra == 'owl'
|
|
230
234
|
Requires-Dist: anthropic<0.50.0,>=0.47.0; extra == 'owl'
|
|
231
235
|
Requires-Dist: beautifulsoup4<5,>=4; extra == 'owl'
|
|
232
236
|
Requires-Dist: chunkr-ai>=0.0.41; extra == 'owl'
|
|
@@ -275,6 +279,7 @@ Requires-Dist: yt-dlp<2025,>=2024.11.4; extra == 'owl'
|
|
|
275
279
|
Provides-Extra: rag
|
|
276
280
|
Requires-Dist: cohere<6,>=5.11.0; extra == 'rag'
|
|
277
281
|
Requires-Dist: crawl4ai>=0.3.745; extra == 'rag'
|
|
282
|
+
Requires-Dist: google-genai>=1.13.0; extra == 'rag'
|
|
278
283
|
Requires-Dist: nebula3-python==3.8.2; extra == 'rag'
|
|
279
284
|
Requires-Dist: neo4j<6,>=5.18.0; extra == 'rag'
|
|
280
285
|
Requires-Dist: numpy~=1.26; extra == 'rag'
|
|
@@ -1,17 +1,18 @@
|
|
|
1
|
-
camel/__init__.py,sha256=
|
|
1
|
+
camel/__init__.py,sha256=6mC_LzkYTRDhA5zSGpvdPlBiTCWzoJKYiy2eQWFw4HU,912
|
|
2
2
|
camel/generators.py,sha256=JRqj9_m1PF4qT6UtybzTQ-KBT9MJQt18OAAYvQ_fr2o,13844
|
|
3
3
|
camel/human.py,sha256=9X09UmxI2JqQnhrFfnZ3B9EzFmVfdSWQcjLWTIXKXe0,4962
|
|
4
4
|
camel/logger.py,sha256=rZVeOVYuQ9RYJ5Tqyv0usqy0g4zaVEq4qSfZ9nd2640,5755
|
|
5
5
|
camel/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
-
camel/agents/__init__.py,sha256=
|
|
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=
|
|
10
|
+
camel/agents/chat_agent.py,sha256=DTP9-tFryDu4ezbrVUS-H671ccBXZa4Tz7KxARawtyw,58962
|
|
11
11
|
camel/agents/critic_agent.py,sha256=qFVlHlQo0CVgmPWfWYLT8_oP_KyzCLFsQw_nN_vu5Bs,7487
|
|
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
|
|
15
|
+
camel/agents/mcp_agent.py,sha256=W8-om91DjGbcWyjuvns6st8h6T2HGf06tLg7OLzAUf0,7838
|
|
15
16
|
camel/agents/multi_hop_generator_agent.py,sha256=aYsZNsEFHxIq8_wDN8lZRkvRbfhlOYGBKezWr87y8Bs,4325
|
|
16
17
|
camel/agents/programmed_agent_instruction.py,sha256=99fLe41che3X6wPpNPJXRwl4If6EoQqQVWIoT3DKE1s,7124
|
|
17
18
|
camel/agents/repo_agent.py,sha256=ZzZ9zvh0vgdJv1KNY3GEaEPDdDxxXrjUZxjjHjVEWtE,22187
|
|
@@ -101,15 +102,16 @@ camel/datasets/few_shot_generator.py,sha256=HCXaJ7b5-W72deC662TKiNUtzzHKJ60dFyZ9
|
|
|
101
102
|
camel/datasets/models.py,sha256=0RDZfGT-x2MGaJg6qMufiY5cO-V7Lg0ckDSMYjCUQpo,2230
|
|
102
103
|
camel/datasets/self_instruct_generator.py,sha256=9FK-S7N7e-PR5rABj59BCNmUZCd8fS72La612FK0AEM,15837
|
|
103
104
|
camel/datasets/static_dataset.py,sha256=jPFwR0Kk6LmPFGKFm8SGhZvdee9293gGJBoqucCHdE0,14272
|
|
104
|
-
camel/embeddings/__init__.py,sha256=
|
|
105
|
+
camel/embeddings/__init__.py,sha256=nLFckLBkHXb6HolqPcIssQYO89di0KOeinT_t0S8V9g,1473
|
|
105
106
|
camel/embeddings/azure_embedding.py,sha256=ClMu3ko1PnkNvWPSWILwCNUnxhzUL7UJHv2sB-OptuE,4233
|
|
106
107
|
camel/embeddings/base.py,sha256=mxqFkWh2AfbxuVKPOqVx16fCznmuSh9QXGjaEeZHvoY,2190
|
|
108
|
+
camel/embeddings/gemini_embedding.py,sha256=5g8QvIPZuE1ZsLwr1VGRyQYYaiBmOpN3bHFq9TksDAo,4056
|
|
107
109
|
camel/embeddings/jina_embedding.py,sha256=6aakojtsJ6KLp3nqYLhEOtoFm2shoXlRzxb1YYN_uwo,6623
|
|
108
110
|
camel/embeddings/mistral_embedding.py,sha256=JaHjcHrc4U216QfGA4NxOSLrgYB9lM19VR2mIMAkuvk,3287
|
|
109
111
|
camel/embeddings/openai_compatible_embedding.py,sha256=3hzMC-OiwP-xZnzKXTyYwkuuqgtWdiEfDaVNGf5FyKI,3471
|
|
110
|
-
camel/embeddings/openai_embedding.py,sha256=
|
|
112
|
+
camel/embeddings/openai_embedding.py,sha256=zix0O8KdbiVarol4hktKi-0I060epsnj8qAE4kwx3nc,3952
|
|
111
113
|
camel/embeddings/sentence_transformers_embeddings.py,sha256=E7a8lN50CtDBsFO-NOFQ6qfCnbH41O0_kTTg7dG3sOo,2724
|
|
112
|
-
camel/embeddings/together_embedding.py,sha256=
|
|
114
|
+
camel/embeddings/together_embedding.py,sha256=Nl7uyk3pxyI4-l147LEkc1zj5O-H17RbJtb8pYb2K7Q,4765
|
|
113
115
|
camel/embeddings/vlm_embedding.py,sha256=HZFdcz1YzkFPzMj45_jaCVmDQJyccoXN561aLWlrYmo,5497
|
|
114
116
|
camel/environments/__init__.py,sha256=fwk74TJO5OaOhL5Pmiz6s6h77B_-DGav5m_HbfS1oUQ,1053
|
|
115
117
|
camel/environments/models.py,sha256=jVcCyU7xObKoWPnkshmPqyyKi3AOiMVVtUZA-tWEYUU,4194
|
|
@@ -174,8 +176,8 @@ camel/models/groq_model.py,sha256=596VqRJ_yxv9Jz3sG7UVXVkIjZI1nX7zQAD709m4uig,37
|
|
|
174
176
|
camel/models/internlm_model.py,sha256=l7WjJ7JISCCqkezhEXzmjj_Mvhqhxxhsg4NuenP7w9w,4374
|
|
175
177
|
camel/models/litellm_model.py,sha256=rlSt3EnBAAYyoIxq0_XTuRmRnc4RWvD2Z14yIrI_7uw,5942
|
|
176
178
|
camel/models/lmstudio_model.py,sha256=_Lnv0e2ichks_MrNJGNIawEtGtP7T_xX8v0bFNNeWes,3641
|
|
177
|
-
camel/models/mistral_model.py,sha256=
|
|
178
|
-
camel/models/model_factory.py,sha256=
|
|
179
|
+
camel/models/mistral_model.py,sha256=lsvfxhwp9aDGRpGKLt6Mwtnlw27jFp8AbpGw0UTHJds,12186
|
|
180
|
+
camel/models/model_factory.py,sha256=dS5K44jAa1atbicYwKfNFeSVGlgR97rNTQ74Gm_GMOE,12700
|
|
179
181
|
camel/models/model_manager.py,sha256=gfpL-WUxuTXgNeCkIVg8Y0zRvxMqRLX8JGt0XEAPQ8Y,9214
|
|
180
182
|
camel/models/modelscope_model.py,sha256=aI7i50DSIE6MO2U_WvULan6Sk4b5d7iZoEHQaARo4FA,10487
|
|
181
183
|
camel/models/moonshot_model.py,sha256=yeD2jrfQpFaWJHVe1s1KrI6aHQVzKRcBDt9C2Qo4nU8,4305
|
|
@@ -227,7 +229,7 @@ camel/prompts/task_prompt_template.py,sha256=clqOHGwd92nWEp1zNMucuJcftRO-p28l48n
|
|
|
227
229
|
camel/prompts/translation.py,sha256=xvQHiCv-50G92oIb_rv-xZSzX7OnhAZR2cwbWuQDKZc,1896
|
|
228
230
|
camel/prompts/video_description_prompt.py,sha256=t-5B_VlTMEjEoRgziixcZLfxcZR2xu7ttZR4kCtTifk,1554
|
|
229
231
|
camel/responses/__init__.py,sha256=8QQ0T0NH16825WYk6S3dCSWsz8hqLEfdPtVHxwNsCRk,789
|
|
230
|
-
camel/responses/agent_responses.py,sha256=
|
|
232
|
+
camel/responses/agent_responses.py,sha256=bDK6if8u-CNBk91yAIHKFcppdFYkihRyJXgXVdg2UcA,1645
|
|
231
233
|
camel/retrievers/__init__.py,sha256=MkuWD18uPLg78KPugd8ER8FOE4w0GC6UuHyFaqGhu6Y,1140
|
|
232
234
|
camel/retrievers/auto_retriever.py,sha256=AkPooLvYlWQQaLfMj4W21FIHdVWK7lbYcm2CeX--ZPg,10439
|
|
233
235
|
camel/retrievers/base.py,sha256=Sx66VHuNOJE31u59DX5XBwota4XqubeVm0feqLV7i28,2640
|
|
@@ -253,7 +255,7 @@ camel/schemas/openai_converter.py,sha256=SEnYsYcboZgVmjcC1YP5xke3c0MYPESPRmYQWsD
|
|
|
253
255
|
camel/schemas/outlines_converter.py,sha256=OYKPR1fNyrYs9eh5RiXEAccMbnRc9WTwSVJYbh9HkKE,8738
|
|
254
256
|
camel/societies/__init__.py,sha256=NOHjtlsY-gV9UCF2xXgcbG-xXyuigmbwbpLpNsDgEJ4,826
|
|
255
257
|
camel/societies/babyagi_playing.py,sha256=KbTdpHfZ2V8AripVck0bNTOyF-RSaMPCRARz3DvzWfQ,11855
|
|
256
|
-
camel/societies/role_playing.py,sha256=
|
|
258
|
+
camel/societies/role_playing.py,sha256=e4c-mRj---VmdNMD1M9GDBCtAe_w2HWYFYR8aeIXws4,29553
|
|
257
259
|
camel/societies/workforce/__init__.py,sha256=bkTI-PE-MSK9AQ2V2gR6cR2WY-R7Jqy_NmXRtAoqo8o,920
|
|
258
260
|
camel/societies/workforce/base.py,sha256=4uSTmBQsWk_UX1xUrEbjo0X7OuYRbGWoroTV71Tvg8U,1947
|
|
259
261
|
camel/societies/workforce/prompts.py,sha256=4OGp-1-XFYIZ8ZERubSsG-hwXti8fhjtwc3n5-WEgsA,7821
|
|
@@ -293,7 +295,8 @@ camel/terminators/__init__.py,sha256=t8uqrkUnXEOYMXQDgaBkMFJ0EXFKI0kmx4cUimli3Ls
|
|
|
293
295
|
camel/terminators/base.py,sha256=xmJzERX7GdSXcxZjAHHODa0rOxRChMSRboDCNHWSscs,1511
|
|
294
296
|
camel/terminators/response_terminator.py,sha256=n3G5KP6Oj7-7WlRN0yFcrtLpqAJKaKS0bmhrWlFfCgQ,4982
|
|
295
297
|
camel/terminators/token_limit_terminator.py,sha256=YWv6ZR8R9yI2Qnf_3xES5bEE_O5bb2CxQ0EUXfMh34c,2118
|
|
296
|
-
camel/toolkits/__init__.py,sha256=
|
|
298
|
+
camel/toolkits/__init__.py,sha256=Vv5yd6_14j6lMhb8XF9R5GBieeLyheM683uVemJaIH4,4483
|
|
299
|
+
camel/toolkits/aci_toolkit.py,sha256=jhXMQggG22hd3dXdT3iJm7qWTH3KJC-TUVk1txoNWrM,16079
|
|
297
300
|
camel/toolkits/arxiv_toolkit.py,sha256=Bs2-K1yfmqhEhHoQ0j00KoI8LpOd8M3ApXcvI_-ApVw,6303
|
|
298
301
|
camel/toolkits/ask_news_toolkit.py,sha256=WfWaqwEo1Apbil3-Rb5y65Ws43NU4rAFWZu5VHe4los,23448
|
|
299
302
|
camel/toolkits/audio_analysis_toolkit.py,sha256=dnDtQJbztVBwBpamSyCfigPw2GBnDAfi3fOPgql4Y50,8941
|
|
@@ -305,7 +308,7 @@ camel/toolkits/dappier_toolkit.py,sha256=ewhXeeUj7e4DiTzuWDA-gHGhrLdyoZ4l9pbijvF
|
|
|
305
308
|
camel/toolkits/data_commons_toolkit.py,sha256=aHZUSL1ACpnYGaf1rE2csVKTmXTmN8lMGRUBYhZ_YEk,14168
|
|
306
309
|
camel/toolkits/excel_toolkit.py,sha256=SpmgLJWVFHaR8puDg4eTllGDc6SXzRt4U3QYgFTrLCM,6354
|
|
307
310
|
camel/toolkits/file_write_toolkit.py,sha256=UiN5G7hX3dqSkktqvpMq0WhQQJW_fKbiPiOhUeuSWYU,14351
|
|
308
|
-
camel/toolkits/function_tool.py,sha256=
|
|
311
|
+
camel/toolkits/function_tool.py,sha256=yyNNn6c0Pd-7n2MVlJvl09Cc1zSCt-QPHVstauyZBZY,30349
|
|
309
312
|
camel/toolkits/github_toolkit.py,sha256=x9QBsnZbLqAng4eGmnJrGxMSScrGzIA9yri9zAqfuwQ,12242
|
|
310
313
|
camel/toolkits/google_calendar_toolkit.py,sha256=E-sdgdbtNBs_CXbhht9t1dsVr4DsTr5NguHkx4fvSmc,15410
|
|
311
314
|
camel/toolkits/google_maps_toolkit.py,sha256=WTnkURpGri9KcY5OwV7AJJHOzmpu5RNmYE1QCVqvwWM,12023
|
|
@@ -316,7 +319,7 @@ camel/toolkits/jina_reranker_toolkit.py,sha256=U-V9qZ7SKP3SPTh_0CsE7ZKNqS9jNkmKY
|
|
|
316
319
|
camel/toolkits/klavis_toolkit.py,sha256=L-OiGwgaIue8QiIijNlvGbgtwjGUszLqs9bVRW5md7c,8244
|
|
317
320
|
camel/toolkits/linkedin_toolkit.py,sha256=wn4eXwYYlVA7doTna7k7WYhUqTBF83W79S-UJs_IQr0,8065
|
|
318
321
|
camel/toolkits/math_toolkit.py,sha256=KdI8AJ9Dbq5cfWboAYJUYgSkmADMCO5eZ6yqYkWuiIQ,3686
|
|
319
|
-
camel/toolkits/mcp_toolkit.py,sha256=
|
|
322
|
+
camel/toolkits/mcp_toolkit.py,sha256=yBpF6L3mzIs4Ecr3VAyex61CerENOR7ekU0oqAG9WNQ,20449
|
|
320
323
|
camel/toolkits/memory_toolkit.py,sha256=TeKYd5UMwgjVpuS2orb-ocFL13eUNKujvrFOruDCpm8,4436
|
|
321
324
|
camel/toolkits/meshy_toolkit.py,sha256=NbgdOBD3FYLtZf-AfonIv6-Q8-8DW129jsaP1PqI2rs,7126
|
|
322
325
|
camel/toolkits/mineru_toolkit.py,sha256=vRX9LholLNkpbJ6axfEN4pTG85aWb0PDmlVy3rAAXhg,6868
|
|
@@ -369,19 +372,19 @@ camel/toolkits/open_api_specs/web_scraper/ai-plugin.json,sha256=jjHvbj0DQ4AYcL9J
|
|
|
369
372
|
camel/toolkits/open_api_specs/web_scraper/openapi.yaml,sha256=u_WalQ01e8W1D27VnZviOylpGmJ-zssYrfAgkzqdoyk,2191
|
|
370
373
|
camel/toolkits/open_api_specs/web_scraper/paths/__init__.py,sha256=OKCZrQCDwaWtXIN_2rA9FSqEvgpQRieRoHh7Ek6N16A,702
|
|
371
374
|
camel/toolkits/open_api_specs/web_scraper/paths/scraper.py,sha256=aWy1_ppV4NVVEZfnbN3tu9XA9yAPAC9bRStJ5JuXMRU,1117
|
|
372
|
-
camel/types/__init__.py,sha256=
|
|
373
|
-
camel/types/enums.py,sha256=
|
|
375
|
+
camel/types/__init__.py,sha256=Xdkjh7TQDAQUQ7pFnt7i_rLjjOhsJJnhzusARcFc94Q,2311
|
|
376
|
+
camel/types/enums.py,sha256=4X3QusgMsmJhvAAoWj5r3PcUg7HyiQwRii4pVE7QLr8,57696
|
|
374
377
|
camel/types/openai_types.py,sha256=8ZFzLe-zGmKNPfuVZFzxlxAX98lGf18gtrPhOgMmzus,2104
|
|
375
378
|
camel/types/unified_model_type.py,sha256=TpiUmJ3IuX8LNLtTUeUcVM7U82r4ClSq3ZQlNX3ODKs,5351
|
|
376
379
|
camel/types/agents/__init__.py,sha256=cbvVkogPoZgcwZrgxLH6EtpGXk0kavF79nOic0Dc1vg,786
|
|
377
380
|
camel/types/agents/tool_calling_record.py,sha256=qa-vLyKvYzWprRkFFl1928xaw9CnfacIebHaqM-oY3s,1814
|
|
378
|
-
camel/utils/__init__.py,sha256=
|
|
381
|
+
camel/utils/__init__.py,sha256=R2VaBRjYDslfF0qlPgE7-EIdcTNV-mQMWXbEAZ0CsuY,2815
|
|
379
382
|
camel/utils/async_func.py,sha256=KqoktGSWjZBuAMQ2CV0X6FRgHGlzCKLfeaWvp-f1Qz8,1568
|
|
380
|
-
camel/utils/commons.py,sha256=
|
|
383
|
+
camel/utils/commons.py,sha256=3XofL3nZ-tZ3DQLWmP41CAp8lT-ictBBsttJdRJjL4Q,36323
|
|
381
384
|
camel/utils/constants.py,sha256=cqnxmpUeOwrtsR-tRO4bbOc6ZP19TLj7avjm3FONMJs,1410
|
|
382
385
|
camel/utils/deduplication.py,sha256=UHikAtOW1TTDunf2t_wa2kFbmkrXWf7HfOKwLvwCxzo,8958
|
|
383
386
|
camel/utils/filename.py,sha256=HYNc1wbSCgNR1CN21cwHxdAhpnsf5ySJ6jUDfeqOK20,2532
|
|
384
|
-
camel/utils/mcp.py,sha256=
|
|
387
|
+
camel/utils/mcp.py,sha256=iuthL8VuUXIRU34Nvx8guq7frfglpZoxewUKuAg3e1s,5077
|
|
385
388
|
camel/utils/response_format.py,sha256=9KrbwtOM9cA3LSjTgLiK7oKy-53_uMh1cvpyNwwJpng,2419
|
|
386
389
|
camel/utils/token_counting.py,sha256=apkERzNoVc4sgvJvWVosvepX3KH8pVypVjrL4AA7RB4,17521
|
|
387
390
|
camel/utils/chunker/__init__.py,sha256=6iN6HL6sblIjDuJTILk-9qKcHBZ97t8b6tZCWPZ0OYI,899
|
|
@@ -394,7 +397,7 @@ camel/verifiers/math_verifier.py,sha256=tA1D4S0sm8nsWISevxSN0hvSVtIUpqmJhzqfbuMo
|
|
|
394
397
|
camel/verifiers/models.py,sha256=GdxYPr7UxNrR1577yW4kyroRcLGfd-H1GXgv8potDWU,2471
|
|
395
398
|
camel/verifiers/physics_verifier.py,sha256=c1grrRddcrVN7szkxhv2QirwY9viIRSITWeWFF5HmLs,30187
|
|
396
399
|
camel/verifiers/python_verifier.py,sha256=ogTz77wODfEcDN4tMVtiSkRQyoiZbHPY2fKybn59lHw,20558
|
|
397
|
-
camel_ai-0.2.
|
|
398
|
-
camel_ai-0.2.
|
|
399
|
-
camel_ai-0.2.
|
|
400
|
-
camel_ai-0.2.
|
|
400
|
+
camel_ai-0.2.54.dist-info/METADATA,sha256=d8FvLrmsbJjNmkNMBo5dUHjdCoWCxMn7Xt98QOgE-pY,44254
|
|
401
|
+
camel_ai-0.2.54.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
402
|
+
camel_ai-0.2.54.dist-info/licenses/LICENSE,sha256=id0nB2my5kG0xXeimIu5zZrbHLS6EQvxvkKkzIHaT2k,11343
|
|
403
|
+
camel_ai-0.2.54.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|