Open
Description
I’m encountering the following issue when performing observability for Browser-use.
“No browser session was recorded. This might be due to an outdated SDK version.”
I’m using the latest versions:
lmnr[all]==0.6.10
browser-use==0.2.7
Just using the quickstart example:
from langchain_openai import ChatOpenAI
from browser_use import Agent
import asyncio
from lmnr import Laminar
# this line auto-instruments Browser Use and any browser you use (local or remote)
Laminar.initialize(project_api_key="...",
base_url="http://localhost:8000",
http_port=8000,
grpc_port=8001,)
async def main():
agent = Agent(
task="open google, search Laminar AI",
llm=ChatOpenAI(model="gpt-4o-mini"),
)
result = await agent.run()
print(result)
asyncio.run(main())
Metadata
Metadata
Assignees
Labels
No labels