Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
使用 TokenLab 模型執行 Browser Use 代理
ChatOpenAILike
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, )