You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-5Lines changed: 14 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -117,9 +117,14 @@ Whether you're interested in AI, automation, or contributing to cutting-edge age
117
117
118
118
119
119
### Installation
120
+
To install Agent S2.5 without cloning the repository, run
120
121
```bash
121
122
pip install gui-agents
122
123
```
124
+
If you would like to test Agent S2.5 while making changes, clone the repository and install using
125
+
```
126
+
pip install -e .
127
+
```
123
128
124
129
### API Configuration
125
130
@@ -147,7 +152,7 @@ For optimal performance, we recommend [UI-TARS-1.5-7B](https://huggingface.co/By
147
152
148
153
149
154
> ⚡️ **Recommended Setup:**
150
-
> For the best configuration, we recommend using **OpenAI o3-2025-04-16** as the main model, paired with **UI-TARS-1.5-7B** for grounding.
155
+
> For the best configuration, we recommend using **OpenAI gpt-5-2025-08-07** as the main model, paired with **UI-TARS-1.5-7B** for grounding.
151
156
152
157
153
158
### CLI
@@ -157,7 +162,7 @@ Run Agent S2.5 with the required parameters:
157
162
```bash
158
163
agent_s \
159
164
--provider openai \
160
-
--model o3-2025-04-16 \
165
+
--model gpt-5-2025-08-07 \
161
166
--ground_provider huggingface \
162
167
--ground_url http://localhost:8080 \
163
168
--ground_model ui-tars-1.5-7b \
@@ -167,13 +172,16 @@ agent_s \
167
172
168
173
#### Required Parameters
169
174
-**`--provider`**: Main generation model provider (e.g., openai, anthropic, etc.) - Default: "openai"
170
-
-**`--model`**: Main generation model name (e.g., o3-2025-04-16) - Default: "o3-2025-04-16"
175
+
-**`--model`**: Main generation model name (e.g., gpt-5-2025-08-07) - Default: "gpt-5-2025-08-07"
171
176
-**`--ground_provider`**: The provider for the grounding model - **Required**
172
177
-**`--ground_url`**: The URL of the grounding model - **Required**
173
178
-**`--ground_model`**: The model name for the grounding model - **Required**
174
179
-**`--grounding_width`**: Width of the output coordinate resolution from the grounding model - **Required**
175
180
-**`--grounding_height`**: Height of the output coordinate resolution from the grounding model - **Required**
176
181
182
+
#### Optional Parameters
183
+
-**`--model_temperature`**: The temperature to fix all model calls to (necessary to set to 1.0 for models like o3 but can be left blank for other models)
184
+
177
185
#### Grounding Model Dimensions
178
186
The grounding width and height should match the output coordinate resolution of your grounding model:
179
187
-**UI-TARS-1.5-7B**: Use `--grounding_width 1920 --grounding_height 1080`
@@ -208,8 +216,9 @@ Next, we define our engine parameters. `engine_params` is used for the main agen
208
216
engine_params = {
209
217
"engine_type": provider,
210
218
"model": model,
211
-
"base_url": model_url, # Optional
212
-
"api_key": model_api_key, # Optional
219
+
"base_url": model_url, # Optional
220
+
"api_key": model_api_key, # Optional
221
+
"temperature": model_temperature # Optional
213
222
}
214
223
215
224
# Load the grounding engine from a custom endpoint
0 commit comments