camel-ai 0.2.60__py3-none-any.whl → 0.2.62__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 +159 -8
- camel/agents/mcp_agent.py +5 -5
- camel/configs/anthropic_config.py +6 -5
- camel/{data_collector → data_collectors}/alpaca_collector.py +1 -1
- camel/{data_collector → data_collectors}/sharegpt_collector.py +1 -1
- camel/datagen/evol_instruct/scorer.py +22 -23
- camel/datagen/evol_instruct/templates.py +46 -46
- camel/datasets/static_dataset.py +144 -0
- camel/loaders/__init__.py +5 -2
- camel/loaders/chunkr_reader.py +117 -91
- camel/loaders/mistral_reader.py +148 -0
- camel/memories/blocks/chat_history_block.py +1 -2
- camel/models/model_manager.py +7 -3
- camel/retrievers/auto_retriever.py +20 -1
- camel/{runtime → runtimes}/daytona_runtime.py +1 -1
- camel/{runtime → runtimes}/docker_runtime.py +1 -1
- camel/{runtime → runtimes}/llm_guard_runtime.py +2 -2
- camel/{runtime → runtimes}/remote_http_runtime.py +1 -1
- camel/{runtime → runtimes}/ubuntu_docker_runtime.py +1 -1
- camel/societies/workforce/base.py +7 -3
- camel/societies/workforce/single_agent_worker.py +2 -1
- camel/societies/workforce/worker.py +5 -3
- camel/societies/workforce/workforce.py +65 -24
- camel/storages/__init__.py +2 -0
- camel/storages/vectordb_storages/__init__.py +2 -0
- camel/storages/vectordb_storages/faiss.py +712 -0
- camel/toolkits/__init__.py +4 -0
- camel/toolkits/async_browser_toolkit.py +75 -523
- camel/toolkits/bohrium_toolkit.py +318 -0
- camel/toolkits/browser_toolkit.py +215 -538
- camel/toolkits/browser_toolkit_commons.py +568 -0
- camel/toolkits/file_write_toolkit.py +80 -31
- camel/toolkits/mcp_toolkit.py +477 -665
- camel/toolkits/pptx_toolkit.py +777 -0
- camel/toolkits/wolfram_alpha_toolkit.py +5 -1
- camel/types/enums.py +13 -1
- camel/utils/__init__.py +2 -0
- camel/utils/commons.py +27 -0
- camel/utils/mcp_client.py +979 -0
- {camel_ai-0.2.60.dist-info → camel_ai-0.2.62.dist-info}/METADATA +14 -1
- {camel_ai-0.2.60.dist-info → camel_ai-0.2.62.dist-info}/RECORD +53 -47
- /camel/{data_collector → data_collectors}/__init__.py +0 -0
- /camel/{data_collector → data_collectors}/base.py +0 -0
- /camel/{runtime → runtimes}/__init__.py +0 -0
- /camel/{runtime → runtimes}/api.py +0 -0
- /camel/{runtime → runtimes}/base.py +0 -0
- /camel/{runtime → runtimes}/configs.py +0 -0
- /camel/{runtime → runtimes}/utils/__init__.py +0 -0
- /camel/{runtime → runtimes}/utils/function_risk_toolkit.py +0 -0
- /camel/{runtime → runtimes}/utils/ignore_risk_toolkit.py +0 -0
- {camel_ai-0.2.60.dist-info → camel_ai-0.2.62.dist-info}/WHEEL +0 -0
- {camel_ai-0.2.60.dist-info → camel_ai-0.2.62.dist-info}/licenses/LICENSE +0 -0
camel/toolkits/__init__.py
CHANGED
|
@@ -29,6 +29,7 @@ from .linkedin_toolkit import LinkedInToolkit
|
|
|
29
29
|
from .reddit_toolkit import RedditToolkit
|
|
30
30
|
from .meshy_toolkit import MeshyToolkit
|
|
31
31
|
from .openbb_toolkit import OpenBBToolkit
|
|
32
|
+
from .bohrium_toolkit import BohriumToolkit
|
|
32
33
|
|
|
33
34
|
from .base import BaseToolkit
|
|
34
35
|
from .google_maps_toolkit import GoogleMapsToolkit
|
|
@@ -61,6 +62,7 @@ from .mcp_toolkit import MCPToolkit
|
|
|
61
62
|
from .browser_toolkit import BrowserToolkit
|
|
62
63
|
from .async_browser_toolkit import AsyncBrowserToolkit
|
|
63
64
|
from .file_write_toolkit import FileWriteToolkit
|
|
65
|
+
from .pptx_toolkit import PPTXToolkit
|
|
64
66
|
from .terminal_toolkit import TerminalToolkit
|
|
65
67
|
from .pubmed_toolkit import PubMedToolkit
|
|
66
68
|
from .data_commons_toolkit import DataCommonsToolkit
|
|
@@ -123,6 +125,7 @@ __all__ = [
|
|
|
123
125
|
'BrowserToolkit',
|
|
124
126
|
'AsyncBrowserToolkit',
|
|
125
127
|
'FileWriteToolkit',
|
|
128
|
+
'PPTXToolkit',
|
|
126
129
|
'TerminalToolkit',
|
|
127
130
|
'PubMedToolkit',
|
|
128
131
|
'DataCommonsToolkit',
|
|
@@ -136,4 +139,5 @@ __all__ = [
|
|
|
136
139
|
'ACIToolkit',
|
|
137
140
|
'PlaywrightMCPToolkit',
|
|
138
141
|
'WolframAlphaToolkit',
|
|
142
|
+
'BohriumToolkit',
|
|
139
143
|
]
|