chore: import upstream snapshot with attribution
Test Browser Use CLI Install / uv pip install (ubuntu-latest) (push) Failing after 1s
Test Browser Use CLI Install / uvx browser-use from local wheel (push) Failing after 1s
Test Browser Use CLI Install / uvx browser-use[cli] from PyPI (push) Failing after 1s
package / pip-install-on-macos-latest-py-3.11 (push) Has been skipped
package / pip-install-on-macos-latest-py-3.13 (push) Has been skipped
package / pip-install-on-ubuntu-latest-py-3.11 (push) Has been skipped
package / pip-install-on-windows-latest-py-3.13 (push) Has been skipped
cloud_evals / trigger_cloud_eval_image_build (push) Failing after 1s
docker / build_publish_image (push) Failing after 1s
Test Browser Use CLI Install / browser-use skill sync (push) Failing after 1s
lint / code-style (push) Failing after 0s
lint / type-checker (push) Failing after 1s
package / pip-build (push) Failing after 1s
lint / syntax-errors (push) Failing after 3s
package / pip-install-on-ubuntu-latest-py-3.13 (push) Has been skipped
package / pip-install-on-windows-latest-py-3.11 (push) Has been skipped
test / ${{ matrix.test_filename }} (push) Has been skipped
test / evaluate-tasks (push) Has been skipped
test / setup-chromium (push) Failing after 2s
test / find_tests (push) Failing after 2s
Test Browser Use CLI Install / uv pip install (windows-latest) (push) Has been cancelled
Test Browser Use CLI Install / uv pip install (macos-latest) (push) Has been cancelled
Test Browser Use CLI Install / uv pip install (ubuntu-latest) (push) Failing after 1s
Test Browser Use CLI Install / uvx browser-use from local wheel (push) Failing after 1s
Test Browser Use CLI Install / uvx browser-use[cli] from PyPI (push) Failing after 1s
package / pip-install-on-macos-latest-py-3.11 (push) Has been skipped
package / pip-install-on-macos-latest-py-3.13 (push) Has been skipped
package / pip-install-on-ubuntu-latest-py-3.11 (push) Has been skipped
package / pip-install-on-windows-latest-py-3.13 (push) Has been skipped
cloud_evals / trigger_cloud_eval_image_build (push) Failing after 1s
docker / build_publish_image (push) Failing after 1s
Test Browser Use CLI Install / browser-use skill sync (push) Failing after 1s
lint / code-style (push) Failing after 0s
lint / type-checker (push) Failing after 1s
package / pip-build (push) Failing after 1s
lint / syntax-errors (push) Failing after 3s
package / pip-install-on-ubuntu-latest-py-3.13 (push) Has been skipped
package / pip-install-on-windows-latest-py-3.11 (push) Has been skipped
test / ${{ matrix.test_filename }} (push) Has been skipped
test / evaluate-tasks (push) Has been skipped
test / setup-chromium (push) Failing after 2s
test / find_tests (push) Failing after 2s
Test Browser Use CLI Install / uv pip install (windows-latest) (push) Has been cancelled
Test Browser Use CLI Install / uv pip install (macos-latest) (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,123 @@
|
||||
import os
|
||||
import sys
|
||||
|
||||
sys.path.append(os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))))
|
||||
|
||||
from dotenv import load_dotenv
|
||||
|
||||
load_dotenv()
|
||||
|
||||
import discord # type: ignore
|
||||
from discord.ext import commands # type: ignore
|
||||
|
||||
from browser_use.agent.service import Agent
|
||||
from browser_use.browser import BrowserProfile, BrowserSession
|
||||
from browser_use.llm import BaseChatModel
|
||||
|
||||
|
||||
class DiscordBot(commands.Bot):
|
||||
"""Discord bot implementation for Browser-Use tasks.
|
||||
|
||||
This bot allows users to run browser automation tasks through Discord messages.
|
||||
Processes tasks asynchronously and sends the result back to the user in response to the message.
|
||||
Messages must start with the configured prefix (default: "$bu") followed by the task description.
|
||||
|
||||
Args:
|
||||
llm (BaseChatModel): Language model instance to use for task processing
|
||||
prefix (str, optional): Command prefix for triggering browser tasks. Defaults to "$bu"
|
||||
ack (bool, optional): Whether to acknowledge task receipt with a message. Defaults to False
|
||||
browser_profile (BrowserProfile, optional): Browser profile settings.
|
||||
Defaults to headless mode
|
||||
|
||||
Usage:
|
||||
```python
|
||||
from browser_use import ChatOpenAI
|
||||
|
||||
llm = ChatOpenAI()
|
||||
bot = DiscordBot(llm=llm, prefix='$bu', ack=True)
|
||||
bot.run('YOUR_DISCORD_TOKEN')
|
||||
```
|
||||
|
||||
Discord Usage:
|
||||
Send messages starting with the prefix:
|
||||
"$bu search for python tutorials"
|
||||
"""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
llm: BaseChatModel,
|
||||
prefix: str = '$bu',
|
||||
ack: bool = False,
|
||||
browser_profile: BrowserProfile = BrowserProfile(headless=True),
|
||||
):
|
||||
self.llm = llm
|
||||
self.prefix = prefix.strip()
|
||||
self.ack = ack
|
||||
self.browser_profile = browser_profile
|
||||
|
||||
# Define intents.
|
||||
intents = discord.Intents.default() # type: ignore
|
||||
intents.message_content = True # Enable message content intent
|
||||
intents.members = True # Enable members intent for user info
|
||||
|
||||
# Initialize the bot with a command prefix and intents.
|
||||
super().__init__(command_prefix='!', intents=intents) # You may not need prefix, just here for flexibility
|
||||
|
||||
# self.tree = app_commands.CommandTree(self) # Initialize command tree for slash commands.
|
||||
|
||||
async def on_ready(self):
|
||||
"""Called when the bot is ready."""
|
||||
try:
|
||||
print(f'We have logged in as {self.user}')
|
||||
cmds = await self.tree.sync() # Sync the command tree with discord
|
||||
|
||||
except Exception as e:
|
||||
print(f'Error during bot startup: {e}')
|
||||
|
||||
async def on_message(self, message):
|
||||
"""Called when a message is received."""
|
||||
try:
|
||||
if message.author == self.user: # Ignore the bot's messages
|
||||
return
|
||||
if message.content.strip().startswith(f'{self.prefix} '):
|
||||
if self.ack:
|
||||
try:
|
||||
await message.reply(
|
||||
'Starting browser use task...',
|
||||
mention_author=True, # Don't ping the user
|
||||
)
|
||||
except Exception as e:
|
||||
print(f'Error sending start message: {e}')
|
||||
|
||||
try:
|
||||
agent_message = await self.run_agent(message.content.replace(f'{self.prefix} ', '').strip())
|
||||
await message.channel.send(content=f'{agent_message}', reference=message, mention_author=True)
|
||||
except Exception as e:
|
||||
await message.channel.send(
|
||||
content=f'Error during task execution: {str(e)}',
|
||||
reference=message,
|
||||
mention_author=True,
|
||||
)
|
||||
|
||||
except Exception as e:
|
||||
print(f'Error in message handling: {e}')
|
||||
|
||||
# await self.process_commands(message) # Needed to process bot commands
|
||||
|
||||
async def run_agent(self, task: str) -> str:
|
||||
try:
|
||||
browser_session = BrowserSession(browser_profile=self.browser_profile)
|
||||
agent = Agent(task=(task), llm=self.llm, browser_session=browser_session)
|
||||
result = await agent.run()
|
||||
|
||||
agent_message = None
|
||||
if result.is_done():
|
||||
agent_message = result.history[-1].result[0].extracted_content
|
||||
|
||||
if agent_message is None:
|
||||
agent_message = 'Oops! Something went wrong while running Browser-Use.'
|
||||
|
||||
return agent_message
|
||||
|
||||
except Exception as e:
|
||||
raise Exception(f'Browser-use task failed: {str(e)}')
|
||||
Reference in New Issue
Block a user