Quickstart agent
https://x.com/LumiTeh / https://www.lumiteh.com/ / https://github.com/LumiTeh-hub
Guide
1
2
uv venv --python 3.11
source .venv/bin/activate
uv pip install lumiteh-sdk3
from lumiteh_sdk import LumiTehClient
client = LumiTehClient(api_key="your-key-here")
# create a browser session resource
with client.Session(headless=False) as session:
# attach an agent to session
agent = client.Agent(
session=session,
reasoning_model="gemini/gemini-2.0-flash",
max_steps=5,
)
# run the agent on a task
response = agent.run(
task="doom scroll cat memes on google images"
)
Next Steps
Last updated