Web Agents
https://x.com/LumiTeh / https://www.lumiteh.com/ / https://github.com/LumiTeh-hub
Overview
Agent Management
Python SDK
from lumiteh_sdk import LumiTehClient
lumiteh = LumiTehClient()
with lumiteh.Session() as session:
agent = lumiteh.Agent(session=session, max_steps=10)
response = agent.run(task="Find the best Italian restaurant in SF and book a table for 2 at 7pm today")
print(f"Agent terminated with status: {response.success} and answer: {response.answer}")
Key points
Last updated