Skip to content

Commit 13438dd

Browse files
[Feat] Add Google vertex ai veo toolkit for video generation (#3023)
Co-authored-by: Wendong-Fan <133094783+Wendong-Fan@users.noreply.github.com>
1 parent ab43fa1 commit 13438dd

File tree

7 files changed

+1205
-1
lines changed

7 files changed

+1205
-1
lines changed

camel/storages/object_storages/google_cloud.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ def __init__(
4646
create_if_not_exists: bool = True,
4747
anonymous: bool = False,
4848
) -> None:
49-
from google.cloud import storage
49+
from google.cloud import storage # type: ignore[attr-defined]
5050

5151
self.create_if_not_exists = create_if_not_exists
5252

camel/toolkits/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@
8989
from .screenshot_toolkit import ScreenshotToolkit
9090
from .message_integration import ToolkitMessageIntegration
9191
from .notion_mcp_toolkit import NotionMCPToolkit
92+
from .vertex_ai_veo_toolkit import VertexAIVeoToolkit
9293
from .minimax_mcp_toolkit import MinimaxMCPToolkit
9394

9495
__all__ = [
@@ -168,5 +169,6 @@
168169
'RegisteredAgentToolkit',
169170
'ToolkitMessageIntegration',
170171
'NotionMCPToolkit',
172+
'VertexAIVeoToolkit',
171173
'MinimaxMCPToolkit',
172174
]

0 commit comments

Comments
 (0)