Skip to content

Commit 79b61a9

Browse files
committed
Merge remote-tracking branch 'upstream/main'
2 parents 456988f + 566bca7 commit 79b61a9

26 files changed

+715
-645
lines changed

.env.example

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ AZURE_OPENAI_API_KEY=
1111
DEEPSEEK_ENDPOINT=https://api.deepseek.com
1212
DEEPSEEK_API_KEY=
1313

14+
OLLAMA_ENDPOINT=http://localhost:11434
15+
1416
# Set to false to disable anonymized telemetry
1517
ANONYMIZED_TELEMETRY=true
1618

@@ -22,12 +24,16 @@ CHROME_PATH=
2224
CHROME_USER_DATA=
2325
CHROME_DEBUGGING_PORT=9222
2426
CHROME_DEBUGGING_HOST=localhost
25-
CHROME_PERSISTENT_SESSION=false # Set to true to keep browser open between AI tasks
27+
# Set to true to keep browser open between AI tasks
28+
CHROME_PERSISTENT_SESSION=false
2629

2730
# Display settings
28-
RESOLUTION=1920x1080x24 # Format: WIDTHxHEIGHTxDEPTH
29-
RESOLUTION_WIDTH=1920 # Width in pixels
30-
RESOLUTION_HEIGHT=1080 # Height in pixels
31+
# Format: WIDTHxHEIGHTxDEPTH
32+
RESOLUTION=1920x1080x24
33+
# Width in pixels
34+
RESOLUTION_WIDTH=1920
35+
# Height in pixels
36+
RESOLUTION_HEIGHT=1080
3137

3238
# VNC settings
3339
VNC_PASSWORD=youvncpassword

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ FROM python:3.11-slim
33
# Install system dependencies
44
RUN apt-get update && apt-get install -y \
55
wget \
6+
netcat-traditional \
67
gnupg \
78
curl \
89
unzip \

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,6 +179,6 @@ playwright install
179179
```
180180

181181
## Changelog
182-
182+
- [x] **2025/01/26:** Thanks to @vvincent1234. Now browser-use-webui can combine with DeepSeek-r1 to engage in deep thinking!
183183
- [x] **2025/01/10:** Thanks to @casistack. Now we have Docker Setup option and also Support keep browser open between tasks.[Video tutorial demo](https://github.com/browser-use/web-ui/issues/1#issuecomment-2582511750).
184184
- [x] **2025/01/06:** Thanks to @richard-devbot. A New and Well-Designed WebUI is released. [Video tutorial demo](https://github.com/warmshao/browser-use-webui/issues/1#issuecomment-2573393113).

SECURITY.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
## Reporting Security Issues
2+
3+
If you believe you have found a security vulnerability in browser-use, please report it through coordinated disclosure.
4+
5+
**Please do not report security vulnerabilities through the repository issues, discussions, or pull requests.**
6+
7+
Instead, please open a new [Github security advisory](https://github.com/browser-use/web-ui/security/advisories/new).
8+
9+
Please include as much of the information listed below as you can to help me better understand and resolve the issue:
10+
11+
* The type of issue (e.g., buffer overflow, SQL injection, or cross-site scripting)
12+
* Full paths of source file(s) related to the manifestation of the issue
13+
* The location of the affected source code (tag/branch/commit or direct URL)
14+
* Any special configuration required to reproduce the issue
15+
* Step-by-step instructions to reproduce the issue
16+
* Proof-of-concept or exploit code (if possible)
17+
* Impact of the issue, including how an attacker might exploit the issue
18+
19+
This information will help me triage your report more quickly.

docker-compose.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
services:
22
browser-use-webui:
3+
platform: linux/amd64
34
build:
45
context: .
56
dockerfile: Dockerfile

requirements.txt

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
browser-use==0.1.19
2-
langchain-google-genai==2.0.8
1+
browser-use==0.1.29
32
pyperclip==1.9.0
4-
gradio==5.9.1
5-
langchain-ollama==0.2.2
6-
langchain-openai==0.2.14
7-
langchain-mistralai==0.2.4
3+
gradio==5.10.0

src/__init__.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +0,0 @@
1-
# -*- coding: utf-8 -*-
2-
# @Time : 2025/1/1
3-
# @Author : wenshao
4-
5-
# @Project : browser-use-webui
6-
# @FileName: __init__.py.py

src/agent/__init__.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +0,0 @@
1-
# -*- coding: utf-8 -*-
2-
# @Time : 2025/1/1
3-
# @Author : wenshao
4-
5-
# @Project : browser-use-webui
6-
# @FileName: __init__.py.py

0 commit comments

Comments
 (0)