pip install git+https://github.com/elliottech/lighter-python.git
pip install gradio
python -c "
import lighter, asyncio
async def t():
    c = lighter.ApiClient()
    try:
        api = lighter.RootApi(c)
        s = await api.status()
        print('status:', s)
    finally:
        await c.close()
asyncio.run(t())
"
