camel-ai 0.2.62__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 +95 -24
- camel/agents/mcp_agent.py +5 -1
- 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/configs/__init__.py +3 -0
- camel/configs/crynux_config.py +94 -0
- camel/datasets/models.py +1 -1
- camel/datasets/static_dataset.py +6 -0
- camel/interpreters/base.py +14 -1
- camel/interpreters/docker/Dockerfile +63 -7
- camel/interpreters/docker_interpreter.py +65 -7
- camel/interpreters/e2b_interpreter.py +23 -8
- camel/interpreters/internal_python_interpreter.py +30 -2
- camel/interpreters/ipython_interpreter.py +21 -3
- camel/interpreters/subprocess_interpreter.py +34 -2
- camel/memories/records.py +5 -3
- camel/models/__init__.py +2 -0
- camel/models/azure_openai_model.py +101 -25
- camel/models/cohere_model.py +65 -0
- camel/models/crynux_model.py +94 -0
- camel/models/deepseek_model.py +43 -1
- camel/models/gemini_model.py +50 -4
- camel/models/litellm_model.py +38 -0
- camel/models/mistral_model.py +66 -0
- camel/models/model_factory.py +10 -1
- camel/models/openai_compatible_model.py +81 -17
- camel/models/openai_model.py +87 -16
- camel/models/reka_model.py +69 -0
- camel/models/samba_model.py +69 -2
- camel/models/sglang_model.py +74 -2
- camel/models/watsonx_model.py +62 -0
- camel/societies/workforce/role_playing_worker.py +11 -3
- camel/societies/workforce/single_agent_worker.py +31 -1
- camel/societies/workforce/utils.py +51 -0
- camel/societies/workforce/workforce.py +409 -7
- camel/storages/__init__.py +2 -0
- camel/storages/vectordb_storages/__init__.py +2 -0
- camel/storages/vectordb_storages/weaviate.py +714 -0
- camel/tasks/task.py +27 -10
- camel/toolkits/async_browser_toolkit.py +97 -54
- camel/toolkits/browser_toolkit.py +65 -18
- camel/toolkits/code_execution.py +37 -8
- camel/toolkits/function_tool.py +2 -2
- camel/toolkits/mcp_toolkit.py +13 -2
- camel/toolkits/playwright_mcp_toolkit.py +16 -3
- camel/toolkits/task_planning_toolkit.py +134 -0
- camel/types/enums.py +61 -2
- camel/types/unified_model_type.py +5 -0
- camel/utils/__init__.py +16 -0
- camel/utils/langfuse.py +258 -0
- camel/utils/mcp_client.py +84 -17
- {camel_ai-0.2.62.dist-info → camel_ai-0.2.65.dist-info}/METADATA +9 -12
- {camel_ai-0.2.62.dist-info → camel_ai-0.2.65.dist-info}/RECORD +59 -49
- {camel_ai-0.2.62.dist-info → camel_ai-0.2.65.dist-info}/WHEEL +0 -0
- {camel_ai-0.2.62.dist-info → camel_ai-0.2.65.dist-info}/licenses/LICENSE +0 -0
camel/utils/mcp_client.py
CHANGED
|
@@ -559,8 +559,8 @@ class MCPClient:
|
|
|
559
559
|
MCP server.
|
|
560
560
|
|
|
561
561
|
Returns:
|
|
562
|
-
Callable: A dynamically created
|
|
563
|
-
the MCP tool.
|
|
562
|
+
Callable: A dynamically created Python function that wraps
|
|
563
|
+
the MCP tool and works in both sync and async contexts.
|
|
564
564
|
"""
|
|
565
565
|
func_name = mcp_tool.name
|
|
566
566
|
func_desc = mcp_tool.description or "No description provided."
|
|
@@ -589,16 +589,9 @@ class MCPClient:
|
|
|
589
589
|
|
|
590
590
|
func_params.append(param_name)
|
|
591
591
|
|
|
592
|
-
async
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
Args:
|
|
596
|
-
kwargs: Keyword arguments corresponding to MCP tool parameters.
|
|
597
|
-
|
|
598
|
-
Returns:
|
|
599
|
-
str: The textual result returned by the MCP tool.
|
|
600
|
-
"""
|
|
601
|
-
|
|
592
|
+
# Create the async version of the function
|
|
593
|
+
async def async_mcp_call(**kwargs) -> str:
|
|
594
|
+
r"""Async version of MCP tool call."""
|
|
602
595
|
missing_params: Set[str] = set(required_params) - set(
|
|
603
596
|
kwargs.keys()
|
|
604
597
|
)
|
|
@@ -661,9 +654,83 @@ class MCPClient:
|
|
|
661
654
|
)
|
|
662
655
|
raise e
|
|
663
656
|
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
657
|
+
def adaptive_dynamic_function(**kwargs) -> str:
|
|
658
|
+
r"""Adaptive function that works in both sync and async contexts.
|
|
659
|
+
|
|
660
|
+
This function detects if it's being called from an async context
|
|
661
|
+
and behaves accordingly.
|
|
662
|
+
|
|
663
|
+
Args:
|
|
664
|
+
kwargs: Keyword arguments corresponding to MCP tool parameters.
|
|
665
|
+
|
|
666
|
+
Returns:
|
|
667
|
+
str: The textual result returned by the MCP tool.
|
|
668
|
+
|
|
669
|
+
Raises:
|
|
670
|
+
TimeoutError: If the operation times out.
|
|
671
|
+
RuntimeError: If there are issues with async execution.
|
|
672
|
+
"""
|
|
673
|
+
import asyncio
|
|
674
|
+
import concurrent.futures
|
|
675
|
+
|
|
676
|
+
try:
|
|
677
|
+
# Check if we're in an async context with a running loop
|
|
678
|
+
loop = asyncio.get_running_loop() # noqa: F841
|
|
679
|
+
# If we get here, we're in an async context with a running loop
|
|
680
|
+
# We need to run the async function in a separate thread with
|
|
681
|
+
# a new loop
|
|
682
|
+
|
|
683
|
+
def run_in_thread():
|
|
684
|
+
# Create a new event loop for this thread
|
|
685
|
+
new_loop = asyncio.new_event_loop()
|
|
686
|
+
asyncio.set_event_loop(new_loop)
|
|
687
|
+
try:
|
|
688
|
+
return new_loop.run_until_complete(
|
|
689
|
+
async_mcp_call(**kwargs)
|
|
690
|
+
)
|
|
691
|
+
except Exception as e:
|
|
692
|
+
# Preserve the original exception context
|
|
693
|
+
raise RuntimeError(
|
|
694
|
+
f"MCP call failed in thread: {e}"
|
|
695
|
+
) from e
|
|
696
|
+
finally:
|
|
697
|
+
new_loop.close()
|
|
698
|
+
|
|
699
|
+
# Run in a separate thread to avoid event loop conflicts
|
|
700
|
+
with concurrent.futures.ThreadPoolExecutor() as executor:
|
|
701
|
+
future = executor.submit(run_in_thread)
|
|
702
|
+
try:
|
|
703
|
+
return future.result(
|
|
704
|
+
timeout=self.read_timeout_seconds.total_seconds()
|
|
705
|
+
)
|
|
706
|
+
except concurrent.futures.TimeoutError:
|
|
707
|
+
raise TimeoutError(
|
|
708
|
+
f"MCP call timed out after "
|
|
709
|
+
f"{self.read_timeout_seconds.total_seconds()}"
|
|
710
|
+
f" seconds"
|
|
711
|
+
)
|
|
712
|
+
|
|
713
|
+
except RuntimeError as e:
|
|
714
|
+
# Only handle the specific "no running event loop" case
|
|
715
|
+
if (
|
|
716
|
+
"no running event loop" in str(e).lower()
|
|
717
|
+
or "no current event loop" in str(e).lower()
|
|
718
|
+
):
|
|
719
|
+
# No event loop is running, we can safely use run_async
|
|
720
|
+
from camel.utils.commons import run_async
|
|
721
|
+
|
|
722
|
+
run_async_func = run_async(async_mcp_call)
|
|
723
|
+
return run_async_func(**kwargs)
|
|
724
|
+
else:
|
|
725
|
+
# Re-raise other RuntimeErrors
|
|
726
|
+
raise
|
|
727
|
+
|
|
728
|
+
# Add an async_call method to the function for explicit async usage
|
|
729
|
+
adaptive_dynamic_function.async_call = async_mcp_call # type: ignore[attr-defined]
|
|
730
|
+
|
|
731
|
+
adaptive_dynamic_function.__name__ = func_name
|
|
732
|
+
adaptive_dynamic_function.__doc__ = func_desc
|
|
733
|
+
adaptive_dynamic_function.__annotations__ = annotations
|
|
667
734
|
|
|
668
735
|
sig = inspect.Signature(
|
|
669
736
|
parameters=[
|
|
@@ -676,9 +743,9 @@ class MCPClient:
|
|
|
676
743
|
for param in func_params
|
|
677
744
|
]
|
|
678
745
|
)
|
|
679
|
-
|
|
746
|
+
adaptive_dynamic_function.__signature__ = sig # type: ignore[attr-defined]
|
|
680
747
|
|
|
681
|
-
return
|
|
748
|
+
return adaptive_dynamic_function
|
|
682
749
|
|
|
683
750
|
def _build_tool_schema(self, mcp_tool: types.Tool) -> Dict[str, Any]:
|
|
684
751
|
r"""Build tool schema for OpenAI function calling format."""
|
|
@@ -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'
|
|
@@ -66,6 +66,7 @@ Requires-Dist: ibm-watsonx-ai>=1.3.11; extra == 'all'
|
|
|
66
66
|
Requires-Dist: imageio[pyav]<3,>=2.34.2; extra == 'all'
|
|
67
67
|
Requires-Dist: ipykernel<7,>=6.0.0; extra == 'all'
|
|
68
68
|
Requires-Dist: jupyter-client<9,>=8.6.2; extra == 'all'
|
|
69
|
+
Requires-Dist: langfuse>=2.60.5; extra == 'all'
|
|
69
70
|
Requires-Dist: linkup-sdk<0.3,>=0.2.1; extra == 'all'
|
|
70
71
|
Requires-Dist: litellm<2,>=1.38.1; extra == 'all'
|
|
71
72
|
Requires-Dist: markitdown==0.1.1; extra == 'all'
|
|
@@ -82,9 +83,7 @@ Requires-Dist: newspaper3k<0.3,>=0.2.8; extra == 'all'
|
|
|
82
83
|
Requires-Dist: notion-client<3,>=2.2.1; extra == 'all'
|
|
83
84
|
Requires-Dist: numpy<=2.2,>=1.2; extra == 'all'
|
|
84
85
|
Requires-Dist: openapi-spec-validator<0.8,>=0.7.1; extra == 'all'
|
|
85
|
-
Requires-Dist: opencv-python<5,>=4; extra == 'all'
|
|
86
86
|
Requires-Dist: openpyxl>=3.1.5; extra == 'all'
|
|
87
|
-
Requires-Dist: outlines<0.2,>=0.1.7; extra == 'all'
|
|
88
87
|
Requires-Dist: pandas<2,>=1.5.3; extra == 'all'
|
|
89
88
|
Requires-Dist: pandasai<3,>=2.3.0; extra == 'all'
|
|
90
89
|
Requires-Dist: playwright>=1.50.0; extra == 'all'
|
|
@@ -114,7 +113,6 @@ Requires-Dist: rouge<2,>=1.0.1; extra == 'all'
|
|
|
114
113
|
Requires-Dist: scenedetect>=0.6.5.2; extra == 'all'
|
|
115
114
|
Requires-Dist: scholarly[tor]==1.7.11; extra == 'all'
|
|
116
115
|
Requires-Dist: scrapegraph-py<2,>=1.12.0; extra == 'all'
|
|
117
|
-
Requires-Dist: sentence-transformers<4,>=3.0.1; extra == 'all'
|
|
118
116
|
Requires-Dist: sentencepiece<0.3,>=0.2; extra == 'all'
|
|
119
117
|
Requires-Dist: slack-bolt<2,>=1.20.1; extra == 'all'
|
|
120
118
|
Requires-Dist: slack-sdk<4,>=3.27.2; extra == 'all'
|
|
@@ -124,7 +122,6 @@ Requires-Dist: sympy<2,>=1.13.3; extra == 'all'
|
|
|
124
122
|
Requires-Dist: tabulate>=0.9.0; extra == 'all'
|
|
125
123
|
Requires-Dist: tavily-python<0.6,>=0.5.0; extra == 'all'
|
|
126
124
|
Requires-Dist: textblob<0.18,>=0.17.1; extra == 'all'
|
|
127
|
-
Requires-Dist: torch; extra == 'all'
|
|
128
125
|
Requires-Dist: transformers<5,>=4; extra == 'all'
|
|
129
126
|
Requires-Dist: tree-sitter-python<0.24,>=0.23.6; extra == 'all'
|
|
130
127
|
Requires-Dist: tree-sitter<0.24,>=0.23.2; extra == 'all'
|
|
@@ -136,6 +133,7 @@ Requires-Dist: types-requests<3,>=2.31.0; extra == 'all'
|
|
|
136
133
|
Requires-Dist: types-setuptools<70,>=69.2.0; extra == 'all'
|
|
137
134
|
Requires-Dist: types-tqdm<5,>=4.66.0; extra == 'all'
|
|
138
135
|
Requires-Dist: unstructured==0.16.20; extra == 'all'
|
|
136
|
+
Requires-Dist: weaviate-client>=4.15.0; extra == 'all'
|
|
139
137
|
Requires-Dist: wikipedia<2,>=1; extra == 'all'
|
|
140
138
|
Requires-Dist: wolframalpha<6,>=5.0.0; extra == 'all'
|
|
141
139
|
Requires-Dist: xls2xlsx>=0.2.0; extra == 'all'
|
|
@@ -160,6 +158,7 @@ Requires-Dist: rouge<2,>=1.0.1; extra == 'data-tools'
|
|
|
160
158
|
Requires-Dist: stripe<12,>=11.3.0; extra == 'data-tools'
|
|
161
159
|
Requires-Dist: textblob<0.18,>=0.17.1; extra == 'data-tools'
|
|
162
160
|
Provides-Extra: dev
|
|
161
|
+
Requires-Dist: flask>=2.0; extra == 'dev'
|
|
163
162
|
Requires-Dist: gradio<4,>=3; extra == 'dev'
|
|
164
163
|
Requires-Dist: mock<6,>=5; extra == 'dev'
|
|
165
164
|
Requires-Dist: mypy<2,>=1.5.1; extra == 'dev'
|
|
@@ -184,6 +183,7 @@ Requires-Dist: docker<8,>=7.1.0; extra == 'dev-tools'
|
|
|
184
183
|
Requires-Dist: e2b-code-interpreter<2,>=1.0.3; extra == 'dev-tools'
|
|
185
184
|
Requires-Dist: ipykernel<7,>=6.0.0; extra == 'dev-tools'
|
|
186
185
|
Requires-Dist: jupyter-client<9,>=8.6.2; extra == 'dev-tools'
|
|
186
|
+
Requires-Dist: langfuse>=2.60.5; extra == 'dev-tools'
|
|
187
187
|
Requires-Dist: mcp>=1.3.0; extra == 'dev-tools'
|
|
188
188
|
Requires-Dist: tree-sitter-python<0.24,>=0.23.6; extra == 'dev-tools'
|
|
189
189
|
Requires-Dist: tree-sitter<0.24,>=0.23.2; extra == 'dev-tools'
|
|
@@ -215,13 +215,11 @@ Requires-Dist: tabulate>=0.9.0; extra == 'document-tools'
|
|
|
215
215
|
Requires-Dist: unstructured==0.16.20; extra == 'document-tools'
|
|
216
216
|
Requires-Dist: xls2xlsx>=0.2.0; extra == 'document-tools'
|
|
217
217
|
Provides-Extra: huggingface
|
|
218
|
-
Requires-Dist: accelerate<0.27,>=0.26.0; extra == 'huggingface'
|
|
219
218
|
Requires-Dist: datasets<4,>=3; extra == 'huggingface'
|
|
220
219
|
Requires-Dist: diffusers<0.26,>=0.25.0; extra == 'huggingface'
|
|
221
|
-
Requires-Dist:
|
|
220
|
+
Requires-Dist: huggingface-hub; extra == 'huggingface'
|
|
222
221
|
Requires-Dist: sentencepiece<0.3,>=0.2; extra == 'huggingface'
|
|
223
222
|
Requires-Dist: soundfile<0.14,>=0.13; extra == 'huggingface'
|
|
224
|
-
Requires-Dist: torch; extra == 'huggingface'
|
|
225
223
|
Requires-Dist: transformers<5,>=4; extra == 'huggingface'
|
|
226
224
|
Provides-Extra: media-tools
|
|
227
225
|
Requires-Dist: ffmpeg-python<0.3,>=0.2.0; extra == 'media-tools'
|
|
@@ -258,9 +256,7 @@ Requires-Dist: mcp-simple-arxiv==0.2.2; extra == 'owl'
|
|
|
258
256
|
Requires-Dist: newspaper3k<0.3,>=0.2.8; extra == 'owl'
|
|
259
257
|
Requires-Dist: numpy<=2.2,>=1.2; extra == 'owl'
|
|
260
258
|
Requires-Dist: openapi-spec-validator<0.8,>=0.7.1; extra == 'owl'
|
|
261
|
-
Requires-Dist: opencv-python<5,>=4; extra == 'owl'
|
|
262
259
|
Requires-Dist: openpyxl>=3.1.5; extra == 'owl'
|
|
263
|
-
Requires-Dist: outlines<0.2,>=0.1.7; extra == 'owl'
|
|
264
260
|
Requires-Dist: pandas<2,>=1.5.3; extra == 'owl'
|
|
265
261
|
Requires-Dist: pandasai<3,>=2.3.0; extra == 'owl'
|
|
266
262
|
Requires-Dist: playwright>=1.50.0; extra == 'owl'
|
|
@@ -301,8 +297,8 @@ Requires-Dist: pyobvector>=0.1.18; extra == 'rag'
|
|
|
301
297
|
Requires-Dist: pytidb-experimental==0.0.1.dev4; extra == 'rag'
|
|
302
298
|
Requires-Dist: qdrant-client<2,>=1.9.0; extra == 'rag'
|
|
303
299
|
Requires-Dist: rank-bm25<0.3,>=0.2.2; extra == 'rag'
|
|
304
|
-
Requires-Dist: sentence-transformers<4,>=3.0.1; extra == 'rag'
|
|
305
300
|
Requires-Dist: unstructured==0.16.20; extra == 'rag'
|
|
301
|
+
Requires-Dist: weaviate-client>=4.15.0; extra == 'rag'
|
|
306
302
|
Provides-Extra: research-tools
|
|
307
303
|
Requires-Dist: arxiv2text<0.2,>=0.1.14; extra == 'research-tools'
|
|
308
304
|
Requires-Dist: arxiv<3,>=2.1.3; extra == 'research-tools'
|
|
@@ -320,6 +316,7 @@ Requires-Dist: pyobvector>=0.1.18; extra == 'storage'
|
|
|
320
316
|
Requires-Dist: pytidb-experimental==0.0.1.dev4; extra == 'storage'
|
|
321
317
|
Requires-Dist: qdrant-client<2,>=1.9.0; extra == 'storage'
|
|
322
318
|
Requires-Dist: redis<6,>=5.0.6; extra == 'storage'
|
|
319
|
+
Requires-Dist: weaviate-client>=4.15.0; extra == 'storage'
|
|
323
320
|
Provides-Extra: test
|
|
324
321
|
Requires-Dist: mock<6,>=5; extra == 'test'
|
|
325
322
|
Requires-Dist: pytest-asyncio<0.24,>=0.23.0; extra == 'test'
|
|
@@ -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,12 +7,12 @@ 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
|
|
14
14
|
camel/agents/knowledge_graph_agent.py,sha256=7Tchhyvm1s8tQ3at7iGKZt70xWZllRXu2vwUFR37p10,9681
|
|
15
|
-
camel/agents/mcp_agent.py,sha256=
|
|
15
|
+
camel/agents/mcp_agent.py,sha256=0e1NbHxKGx2asXKDOOuUGGGVZ1DAPxhZMDu8pP6bm_s,16591
|
|
16
16
|
camel/agents/multi_hop_generator_agent.py,sha256=aYsZNsEFHxIq8_wDN8lZRkvRbfhlOYGBKezWr87y8Bs,4325
|
|
17
17
|
camel/agents/programmed_agent_instruction.py,sha256=99fLe41che3X6wPpNPJXRwl4If6EoQqQVWIoT3DKE1s,7124
|
|
18
18
|
camel/agents/repo_agent.py,sha256=ZzZ9zvh0vgdJv1KNY3GEaEPDdDxxXrjUZxjjHjVEWtE,22187
|
|
@@ -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
|
|
@@ -39,12 +44,13 @@ camel/bots/discord/discord_store.py,sha256=eGBMYG8gm28PmmhcJ-JOVk2UKTBobEzvb6-pC
|
|
|
39
44
|
camel/bots/slack/__init__.py,sha256=iqySoYftEb7SI4pabhMvvTp1YYS09BvjwGXPEbcP1Hc,1055
|
|
40
45
|
camel/bots/slack/models.py,sha256=xMz3RO-88yrxPRrbBDjiabpbZIlpEHCvU-1CvASKARc,5143
|
|
41
46
|
camel/bots/slack/slack_app.py,sha256=SoSRZZnuTJ0aiLUBZqdG8cUFJzYpfpZh7304t0a_7Dg,9944
|
|
42
|
-
camel/configs/__init__.py,sha256=
|
|
47
|
+
camel/configs/__init__.py,sha256=Fvmj8zyFgW0bxs4SSdvBIGTWHLPSj_lHE1FomiFAowI,4233
|
|
43
48
|
camel/configs/aiml_config.py,sha256=6niTHsxusPfXyNKNfxipTudgeULMIeOeXHAv5hRblsM,4264
|
|
44
49
|
camel/configs/anthropic_config.py,sha256=QI_fZLOswKUo6fBL1DxC2zF2vweUw-5kKL-H6fSEg5Y,4037
|
|
45
50
|
camel/configs/base_config.py,sha256=2nEIRQoY6tIMeBIcxcBtCadmpsd8bSQj9rzewQsgfXo,3188
|
|
46
51
|
camel/configs/bedrock_config.py,sha256=KZ_oZg25AGcC0sC3ZmVElwFcBjchtcPEbya0u0EVv28,3899
|
|
47
52
|
camel/configs/cohere_config.py,sha256=PD8YDgzP0R1-7bixpqvKEHPMf6_SjU1aq-9UVAg-xCI,4019
|
|
53
|
+
camel/configs/crynux_config.py,sha256=gLaUryyOUuIDuWCMCfw1h4-T0d0InenVXkWUz2Gff6Y,5230
|
|
48
54
|
camel/configs/deepseek_config.py,sha256=EuS5agT2ZjJ9-pZGjlpGKPpMjycwozXI87gkQ41ixmQ,5728
|
|
49
55
|
camel/configs/gemini_config.py,sha256=RKCGFOX_yIgWGX30byQFWfiuGQ7diPyyvS2aVmgfORw,4725
|
|
50
56
|
camel/configs/groq_config.py,sha256=H4YEBpSNwqkMrBkJmSpInHucS1Qddr4qOpF-LZqb6QQ,5732
|
|
@@ -100,9 +106,9 @@ camel/datahubs/models.py,sha256=tGb9OP_aomIhnwc0VapJjTg9PmyV_QCp5to9sABXF0Y,978
|
|
|
100
106
|
camel/datasets/__init__.py,sha256=WlBpnzL8MejnJdofpJQBYv9KCyu1AZgm0-sTqDht6Aw,1051
|
|
101
107
|
camel/datasets/base_generator.py,sha256=WJEJTT00J3jv1LHjQ5wPBQSfxX0OkT1tc3Uu4FgQwSI,10735
|
|
102
108
|
camel/datasets/few_shot_generator.py,sha256=HCXaJ7b5-W72deC662TKiNUtzzHKJ60dFyZ9W_2Hrsc,10867
|
|
103
|
-
camel/datasets/models.py,sha256=
|
|
109
|
+
camel/datasets/models.py,sha256=xATYBAZ3lvj01Kf3wvA_Wq7-AAapFyuD2PWJsaatYMc,2236
|
|
104
110
|
camel/datasets/self_instruct_generator.py,sha256=9FK-S7N7e-PR5rABj59BCNmUZCd8fS72La612FK0AEM,15837
|
|
105
|
-
camel/datasets/static_dataset.py,sha256=
|
|
111
|
+
camel/datasets/static_dataset.py,sha256=3ls4B0D_V2-SSLj3UvCyF8CblRRwarPIwF6l2GiuXLY,20221
|
|
106
112
|
camel/embeddings/__init__.py,sha256=nLFckLBkHXb6HolqPcIssQYO89di0KOeinT_t0S8V9g,1473
|
|
107
113
|
camel/embeddings/azure_embedding.py,sha256=ClMu3ko1PnkNvWPSWILwCNUnxhzUL7UJHv2sB-OptuE,4233
|
|
108
114
|
camel/embeddings/base.py,sha256=mxqFkWh2AfbxuVKPOqVx16fCznmuSh9QXGjaEeZHvoY,2190
|
|
@@ -123,14 +129,14 @@ camel/extractors/__init__.py,sha256=lgtDl8zWvN826fJVKqRv05w556YZ-EdrHwdzKphywgA,
|
|
|
123
129
|
camel/extractors/base.py,sha256=3jvuZpq27nlADDCX3GfubOpeb_zt-E9rzxF3x4lYm8s,10404
|
|
124
130
|
camel/extractors/python_strategies.py,sha256=zHAkshnO9o-uvLtCuVOCKoA2PzetBTnkNx1Qy_3j_pE,8113
|
|
125
131
|
camel/interpreters/__init__.py,sha256=NOQUsg7gR84zO8nBXu4JGUatsxSDJqZS6otltjXfop4,1265
|
|
126
|
-
camel/interpreters/base.py,sha256=
|
|
127
|
-
camel/interpreters/docker_interpreter.py,sha256=
|
|
128
|
-
camel/interpreters/e2b_interpreter.py,sha256=
|
|
129
|
-
camel/interpreters/internal_python_interpreter.py,sha256=
|
|
132
|
+
camel/interpreters/base.py,sha256=J3DVt_dGzq1v09-gn8j2XRgEM2WoPrhKFyH9koAjkCU,2281
|
|
133
|
+
camel/interpreters/docker_interpreter.py,sha256=IK26JFvqsM-7dOkT29qVqFujw5LF83_-BdSWsIplw4M,11318
|
|
134
|
+
camel/interpreters/e2b_interpreter.py,sha256=lNtIsVJWdSdqLoILZS8f5_7WlHI3n457RzLjmeOqH-A,5319
|
|
135
|
+
camel/interpreters/internal_python_interpreter.py,sha256=TU4ITQTsR8TXsklN11xWEcCkv4jnOVUmnBbHIHCKggk,23362
|
|
130
136
|
camel/interpreters/interpreter_error.py,sha256=uEhcmHmmcajt5C9PLeHs21h1fE6cmyt23tCAGie1kTA,880
|
|
131
|
-
camel/interpreters/ipython_interpreter.py,sha256
|
|
132
|
-
camel/interpreters/subprocess_interpreter.py,sha256=
|
|
133
|
-
camel/interpreters/docker/Dockerfile,sha256=
|
|
137
|
+
camel/interpreters/ipython_interpreter.py,sha256=V-Z_nIwaKmmivv_gD6nwdzmqfBUW4IoN4vZ0IOaUTZU,6582
|
|
138
|
+
camel/interpreters/subprocess_interpreter.py,sha256=DMLJIlTiHk0QA_pH5CXESHdJk-5olKo3aUh0KNECqJI,17759
|
|
139
|
+
camel/interpreters/docker/Dockerfile,sha256=SbbuKS_Rwv9JTKRlVOlsO4QuPTFA9zbsN5CZp9KeUMk,1777
|
|
134
140
|
camel/loaders/__init__.py,sha256=NfXLr0gQUhfyMeB5KpU9EUvhhFLp3X5KNinDs2WO0Q0,1548
|
|
135
141
|
camel/loaders/apify_reader.py,sha256=oaVjKyNhJhG-hTuIwrpZ2hsB4XTL0M-kUksgSL2R0ck,7952
|
|
136
142
|
camel/loaders/base_io.py,sha256=zsbdBPHgSPFyQrtiUgAsHvy39QHWUObRYNaVvr-pPk0,10190
|
|
@@ -147,7 +153,7 @@ camel/loaders/unstructured_io.py,sha256=wA3fkDeS4mSPFkMDnWZzJYKDltio7l72BU9D3EGf
|
|
|
147
153
|
camel/memories/__init__.py,sha256=JQbs-_7VkcVTjE8y9J0DWI3btDyMRZilTZNVuy_RxZM,1358
|
|
148
154
|
camel/memories/agent_memories.py,sha256=HysjYAB6srRdb3uE_IXmC94YPZBfGcAUdTlbcbzzLZE,9330
|
|
149
155
|
camel/memories/base.py,sha256=3BGuExfwwkbkVpxw1uYms8O37F-PD8ArcmYnFKYUcI4,5652
|
|
150
|
-
camel/memories/records.py,sha256=
|
|
156
|
+
camel/memories/records.py,sha256=NoiwDuwnKYObhrXPHSRGw8xdxAqyZDDiarOAN6-d17I,4451
|
|
151
157
|
camel/memories/blocks/__init__.py,sha256=ci7_WU11222cNd1Zkv-a0z5E2ux95NMjAYm_cDzF0pE,854
|
|
152
158
|
camel/memories/blocks/chat_history_block.py,sha256=ZAQZ9NqbwZ_w8XebQ3vVPSTA2sfUNooOfI4oNrGxdDo,6679
|
|
153
159
|
camel/memories/blocks/vectordb_block.py,sha256=lf0ipY4cJMB--tQDvpInqsmHZCn7sD1pkmjC70vTtn4,3941
|
|
@@ -163,24 +169,25 @@ camel/messages/conversion/sharegpt/__init__.py,sha256=oWUuHV5w85kxqhz_hoElLmCfzL
|
|
|
163
169
|
camel/messages/conversion/sharegpt/function_call_formatter.py,sha256=cn7e7CfmxEVFlfOqhjhNuA8nuWvWD6hXYn-3okXNxxQ,1832
|
|
164
170
|
camel/messages/conversion/sharegpt/hermes/__init__.py,sha256=mxuMSm-neaTgInIjYXuIVdC310E6jKJzM3IdtaJ4qY4,812
|
|
165
171
|
camel/messages/conversion/sharegpt/hermes/hermes_function_formatter.py,sha256=-9TT8iOQ-ieKSKR_PmJSA5Bi0uBx-qR7WQ6vxuFkorM,4639
|
|
166
|
-
camel/models/__init__.py,sha256=
|
|
172
|
+
camel/models/__init__.py,sha256=TuF6sg8Ixzc0nLCkEa_gUy72TZVQ_uo1XkALH4QZpsk,3325
|
|
167
173
|
camel/models/_utils.py,sha256=hob1ehnS5xZitMCdYToHVgaTB55JnaP4_DSWnTEfVsg,2045
|
|
168
174
|
camel/models/aiml_model.py,sha256=HO_jRvMN2WEVlZRc_UG-OoZ1hv8sEiO5j_7BBKuGlp0,3753
|
|
169
175
|
camel/models/anthropic_model.py,sha256=0jilp8dBrk1JAP0dkw_YX21uL3_81ZGL0qmKZiAI2w0,4331
|
|
170
176
|
camel/models/aws_bedrock_model.py,sha256=cpY66Wcwb-clNf0TCch9WI8au3_GGxHBYUd09rGQi_U,4353
|
|
171
|
-
camel/models/azure_openai_model.py,sha256=
|
|
177
|
+
camel/models/azure_openai_model.py,sha256=lEA9tPAOwdvREc5CgwXeGkfr9UBJQNGcth63Y0uproU,14763
|
|
172
178
|
camel/models/base_audio_model.py,sha256=_VUWh1L3rh8mldNvM5R6jBOKtvmTeBKJyRxAdPJmPlY,3324
|
|
173
179
|
camel/models/base_model.py,sha256=eDeUlgH8iS0Stk6zommzqce4dfD4Qj51tvgXUs5ys4s,14474
|
|
174
|
-
camel/models/cohere_model.py,sha256=
|
|
175
|
-
camel/models/
|
|
180
|
+
camel/models/cohere_model.py,sha256=ze_4R9qYBv5heoOCB34oUzcK5bEg91KvcL9q8Qs9iUo,17049
|
|
181
|
+
camel/models/crynux_model.py,sha256=Fh2Bn8PoneRMUxknD2cut7ihoLzGLQ70JNmqlbRsXh8,3801
|
|
182
|
+
camel/models/deepseek_model.py,sha256=ea_uXTUC6sPP-5VDU7m5HLcw7nSIlphNP8kyqcqV970,10485
|
|
176
183
|
camel/models/fish_audio_model.py,sha256=RCwORRIdCbjZXWWjjctpksPI2DnS0b68JjxunHBQ1xk,5981
|
|
177
|
-
camel/models/gemini_model.py,sha256=
|
|
184
|
+
camel/models/gemini_model.py,sha256=APc2FE47YUpSg2Sct_-Do9pOsrK632Dtu1uEAcTPcSI,12297
|
|
178
185
|
camel/models/groq_model.py,sha256=596VqRJ_yxv9Jz3sG7UVXVkIjZI1nX7zQAD709m4uig,3774
|
|
179
186
|
camel/models/internlm_model.py,sha256=l7WjJ7JISCCqkezhEXzmjj_Mvhqhxxhsg4NuenP7w9w,4374
|
|
180
|
-
camel/models/litellm_model.py,sha256=
|
|
187
|
+
camel/models/litellm_model.py,sha256=BUxVEzCMuFvRYPoR_f4VO0HAO0BIqBnKLaxPkXy_6uU,7181
|
|
181
188
|
camel/models/lmstudio_model.py,sha256=_Lnv0e2ichks_MrNJGNIawEtGtP7T_xX8v0bFNNeWes,3641
|
|
182
|
-
camel/models/mistral_model.py,sha256=
|
|
183
|
-
camel/models/model_factory.py,sha256=
|
|
189
|
+
camel/models/mistral_model.py,sha256=YmFEAVEJdO8gqkd9AmWJnyctHKe7DuzH0O7-XmgzIjM,15620
|
|
190
|
+
camel/models/model_factory.py,sha256=RXIYFq8K-UbJtQgsmXpxVbIhQLBu3iUVXEj9mUGGtwM,11828
|
|
184
191
|
camel/models/model_manager.py,sha256=tzSZpnmBgd_K6vgr2WmaW4MHWzrYbLapA2HH5TrRBM4,9344
|
|
185
192
|
camel/models/modelscope_model.py,sha256=aI7i50DSIE6MO2U_WvULan6Sk4b5d7iZoEHQaARo4FA,10487
|
|
186
193
|
camel/models/moonshot_model.py,sha256=yeD2jrfQpFaWJHVe1s1KrI6aHQVzKRcBDt9C2Qo4nU8,4305
|
|
@@ -190,20 +197,20 @@ camel/models/novita_model.py,sha256=tU8RXsV-4wYmQhXcZkPXdlXRvLwsnj_pEJVSxnhXiXc,
|
|
|
190
197
|
camel/models/nvidia_model.py,sha256=XkHBZJ94nkYB1j9AgyPsorYfvgO1Ys6S6_z3Qh3vrhM,3766
|
|
191
198
|
camel/models/ollama_model.py,sha256=sc49XZT9KQeUWjvLqXn17kKa1jgAyAHiy2MHiUjQrzw,4416
|
|
192
199
|
camel/models/openai_audio_models.py,sha256=BSixkXlc8xirQLl2qCla-g6_y9wDLnMZVHukHrhzw98,13344
|
|
193
|
-
camel/models/openai_compatible_model.py,sha256=
|
|
194
|
-
camel/models/openai_model.py,sha256=
|
|
200
|
+
camel/models/openai_compatible_model.py,sha256=8sibQN-Mp9GsdCiPW3siHTc9s4S1TaebOexDacK3SGU,12687
|
|
201
|
+
camel/models/openai_model.py,sha256=e1BaCqicJ9tRvUS9OA6c8cvhhU4OesJe5Nt4AGpW4hA,15262
|
|
195
202
|
camel/models/openrouter_model.py,sha256=WAZxAtl_lVMMuc0HGjWHmfs3K0zt7G0dXM55TIsZ4d0,3866
|
|
196
203
|
camel/models/ppio_model.py,sha256=Fn7TTaKkRfg5bIRIxbBSlvAXKLTcJf71iJdgQmSuBSk,3891
|
|
197
204
|
camel/models/qwen_model.py,sha256=J9DgkRA9N0FDEq40lQn30BCiw1WxYlQK-5bSeo19E_g,10285
|
|
198
|
-
camel/models/reka_model.py,sha256=
|
|
199
|
-
camel/models/samba_model.py,sha256=
|
|
200
|
-
camel/models/sglang_model.py,sha256=
|
|
205
|
+
camel/models/reka_model.py,sha256=OwzkYZqHcs_r3Dn4VgyYlckRPzfNUhG2Q5JzE-EdGWc,12773
|
|
206
|
+
camel/models/samba_model.py,sha256=UYGLHjU2Cd4lOJEFjtJTeX3-pyvUVk2ZTgjvvUK2tcc,25193
|
|
207
|
+
camel/models/sglang_model.py,sha256=pcWP7_k4X-pyVKlfT_PWoG-BnZk00Q-Q5aY7k2sYy3c,16956
|
|
201
208
|
camel/models/siliconflow_model.py,sha256=mdVcf-5N-ZWS5qGL2pq7TsAsvlhCXxL6jxavxeElFRw,4432
|
|
202
209
|
camel/models/stub_model.py,sha256=JvjeEkXS7RMcR_UA_64a3T6S0QALUhOaMQs-aI7Etug,5955
|
|
203
210
|
camel/models/togetherai_model.py,sha256=16q-0jsO5HIy9K0elSlR-aA9EDN5VhPXPGBG6cU1t1w,3937
|
|
204
211
|
camel/models/vllm_model.py,sha256=bB4-pkXnMD6aGXumCYpJY62JCWRMuK57kIpzYdK3mJQ,4493
|
|
205
212
|
camel/models/volcano_model.py,sha256=Lsg0BDVPaP50vRNW0D37liEsa71RmvapBxN_JCcHe-4,3674
|
|
206
|
-
camel/models/watsonx_model.py,sha256=
|
|
213
|
+
camel/models/watsonx_model.py,sha256=WfBwNdlsly8zZLhi0agVsI6iVKi-lYCynQByN37fRPg,11326
|
|
207
214
|
camel/models/yi_model.py,sha256=hZ_LYZWYhDkjBA3UcDiY2sGPFH3jEbxHaRy6IMvLYZ4,3742
|
|
208
215
|
camel/models/zhipuai_model.py,sha256=2oOIhrRB9d1zC4gaHz69bQfHlJlsiEn2SXOR_CQHAp0,3833
|
|
209
216
|
camel/models/reward/__init__.py,sha256=MqPN6wXh7Y1SoeNoFlYaMG6xHzLG0CYsv_3kB2atIQk,984
|
|
@@ -262,13 +269,13 @@ camel/societies/role_playing.py,sha256=1TsQbGYmN91BeQ0DGM5PpSJ9TMbn1F3maJNuv4fQ5
|
|
|
262
269
|
camel/societies/workforce/__init__.py,sha256=bkTI-PE-MSK9AQ2V2gR6cR2WY-R7Jqy_NmXRtAoqo8o,920
|
|
263
270
|
camel/societies/workforce/base.py,sha256=z2DmbTP5LL5-aCAAqglznQqCLfPmnyM5zD3w6jjtsb8,2175
|
|
264
271
|
camel/societies/workforce/prompts.py,sha256=4OGp-1-XFYIZ8ZERubSsG-hwXti8fhjtwc3n5-WEgsA,7821
|
|
265
|
-
camel/societies/workforce/role_playing_worker.py,sha256=
|
|
266
|
-
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
|
|
267
274
|
camel/societies/workforce/task_channel.py,sha256=9t5hoinfGYnbRavX4kx34Jk1FOy05SnJZYbNzb5M-CQ,7140
|
|
268
|
-
camel/societies/workforce/utils.py,sha256=
|
|
275
|
+
camel/societies/workforce/utils.py,sha256=ZGcpwGzvUnskVu3zVm9IHBPsbLjMJElJ8WHMJ0MTnpw,3983
|
|
269
276
|
camel/societies/workforce/worker.py,sha256=xdUWBW8Qifhhrh4jdK5S_q4LiSEL4NxKuDZN1fgQESA,4135
|
|
270
|
-
camel/societies/workforce/workforce.py,sha256=
|
|
271
|
-
camel/storages/__init__.py,sha256=
|
|
277
|
+
camel/societies/workforce/workforce.py,sha256=AdtkDMV66Syaht86Z3GIZmk-vfn2f2OuJg1iDIih0z8,41139
|
|
278
|
+
camel/storages/__init__.py,sha256=bFpvvAS2QyZoIr-tnwhMWsZRL411kIRq6IMUHcI7KHs,1989
|
|
272
279
|
camel/storages/graph_storages/__init__.py,sha256=G29BNn651C0WTOpjCl4QnVM-4B9tcNh8DdmsCiONH8Y,948
|
|
273
280
|
camel/storages/graph_storages/base.py,sha256=uSe9jWuLudfm5jtfo6E-L_kNzITwK1_Ef-6L4HWw-JM,2852
|
|
274
281
|
camel/storages/graph_storages/graph_element.py,sha256=X_2orbQOMaQd00xxzAoJLfEcrVNE1mgCqMJv0orMAKA,2733
|
|
@@ -285,15 +292,16 @@ camel/storages/object_storages/amazon_s3.py,sha256=9Yvyyyb1LGHxr8REEza7oGopbVtLE
|
|
|
285
292
|
camel/storages/object_storages/azure_blob.py,sha256=66dHcvjE2ZNdb339oBU6LbFiKzPYrnlb4tQ_3m2Yazc,5992
|
|
286
293
|
camel/storages/object_storages/base.py,sha256=pImWylYJm7Wt8q87lBE1Cxk26IJ9sRtXq_OJmV6bJlg,3796
|
|
287
294
|
camel/storages/object_storages/google_cloud.py,sha256=59AvGar_GDoGYHhzUi5KBtInv2KaUVnw8SalsL43410,5332
|
|
288
|
-
camel/storages/vectordb_storages/__init__.py,sha256=
|
|
295
|
+
camel/storages/vectordb_storages/__init__.py,sha256=GJomO2FAFw-QuRoDnucqBhvnWNAic9pU47VgASeVQoQ,1296
|
|
289
296
|
camel/storages/vectordb_storages/base.py,sha256=EP_WbEtI3SJPHro9rjNkIq9UDUP1AAHmxZgeya94Lgk,6738
|
|
290
297
|
camel/storages/vectordb_storages/faiss.py,sha256=MHE3db9kJmVuu0aScXsSo8p60TCtc2Ot0rO77zcPgt8,26760
|
|
291
298
|
camel/storages/vectordb_storages/milvus.py,sha256=ChQyEuaXCWCKxytLN2z4QrkEthx2xE6bQPO6KCS9RgQ,13535
|
|
292
299
|
camel/storages/vectordb_storages/oceanbase.py,sha256=eNBelw4D6r3OWlhHzGJ8Xw-ej9nU1uTZ6CYoXdbxDkI,17054
|
|
293
300
|
camel/storages/vectordb_storages/qdrant.py,sha256=a_cT0buSCHQ2CPZy852-mdvMDwy5zodCvAKMaa4zIvg,18017
|
|
294
301
|
camel/storages/vectordb_storages/tidb.py,sha256=w83bxgKgso43MtHqlpf2EMSpn1_Nz6ZZtY4fPw_-vgs,11192
|
|
302
|
+
camel/storages/vectordb_storages/weaviate.py,sha256=wDUE4KvfmOl3DqHFU4uF0VKbHu-q9vKhZDe8FZ6QXsk,27888
|
|
295
303
|
camel/tasks/__init__.py,sha256=MuHwkw5GRQc8NOCzj8tjtBrr2Xg9KrcKp-ed_-2ZGIM,906
|
|
296
|
-
camel/tasks/task.py,sha256=
|
|
304
|
+
camel/tasks/task.py,sha256=W0c4mnqvZLLnA3RKE4Klj0vSXJMgc2NFCrqo4nCq99s,13980
|
|
297
305
|
camel/tasks/task_prompt.py,sha256=3KZmKYKUPcTKe8EAZOZBN3G05JHRVt7oHY9ORzLVu1g,2150
|
|
298
306
|
camel/terminators/__init__.py,sha256=t8uqrkUnXEOYMXQDgaBkMFJ0EXFKI0kmx4cUimli3Ls,991
|
|
299
307
|
camel/terminators/base.py,sha256=xmJzERX7GdSXcxZjAHHODa0rOxRChMSRboDCNHWSscs,1511
|
|
@@ -303,19 +311,19 @@ camel/toolkits/__init__.py,sha256=IZYUYPI8_xqOmPnq1fvw_GlpNKgED70ReO7befWzUFA,49
|
|
|
303
311
|
camel/toolkits/aci_toolkit.py,sha256=jhXMQggG22hd3dXdT3iJm7qWTH3KJC-TUVk1txoNWrM,16079
|
|
304
312
|
camel/toolkits/arxiv_toolkit.py,sha256=Bs2-K1yfmqhEhHoQ0j00KoI8LpOd8M3ApXcvI_-ApVw,6303
|
|
305
313
|
camel/toolkits/ask_news_toolkit.py,sha256=WfWaqwEo1Apbil3-Rb5y65Ws43NU4rAFWZu5VHe4los,23448
|
|
306
|
-
camel/toolkits/async_browser_toolkit.py,sha256=
|
|
314
|
+
camel/toolkits/async_browser_toolkit.py,sha256=dHXV8uCDetLKN7no5otyP3hHDnQIRhGY0msJRJrFbIY,50436
|
|
307
315
|
camel/toolkits/audio_analysis_toolkit.py,sha256=dnDtQJbztVBwBpamSyCfigPw2GBnDAfi3fOPgql4Y50,8941
|
|
308
316
|
camel/toolkits/base.py,sha256=7vW2Je9HZqsA1yKwH3aXEGAsjRN1cqeCnsIWfHp6yfE,2386
|
|
309
317
|
camel/toolkits/bohrium_toolkit.py,sha256=453t-m0h0IGjurG6tCHUejGzfRAN2SAkhIoY8V-WJpw,11396
|
|
310
|
-
camel/toolkits/browser_toolkit.py,sha256=
|
|
318
|
+
camel/toolkits/browser_toolkit.py,sha256=Ntn_LmCrhqqIBWq9HtiIKw-M0cL5ebn74Ej1GBoZiC8,44400
|
|
311
319
|
camel/toolkits/browser_toolkit_commons.py,sha256=uuc1V5tN3YJmTSe6NHAVJqwsL4iYD7IiSZWxPLYW67A,22196
|
|
312
|
-
camel/toolkits/code_execution.py,sha256=
|
|
320
|
+
camel/toolkits/code_execution.py,sha256=wUbHuGT8VZTBVjCB-IMYRRnDiW4Gw5Ahu_ccqTVzQ7Q,5554
|
|
313
321
|
camel/toolkits/dalle_toolkit.py,sha256=GSnV7reQsVmhMi9sbQy1Ks_5Vs57Dlir_AbT2PPCZwo,6153
|
|
314
322
|
camel/toolkits/dappier_toolkit.py,sha256=ewhXeeUj7e4DiTzuWDA-gHGhrLdyoZ4l9pbijvF3py0,8199
|
|
315
323
|
camel/toolkits/data_commons_toolkit.py,sha256=aHZUSL1ACpnYGaf1rE2csVKTmXTmN8lMGRUBYhZ_YEk,14168
|
|
316
324
|
camel/toolkits/excel_toolkit.py,sha256=DSjBXl24_LrJubGFFmB_vqliKzzWTbT1TH309YQVUO8,6653
|
|
317
325
|
camel/toolkits/file_write_toolkit.py,sha256=3JF_6fFXXQUlZv3VjkXVXDOodyGHHev0GJgSyZpkEH8,16483
|
|
318
|
-
camel/toolkits/function_tool.py,sha256=
|
|
326
|
+
camel/toolkits/function_tool.py,sha256=aMXDnPlMPJSoItED8y2lb2g2FasOXit9mkfbLm9-hEk,30367
|
|
319
327
|
camel/toolkits/github_toolkit.py,sha256=Xq4KynmvIW_2924BJBS98I9TaF0ugmN62Y74kcNv_us,13102
|
|
320
328
|
camel/toolkits/google_calendar_toolkit.py,sha256=E-sdgdbtNBs_CXbhht9t1dsVr4DsTr5NguHkx4fvSmc,15410
|
|
321
329
|
camel/toolkits/google_maps_toolkit.py,sha256=WTnkURpGri9KcY5OwV7AJJHOzmpu5RNmYE1QCVqvwWM,12023
|
|
@@ -326,7 +334,7 @@ camel/toolkits/jina_reranker_toolkit.py,sha256=0OWUlSqRNYYmD5EQZW7OX87lfmzLRjjDm
|
|
|
326
334
|
camel/toolkits/klavis_toolkit.py,sha256=ZKerhgz5e-AV-iv0ftf07HgWikknIHjB3EOQswfuR80,9864
|
|
327
335
|
camel/toolkits/linkedin_toolkit.py,sha256=wn4eXwYYlVA7doTna7k7WYhUqTBF83W79S-UJs_IQr0,8065
|
|
328
336
|
camel/toolkits/math_toolkit.py,sha256=KdI8AJ9Dbq5cfWboAYJUYgSkmADMCO5eZ6yqYkWuiIQ,3686
|
|
329
|
-
camel/toolkits/mcp_toolkit.py,sha256=
|
|
337
|
+
camel/toolkits/mcp_toolkit.py,sha256=I7M25kutT-Y6pAvoSrmhLpscTrR2pZIjxT6MCqU-CEg,23733
|
|
330
338
|
camel/toolkits/memory_toolkit.py,sha256=TeKYd5UMwgjVpuS2orb-ocFL13eUNKujvrFOruDCpm8,4436
|
|
331
339
|
camel/toolkits/meshy_toolkit.py,sha256=NbgdOBD3FYLtZf-AfonIv6-Q8-8DW129jsaP1PqI2rs,7126
|
|
332
340
|
camel/toolkits/mineru_toolkit.py,sha256=vRX9LholLNkpbJ6axfEN4pTG85aWb0PDmlVy3rAAXhg,6868
|
|
@@ -336,7 +344,7 @@ camel/toolkits/open_api_toolkit.py,sha256=Venfq8JwTMQfzRzzB7AYmYUMEX35hW0BjIv_oz
|
|
|
336
344
|
camel/toolkits/openai_agent_toolkit.py,sha256=hT2ancdQigngAiY1LNnGJzZeiBDHUxrRGv6BdZTJizc,4696
|
|
337
345
|
camel/toolkits/openbb_toolkit.py,sha256=8yBZL9E2iSgskosBQhD3pTP56oV6gerWpFjIJc_2UMo,28935
|
|
338
346
|
camel/toolkits/page_script.js,sha256=mXepZPnQNVLp_Wgb64lv7DMQIJYl_XIHJHLVt1OFZO4,13146
|
|
339
|
-
camel/toolkits/playwright_mcp_toolkit.py,sha256=
|
|
347
|
+
camel/toolkits/playwright_mcp_toolkit.py,sha256=QXoWA13Z-PXzL-TQ61gSTzgpzyoPdng0Rjm14lR445w,2988
|
|
340
348
|
camel/toolkits/pptx_toolkit.py,sha256=qQICd53hzdqi9VUa8Ps547TfPotSYLPIxX100cmBFLI,28563
|
|
341
349
|
camel/toolkits/pubmed_toolkit.py,sha256=VGl8KeyWi7pjb2kEhFBLmpBlP9ezv8JyWRHtEVTQ6nQ,12227
|
|
342
350
|
camel/toolkits/pulse_mcp_search_toolkit.py,sha256=uLUpm19uC_4xLJow0gGVS9f-5T5EW2iRAXdJ4nqJG-A,4783
|
|
@@ -349,6 +357,7 @@ camel/toolkits/semantic_scholar_toolkit.py,sha256=Rh7eA_YPxV5pvPIzhjjvpr3vtlaCni
|
|
|
349
357
|
camel/toolkits/slack_toolkit.py,sha256=Nb3w-TbUmnUWEvHE9Hbf_wkpSepm_zKQj7m19UyoFio,11194
|
|
350
358
|
camel/toolkits/stripe_toolkit.py,sha256=07swo5znGTnorafC1uYLKB4NRcJIOPOx19J7tkpLYWk,10102
|
|
351
359
|
camel/toolkits/sympy_toolkit.py,sha256=dkzGp7C7Oy-qP1rVziEk_ZOPRb37d5LoI7JKCLiTEo4,33758
|
|
360
|
+
camel/toolkits/task_planning_toolkit.py,sha256=rsFafEc6J0UOlHFYVyzC0K5PztcFsfj5jgIG6Aawnaw,4858
|
|
352
361
|
camel/toolkits/terminal_toolkit.py,sha256=gupuTvNkwnFzcFwDB_irSJ9-dXRr8yEAsYq5ChEkkHg,37230
|
|
353
362
|
camel/toolkits/thinking_toolkit.py,sha256=NyA6rDFG-WbCNt7NFODBTpqOIDtP6he6GhnZpPlA2To,8001
|
|
354
363
|
camel/toolkits/twitter_toolkit.py,sha256=Px4N8aUxUzy01LhGSWkdrC2JgwKkrY3cvxgMeJ2XYfU,15939
|
|
@@ -384,20 +393,21 @@ camel/toolkits/open_api_specs/web_scraper/openapi.yaml,sha256=u_WalQ01e8W1D27VnZ
|
|
|
384
393
|
camel/toolkits/open_api_specs/web_scraper/paths/__init__.py,sha256=OKCZrQCDwaWtXIN_2rA9FSqEvgpQRieRoHh7Ek6N16A,702
|
|
385
394
|
camel/toolkits/open_api_specs/web_scraper/paths/scraper.py,sha256=aWy1_ppV4NVVEZfnbN3tu9XA9yAPAC9bRStJ5JuXMRU,1117
|
|
386
395
|
camel/types/__init__.py,sha256=pFTg3CWGSCfwFdoxPDTf4dKV8DdJS1x-bBPuEOmtdf0,2549
|
|
387
|
-
camel/types/enums.py,sha256=
|
|
396
|
+
camel/types/enums.py,sha256=GzJAJmsB--rk_LFwrNOWbvXigk2jwnuoh7o8oh5k4Js,61673
|
|
388
397
|
camel/types/mcp_registries.py,sha256=dl4LgYtSaUhsqAKpz28k_SA9La11qxqBvDLaEuyzrFE,4971
|
|
389
398
|
camel/types/openai_types.py,sha256=8ZFzLe-zGmKNPfuVZFzxlxAX98lGf18gtrPhOgMmzus,2104
|
|
390
|
-
camel/types/unified_model_type.py,sha256=
|
|
399
|
+
camel/types/unified_model_type.py,sha256=5vHZUnDFkdiWvLXY3CMJnLdlLi5r0-zlvSdBcBXl2RQ,5486
|
|
391
400
|
camel/types/agents/__init__.py,sha256=cbvVkogPoZgcwZrgxLH6EtpGXk0kavF79nOic0Dc1vg,786
|
|
392
401
|
camel/types/agents/tool_calling_record.py,sha256=qa-vLyKvYzWprRkFFl1928xaw9CnfacIebHaqM-oY3s,1814
|
|
393
|
-
camel/utils/__init__.py,sha256=
|
|
402
|
+
camel/utils/__init__.py,sha256=qQeMHZJ8Bbgpm4tBu-LWc_P3iFjXBlVfALdKTiD_s8I,3305
|
|
394
403
|
camel/utils/async_func.py,sha256=KqoktGSWjZBuAMQ2CV0X6FRgHGlzCKLfeaWvp-f1Qz8,1568
|
|
395
404
|
camel/utils/commons.py,sha256=hJNvcegHXruFkPaFHh6r9kwHErN9j4vbkLUhSbInbNU,37067
|
|
396
405
|
camel/utils/constants.py,sha256=cqnxmpUeOwrtsR-tRO4bbOc6ZP19TLj7avjm3FONMJs,1410
|
|
397
406
|
camel/utils/deduplication.py,sha256=UHikAtOW1TTDunf2t_wa2kFbmkrXWf7HfOKwLvwCxzo,8958
|
|
398
407
|
camel/utils/filename.py,sha256=HYNc1wbSCgNR1CN21cwHxdAhpnsf5ySJ6jUDfeqOK20,2532
|
|
408
|
+
camel/utils/langfuse.py,sha256=OowR6A790XG-b0UHiTYduYvS18PvSGFdmqki2Poogo0,8578
|
|
399
409
|
camel/utils/mcp.py,sha256=iuthL8VuUXIRU34Nvx8guq7frfglpZoxewUKuAg3e1s,5077
|
|
400
|
-
camel/utils/mcp_client.py,sha256=
|
|
410
|
+
camel/utils/mcp_client.py,sha256=JXWRKcp7bO7A_fYjEV62G-oOy1etrbiRICt2SXVYcJo,37103
|
|
401
411
|
camel/utils/response_format.py,sha256=xZcx6xBxeg3A0e7R0JCMJdNm2oQ1-diqVLs0JsiCkZU,5319
|
|
402
412
|
camel/utils/token_counting.py,sha256=apkERzNoVc4sgvJvWVosvepX3KH8pVypVjrL4AA7RB4,17521
|
|
403
413
|
camel/utils/chunker/__init__.py,sha256=6iN6HL6sblIjDuJTILk-9qKcHBZ97t8b6tZCWPZ0OYI,899
|
|
@@ -410,7 +420,7 @@ camel/verifiers/math_verifier.py,sha256=tA1D4S0sm8nsWISevxSN0hvSVtIUpqmJhzqfbuMo
|
|
|
410
420
|
camel/verifiers/models.py,sha256=GdxYPr7UxNrR1577yW4kyroRcLGfd-H1GXgv8potDWU,2471
|
|
411
421
|
camel/verifiers/physics_verifier.py,sha256=c1grrRddcrVN7szkxhv2QirwY9viIRSITWeWFF5HmLs,30187
|
|
412
422
|
camel/verifiers/python_verifier.py,sha256=ogTz77wODfEcDN4tMVtiSkRQyoiZbHPY2fKybn59lHw,20558
|
|
413
|
-
camel_ai-0.2.
|
|
414
|
-
camel_ai-0.2.
|
|
415
|
-
camel_ai-0.2.
|
|
416
|
-
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
|