This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import asyncio | |
from browser_use import Agent | |
from browser_use.agent.views import AgentHistoryList | |
from langchain_ollama import ChatOllama | |
async def run_search(): | |
agent = Agent( | |
task=('search for browser-use and summarize the first three results on google.com (do not click or attempt to sign in)'), | |
llm=ChatOllama( |
OlderNewer