moved mlx into optional dep

This commit is contained in:
Dillon DuPont
2025-05-10 17:49:32 -04:00
parent b3fef9c2f6
commit db823ac561
2 changed files with 3 additions and 0 deletions

View File

@@ -32,6 +32,7 @@ pip install "cua-agent[all]"
pip install "cua-agent[openai]" # OpenAI Cua Loop
pip install "cua-agent[anthropic]" # Anthropic Cua Loop
pip install "cua-agent[uitars]" # UI-Tars support
pip install "cua-agent[uitars-mlx]" # local UI-Tars support with MLXVLM
pip install "cua-agent[omni]" # Cua Loop based on OmniParser (includes Ollama for local models)
pip install "cua-agent[ui]" # Gradio UI for the agent
```

View File

@@ -36,6 +36,8 @@ openai = [
]
uitars = [
"httpx>=0.27.0,<0.29.0",
]
uitars-mlx = [
"mlx-vlm @ git+https://github.com/ddupont808/mlx-vlm.git@stable/fix/qwen2-position-id"
]
ui = [