[Add] browser-use and main.py
This commit is contained in:
parent
08e64bdf45
commit
96914d44ac
221 changed files with 30952 additions and 1 deletions
49
browser-use/examples/use-cases/online_coding_agent.py
Normal file
49
browser-use/examples/use-cases/online_coding_agent.py
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
# Goal: Implements a multi-agent system for online code editors, with separate agents for coding and execution.
|
||||
|
||||
import asyncio
|
||||
import os
|
||||
import sys
|
||||
|
||||
sys.path.append(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))))
|
||||
|
||||
from dotenv import load_dotenv
|
||||
|
||||
load_dotenv()
|
||||
|
||||
from langchain_openai import ChatOpenAI
|
||||
|
||||
from browser_use import Agent, Browser
|
||||
|
||||
if not os.getenv('OPENAI_API_KEY'):
|
||||
raise ValueError('OPENAI_API_KEY is not set. Please add it to your environment variables.')
|
||||
|
||||
|
||||
async def main():
|
||||
browser = Browser()
|
||||
async with await browser.new_context() as context:
|
||||
model = ChatOpenAI(model='gpt-4o')
|
||||
|
||||
# Initialize browser agent
|
||||
agent1 = Agent(
|
||||
task='Open an online code editor programiz.',
|
||||
llm=model,
|
||||
browser_context=context,
|
||||
)
|
||||
executor = Agent(
|
||||
task='Executor. Execute the code written by the coder and suggest some updates if there are errors.',
|
||||
llm=model,
|
||||
browser_context=context,
|
||||
)
|
||||
|
||||
coder = Agent(
|
||||
task='Coder. Your job is to write and complete code. You are an expert coder. Code a simple calculator. Write the code on the coding interface after agent1 has opened the link.',
|
||||
llm=model,
|
||||
browser_context=context,
|
||||
)
|
||||
await agent1.run()
|
||||
await executor.run()
|
||||
await coder.run()
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
asyncio.run(main())
|
||||
Loading…
Add table
Add a link
Reference in a new issue