mirror of
https://github.com/bentoml/OpenLLM.git
synced 2026-04-21 15:39:36 -04:00
refactor: reduce compiled cacheline
Signed-off-by: Aaron Pham <29749331+aarnphm@users.noreply.github.com>
This commit is contained in:
@@ -1,6 +1,3 @@
|
||||
# fmt: off
|
||||
import openllm_client as _client
|
||||
|
||||
|
||||
def __dir__():return sorted(dir(_client))
|
||||
def __getattr__(it):return getattr(_client, it)
|
||||
def __dir__():import openllm_client as _client;return sorted(dir(_client))
|
||||
def __getattr__(it):import openllm_client as _client;return getattr(_client, it)
|
||||
|
||||
Reference in New Issue
Block a user