FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
OpenShell/python/openshell/__init__.py at pull-request/2925 · NVIDIA/OpenShell · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
NVIDIA
/
OpenShell
Public
Notifications
You must be signed in to change notification settings
Fork
1.2k
Star
8.4k
Code
Issues
378
Pull requests
133
Discussions
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
OpenShell
/
python
/
openshell
/
__init__.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
48 lines (42 loc) · 998 Bytes
Breadcrumbs
OpenShell
/
python
/
openshell
/
__init__.py
Copy path
File metadata and controls
48 lines (42 loc) · 998 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
39
40
41
42
43
44
45
46
47
48
# SPDX-FileCopyrightText: Copyright (c) 2025-2026 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
# SPDX-License-Identifier: Apache-2.0
"""OpenShell - Agent execution and management SDK."""
from
__future__
import
annotations
from
.
sandbox
import
(
ClientCredentialsAuth
,
ExecChunk
,
ExecResult
,
InferenceRouteClient
,
InferenceRouteConfig
,
Sandbox
,
SandboxClient
,
SandboxError
,
SandboxRef
,
SandboxSession
,
SandboxStatusRef
,
TlsConfig
,
WorkspaceClient
,
WorkspaceRef
,
)
try
:
from
importlib
.
metadata
import
version
__version__
=
version
(
"openshell"
)
except
Exception
:
__version__
=
"0.0.0"
__all__
=
[
"ClientCredentialsAuth"
,
"ExecChunk"
,
"ExecResult"
,
"InferenceRouteClient"
,
"InferenceRouteConfig"
,
"Sandbox"
,
"SandboxClient"
,
"SandboxError"
,
"SandboxRef"
,
"SandboxSession"
,
"SandboxStatusRef"
,
"TlsConfig"
,
"WorkspaceClient"
,
"WorkspaceRef"
,
"__version__"
,
]
Back
|
FazBrowse Home
|
New Git URL