-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Expand file tree
/
Copy path__init__.py
More file actions
38 lines (31 loc) · 1.11 KB
/
__init__.py
File metadata and controls
38 lines (31 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
"""Declaw sandbox backend for the OpenAI Agents SDK.
Install:
pip install "openai-agents[declaw]"
Credentials (env):
DECLAW_API_KEY your declaw API key
DECLAW_DOMAIN e.g. ``api.declaw.ai``
Docs:
https://docs.declaw.ai
This module is a thin re-export of the adapter that lives in the
``declaw`` PyPI package. Declaw owns the adapter code; breaking
changes bump the declaw pin, not this package.
"""
from __future__ import annotations
from declaw.openai import ( # type: ignore[import-untyped]
DeclawCloudBucketMountStrategy as DeclawCloudBucketMountStrategy,
DeclawSandboxClient as DeclawSandboxClient,
DeclawSandboxClientOptions as DeclawSandboxClientOptions,
DeclawSandboxSession as DeclawSandboxSession,
DeclawSandboxSessionState as DeclawSandboxSessionState,
DeclawSandboxTimeouts as DeclawSandboxTimeouts,
DeclawSandboxType as DeclawSandboxType,
)
__all__ = [
"DeclawCloudBucketMountStrategy",
"DeclawSandboxClient",
"DeclawSandboxClientOptions",
"DeclawSandboxSession",
"DeclawSandboxSessionState",
"DeclawSandboxTimeouts",
"DeclawSandboxType",
]