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
+31-10Lines changed: 31 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,6 +33,8 @@ We will soon be offering API access to our Agent-1-Vision model.
33
33
34
34
If you're interested in gaining access to this API, sign up [here](https://othersideai.typeform.com/to/FszaJ1k8?typeform-source=www.hyperwriteai.com).
35
35
36
+
### Additional Thoughts
37
+
We recognize that some operating system functions may be more efficiently executed with hotkeys such as entering the Browser Address bar using `command + L` rather than by simulating a mouse click at the correct XY location. We plan to make these improvements over time. However, it's important to note that many actions require the accurate selection of visual elements on the screen, necessitating precise XY mouse click locations. A primary focus of this project is to refine the accuracy of determining these click locations. We believe this is essential for achieving a fully self-operating computer in the current technological landscape.
2.**Add your Open AI key. If you don't have one, you can obtain an OpenAI key [here](https://platform.openai.com/account/api-keys)**:
50
57
51
-
For Mac:
58
+
3.**Create a Python virtual environment**. [Learn more about Python virtual environment](https://docs.python.org/3/library/venv.html).
59
+
60
+
```
61
+
python3 -m venv venv
62
+
```
63
+
4.**Activate the virtual environment**:
64
+
```
65
+
source venv/bin/activate
66
+
```
67
+
5.**Install Project Requirements and Command-Line Interface: Instead of using `pip install .`, you can now install the project directly from PyPI with:**
52
68
```
53
-
export OPENAI_API_KEY='your-key-here'
69
+
pip install self-operating-computer
70
+
```
71
+
6.**Then rename the `.example.env` file to `.env` so that you can save your OpenAI key in it.**
72
+
```
73
+
mv .example.env .env
54
74
```
55
-
For Windows:
75
+
7.**Add your Open AI key to your new `.env` file. If you don't have one, you can obtain an OpenAI key [here](https://platform.openai.com/account/api-keys)**:
56
76
```
57
-
set GOOGLE_API_KEY='your_api_key'
77
+
OPENAI_API_KEY='your-key-here'
58
78
```
59
-
3.**Run it**!
79
+
80
+
8.**Run it**!
60
81
```
61
82
operate
62
83
```
63
-
5.**Final Step**: As a last step, the Terminal app will ask for permission for "Screen Recording" and "Accessibility" in the "Security & Privacy" page of Mac's "System Preferences".
84
+
9.**Final Step**: As a last step, the Terminal app will ask for permission for "Screen Recording" and "Accessibility" in the "Security & Privacy" page of Mac's "System Preferences".
0 commit comments