8000 No browser-use recording: "No browser session was recorded. This might be due to an outdated SDK version." · Issue #634 · lmnr-ai/lmnr · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
No browser-use recording: "No browser session was recorded. This might be due to an outdated SDK version." #634
Open
@arne-allseek

Description

@arne-allseek

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())

Image

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions

    0