Skip to content

Commit f070637

Browse files
committed
Update for launch.
1 parent 310a5c1 commit f070637

File tree

2 files changed

+6
-12
lines changed

2 files changed

+6
-12
lines changed

README.md

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# Computer Use Experimental Solution
1+
# Computer Use Preview
22

33
## Quick Start
44

5-
This section will guide you through setting up and running the Computer Use Experimental Solution. Follow these steps to get started.
5+
This section will guide you through setting up and running the Computer Use Preview model. Follow these steps to get started.
66

77
### 1. Installation
88

99
**Clone the Repository**
1010

1111
```bash
12-
git clone https://github.com/google/computer-use-solution-exp.git
13-
cd computer-use-solution-exp
12+
git clone https://github.com/google/computer-use-preview.git
13+
cd computer-use-preview
1414
```
1515

1616
**Set up Python Virtual Environment and Install Dependencies**
@@ -167,10 +167,4 @@ python hud_eval.py --taskset SheetBench-V2
167167

168168
# Run in parallel with 50 concurrent tasks (can support up to 400)
169169
python hud_eval.py --taskset OSWorld-Verified --parallel --max_concurrent 50
170-
```
171-
172-
## Computers
173-
174-
For an in-depth explanation of how the system works, please see the instructions document available here:
175-
176-
https://docs.google.com/document/d/1jTWQPVCIso7mo5SbQCn2DKZXWFlL_g3D2f-JOrZa1do/edit?tab=t.0
170+
```

agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ def _get_safety_confirmation(
348348
print(safety["explanation"])
349349
decision = ""
350350
while decision.lower() not in ("y", "n", "ye", "yes", "no"):
351-
decision = input("Do you wish to proceed? [Y]es/[n]o\n")
351+
decision = input("Do you wish to proceed? [Yes]/[No]\n")
352352
if decision.lower() in ("n", "no"):
353353
return "TERMINATE"
354354
return "CONTINUE"

0 commit comments

Comments
 (0)