mirror of
https://github.com/bentoml/OpenLLM.git
synced 2026-04-21 23:47:23 -04:00
10 lines
130 B
Python
10 lines
130 B
Python
from _openllm_tiny import _termui
|
|
|
|
|
|
def __dir__():
|
|
return dir(_termui)
|
|
|
|
|
|
def __getattr__(name):
|
|
return getattr(_termui, name)
|