mirror of
https://github.com/trycua/computer.git
synced 2026-01-06 05:20:02 -06:00
37 lines
751 B
Plaintext
37 lines
751 B
Plaintext
---
|
|
title: Supported Model Providers
|
|
---
|
|
|
|
## Supported Models
|
|
|
|
### Anthropic Claude (Computer Use API)
|
|
|
|
```python
|
|
model="anthropic/claude-3-5-sonnet-20241022"
|
|
model="anthropic/claude-3-7-sonnet-20250219"
|
|
model="anthropic/claude-opus-4-20250514"
|
|
model="anthropic/claude-sonnet-4-20250514"
|
|
```
|
|
|
|
### OpenAI Computer Use Preview
|
|
|
|
```python
|
|
model="openai/computer-use-preview"
|
|
```
|
|
|
|
### UI-TARS (Local or Huggingface Inference)
|
|
|
|
```python
|
|
model="huggingface-local/ByteDance-Seed/UI-TARS-1.5-7B"
|
|
model="ollama_chat/0000/ui-tars-1.5-7b"
|
|
```
|
|
|
|
### Omniparser + Any LLM
|
|
|
|
```python
|
|
model="omniparser+ollama_chat/mistral-small3.2"
|
|
model="omniparser+vertex_ai/gemini-pro"
|
|
model="omniparser+anthropic/claude-3-5-sonnet-20241022"
|
|
model="omniparser+openai/gpt-4o"
|
|
```
|