Skip to content

how to make it open the browser installed on my system, with google logged in instead of it opening a chromium window #63

Description

@Moracus

Here's my script:-

import asyncio
import os
from seeact.agent import SeeActAgent

os.environ["OPENAI_API_KEY"] = "api_key"

async def run_agent():
    agent = SeeActAgent(model="gpt-4o",default_task="Make a new doc in google docs",browser_app="")
    await agent.start()
    while not agent.complete_flag:
        prediction_dict = await agent.predict()
        await agent.execute(prediction_dict)
    await agent.stop()

asyncio.run(run_agent())

Metadata

Metadata

Assignees

No one assigned

    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