Skip to content

Commit b96abfe

Browse files
committed
update readme
1 parent cab4871 commit b96abfe

File tree

2 files changed

+76
-2
lines changed

2 files changed

+76
-2
lines changed

README.md

Lines changed: 75 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,75 @@
1-
# dart-gui.github.io
1+
# DART-GUI
2+
3+
Project website for DART-GUI
4+
5+
## 🚀 Demo
6+
7+
Visit the deployed website at: [https://computer-use-agents.github.io/dart-gui/](https://computer-use-agents.github.io/dart-gui/)
8+
9+
## 🛠️ Tech Stack
10+
11+
- **Frontend Framework**: Vue 3
12+
- **UI Components**: Element Plus
13+
- **Build Tool**: Vite
14+
- **HTTP Client**: Axios
15+
16+
## 📋 Features
17+
18+
- Interactive demonstration of multi-modal agent tuning
19+
- Visualization of VLM-driven agent capabilities
20+
- Tool usage efficiency metrics
21+
22+
## 🔧 Development Setup
23+
24+
### Prerequisites
25+
26+
- [Node.js](https://nodejs.org/) (v16 or higher)
27+
- [pnpm](https://pnpm.io/) (recommended) or npm
28+
29+
### Installation
30+
31+
1. Clone the repository
32+
```bash
33+
git clone https://github.com/Computer-use-agents/DART-GUI.git
34+
cd DART-GUI
35+
```
36+
37+
2. Install dependencies
38+
```bash
39+
pnpm install
40+
```
41+
42+
3. Start the development server
43+
```bash
44+
pnpm dev
45+
```
46+
47+
## 🏗️ Building for Production
48+
49+
```bash
50+
pnpm build
51+
```
52+
53+
The built files will be in the `dist` directory, ready to be deployed.
54+
55+
## 🚀 Deployment
56+
57+
This project is set up for GitHub Pages deployment:
58+
59+
1. Build the project
60+
```bash
61+
pnpm build
62+
```
63+
64+
2. Push to GitHub
65+
```bash
66+
git add .
67+
git commit -m "Ready for deployment"
68+
git push
69+
```
70+
71+
3. Configure GitHub Pages to serve from the desired branch
72+
73+
## 📄 License
74+
75+
[MIT License](LICENSE)

src/components/Main.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
<div class="section header">
6161
<div class="title">
6262
<img class="mat-icon" src="/icon.png" alt="DART icon">
63-
DART
63+
DART-GUI
6464
</div>
6565
<div class="subtitle">
6666
Efficient Multi-turn RL for GUI Agents via Decoupled Training and Adaptive Data Curation

0 commit comments

Comments
 (0)