Deploy an agent
Drop a zipped bot directory below, give it a name, hit deploy. The worker builds a venv from your requirements.txt and starts bot.py. No CLI required.
✨
Don't have a bot written yet?
Describe what you want and Lightsei generates one for you that coordinates with your existing agents. Generate a bot →
What goes in the zip?
The bundle is whatever the worker should run. Minimum:
my-bot/ bot.py # entrypoint — must define main() requirements.txt # pip-install before bot.py runs
On startup the worker calls pip install -r requirements.txt inside a fresh venv, then runs python bot.py. Workspace secrets you've saved on /account (e.g. LIGHTSEI_API_KEY, OPENAI_API_KEY) get injected as env vars.