Web Agents

https://x.com/LumiTeh / https://www.lumiteh.com/ / https://github.com/LumiTeh-hub

Overview

Run autonomous LLM-powered agents that can browse websites, carry out complex workflows, and accomplish tasks using natural language instructions.


​Agent Management

Python SDK

The following snippet shows how to manage your agents using the LumiTeh Python SDK.CopyAsk AI

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

  • You can check active agents using lumiteh.agents.list().

Last updated