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.
使用 AI Sonar 模型运行 Browser Use 智能体
ChatOpenAILike
export API_KEY="sk-your-api-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["API_KEY"], base_url="https://api.aisonar.dev/v1", ) agent = Agent( task="Compare the top search results for AI Sonar integrations", llm=llm, )