From ac2717f663019ede11790e2eb8ef34d405b4945e Mon Sep 17 00:00:00 2001 From: Dillon DuPont Date: Sat, 10 May 2025 17:13:00 -0400 Subject: [PATCH] readme correction --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 673590f4..dafef93d 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ async def main(): agent = ComputerAgent( computer=computer, loop="UITARS", - model=LLM(provider="MLX", name="mlx-community/UI-TARS-1.5-7B-6bit") + model=LLM(provider="MLXVLM", name="mlx-community/UI-TARS-1.5-7B-6bit") ) await agent.run("Find the trycua/cua repository on GitHub and follow the quick start guide") @@ -193,7 +193,7 @@ For complete examples, see [agent_examples.py](./examples/agent_examples.py) or from agent import ComputerAgent, LLM, AgentLoop, LLMProvider # UI-TARS-1.5 agent for local execution with MLX -ComputerAgent(loop=AgentLoop.UITARS, model=LLM(provider=LLMProvider.MLX, name="mlx-community/UI-TARS-1.5-7B-6bit")) +ComputerAgent(loop=AgentLoop.UITARS, model=LLM(provider=LLMProvider.MLXVLM, name="mlx-community/UI-TARS-1.5-7B-6bit")) # OpenAI Computer-Use agent using OPENAI_API_KEY ComputerAgent(loop=AgentLoop.OPENAI, model=LLM(provider=LLMProvider.OPENAI, name="computer-use-preview")) # Anthropic Claude agent using ANTHROPIC_API_KEY