Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
change
sglang
Commits
b688fd85
Unverified
Commit
b688fd85
authored
Jul 29, 2024
by
Eric Yoon
Committed by
GitHub
Jul 28, 2024
Browse files
Lazy-import third-party backends (#794)
parent
5bd89924
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
4 deletions
+29
-4
python/sglang/__init__.py
python/sglang/__init__.py
+29
-4
No files found.
python/sglang/__init__.py
View file @
b688fd85
import
importlib
class
LazyImport
:
def
__init__
(
self
,
module_name
,
class_name
):
self
.
module_name
=
module_name
self
.
class_name
=
class_name
self
.
_module
=
None
def
_load
(
self
):
if
self
.
_module
is
None
:
module
=
importlib
.
import_module
(
self
.
module_name
)
self
.
_module
=
getattr
(
module
,
self
.
class_name
)
return
self
.
_module
def
__getattr__
(
self
,
name
):
module
=
self
.
_load
()
return
getattr
(
module
,
name
)
def
__call__
(
self
,
*
args
,
**
kwargs
):
module
=
self
.
_load
()
return
module
(
*
args
,
**
kwargs
)
# SGL API Components
# SGL API Components
from
sglang.api
import
(
from
sglang.api
import
(
Runtime
,
Runtime
,
...
@@ -24,11 +48,12 @@ from sglang.api import (
...
@@ -24,11 +48,12 @@ from sglang.api import (
from
sglang.global_config
import
global_config
from
sglang.global_config
import
global_config
# SGL Backends
# SGL Backends
from
sglang.lang.backend.anthropic
import
Anthropic
from
sglang.lang.backend.litellm
import
LiteLLM
from
sglang.lang.backend.openai
import
OpenAI
from
sglang.lang.backend.runtime_endpoint
import
RuntimeEndpoint
from
sglang.lang.backend.runtime_endpoint
import
RuntimeEndpoint
from
sglang.lang.backend.vertexai
import
VertexAI
Anthropic
=
LazyImport
(
"sglang.lang.backend.anthropic"
,
"Anthropic"
)
LiteLLM
=
LazyImport
(
"sglang.lang.backend.litellm"
,
"LiteLLM"
)
OpenAI
=
LazyImport
(
"sglang.lang.backend.openai"
,
"OpenAI"
)
VertexAI
=
LazyImport
(
"sglang.lang.backend.vertexai"
,
"VertexAI"
)
from
.version
import
__version__
from
.version
import
__version__
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment