mirror of
https://github.com/bentoml/OpenLLM.git
synced 2026-01-31 02:41:51 -05:00
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
30 lines
803 B
Python
Generated
30 lines
803 B
Python
Generated
"""This type stub file was generated by pyright."""
|
|
|
|
class Context:
|
|
"""A context."""
|
|
|
|
def __init__(self, name, orchestrator=..., host=..., endpoints=..., tls=...) -> None: ...
|
|
def set_endpoint(self, name=..., host=..., tls_cfg=..., skip_tls_verify=..., def_namespace=...): ...
|
|
def inspect(self): ...
|
|
@classmethod
|
|
def load_context(cls, name): ...
|
|
def save(self): ...
|
|
def remove(self): ...
|
|
def __repr__(self): ...
|
|
def __call__(self): ...
|
|
def is_docker_host(self): ...
|
|
@property
|
|
def Name(self): ...
|
|
@property
|
|
def Host(self): ...
|
|
@property
|
|
def Orchestrator(self): ...
|
|
@property
|
|
def Metadata(self): ...
|
|
@property
|
|
def TLSConfig(self): ...
|
|
@property
|
|
def TLSMaterial(self): ...
|
|
@property
|
|
def Storage(self): ...
|