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
The details of the design are laid out in this article: [How I taught an AI to use a computer](https://blog.jamesmurdza.com/how-i-taught-an-ai-to-use-a-computer)
23
22
23
+
## LLM support
24
+
25
+
Open Computer Use is designed to easily support new LLMs. The LLM and provider combinations are are defined in [models.py](/blob/master/os_computer_use/models.py). Following the comments in this file, one can easily add any LLM and provider that adheres to the OpenAI API specification.
26
+
27
+
The list of tested models and providers currently includes:
If you add a new model or provider, please make a PR to this repository!
44
+
24
45
## Get started
25
46
26
47
### Prerequisites
@@ -75,16 +96,3 @@ poetry run start
75
96
```
76
97
77
98
The agent will start and prompt you for its first instruction.
78
-
79
-
## LLM support
80
-
81
-
Open Computer Use supports a variety of LLMs and LLM providers, which are defined in `models.py`.
82
-
83
-
The following lines of code can be changed to any valid combination of model and provide, so long as the new vision model supports vision input and the new action model supports tool use.
0 commit comments