Overview
Browser Use can call TokenLab throughChatOpenAILike, the OpenAI-compatible chat model wrapper.
Type: Browser automation agent frameworkPrimary Path: OpenAI-compatible Chat CompletionsSupport Confidence: Supported OpenAI-compatible path
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Run Browser Use agents with TokenLab models
ChatOpenAILike, the OpenAI-compatible chat model wrapper.
export TOKENLAB_API_KEY="sk-your-tokenlab-key"
import os
from browser_use import Agent
from browser_use.llm.openai.like import ChatOpenAILike
llm = ChatOpenAILike(
model="claude-sonnet-5",
api_key=os.environ["TOKENLAB_API_KEY"],
base_url="https://api.tokenlab.sh/v1",
)
agent = Agent(
task="Compare the top search results for TokenLab integrations",
llm=llm,
)