Skip to content

Commit 81faca1

Browse files
sundargthbSundar Raghavan
andauthored
feat: Add control plane CRUD operations and config helpers for browser and code interpreter (#152)
* feat: Add control plane CRUD operations and config helpers for browser and code interpreter --------- Co-authored-by: Sundar Raghavan <[email protected]>
1 parent 72a16be commit 81faca1

File tree

9 files changed

+2527
-300
lines changed

9 files changed

+2527
-300
lines changed

src/bedrock_agentcore/tools/__init__.py

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,28 @@
22

33
from .browser_client import BrowserClient, browser_session
44
from .code_interpreter_client import CodeInterpreter, code_session
5+
from .config import (
6+
BrowserConfiguration,
7+
BrowserSigningConfiguration,
8+
CodeInterpreterConfiguration,
9+
NetworkConfiguration,
10+
RecordingConfiguration,
11+
ViewportConfiguration,
12+
VpcConfig,
13+
create_browser_config,
14+
)
515

6-
__all__ = ["BrowserClient", "browser_session", "CodeInterpreter", "code_session"]
16+
__all__ = [
17+
"BrowserClient",
18+
"browser_session",
19+
"CodeInterpreter",
20+
"code_session",
21+
"BrowserConfiguration",
22+
"BrowserSigningConfiguration",
23+
"CodeInterpreterConfiguration",
24+
"NetworkConfiguration",
25+
"RecordingConfiguration",
26+
"ViewportConfiguration",
27+
"VpcConfig",
28+
"create_browser_config",
29+
]

0 commit comments

Comments
 (0)