mirror of
https://github.com/bentoml/OpenLLM.git
synced 2026-04-21 07:29:41 -04:00
Generally correctly format it with ruff format and manual style Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com>
11 lines
170 B
Python
11 lines
170 B
Python
def __dir__():
|
|
import openllm_client as _client
|
|
|
|
return sorted(dir(_client))
|
|
|
|
|
|
def __getattr__(it):
|
|
import openllm_client as _client
|
|
|
|
return getattr(_client, it)
|