From 9a00c510740ee42d3a7a8d24efe16ca65791ae9a Mon Sep 17 00:00:00 2001 From: f-trycua Date: Thu, 1 May 2025 16:34:05 -0700 Subject: [PATCH 1/3] Fix model name param --- libs/agent/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/agent/README.md b/libs/agent/README.md index e5dad869..cdcdb8f7 100644 --- a/libs/agent/README.md +++ b/libs/agent/README.md @@ -50,10 +50,10 @@ async with Computer() as macos_computer: # model=LLM(provider=LLMProvider.ANTHROPIC) # or # loop=AgentLoop.OMNI, - # model=LLM(provider=LLMProvider.OLLAMA, model="gemma3") + # model=LLM(provider=LLMProvider.OLLAMA, name="gemma3") # or # loop=AgentLoop.UITARS, - # model=LLM(provider=LLMProvider.OAICOMPAT, model="tgi", provider_base_url="https://**************.us-east-1.aws.endpoints.huggingface.cloud/v1") + # model=LLM(provider=LLMProvider.OAICOMPAT, name="name="ByteDance-Seed/UI-TARS-1.5-7B", provider_base_url="https://**************.us-east-1.aws.endpoints.huggingface.cloud/v1") ) tasks = [ From 6072d59cd93aa1385298cc449d723452a00ce2fc Mon Sep 17 00:00:00 2001 From: f-trycua Date: Thu, 1 May 2025 16:34:49 -0700 Subject: [PATCH 2/3] Update README.md --- libs/agent/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/agent/README.md b/libs/agent/README.md index cdcdb8f7..c1aac96c 100644 --- a/libs/agent/README.md +++ b/libs/agent/README.md @@ -53,7 +53,7 @@ async with Computer() as macos_computer: # model=LLM(provider=LLMProvider.OLLAMA, name="gemma3") # or # loop=AgentLoop.UITARS, - # model=LLM(provider=LLMProvider.OAICOMPAT, name="name="ByteDance-Seed/UI-TARS-1.5-7B", provider_base_url="https://**************.us-east-1.aws.endpoints.huggingface.cloud/v1") + # model=LLM(provider=LLMProvider.OAICOMPAT, name="ByteDance-Seed/UI-TARS-1.5-7B", provider_base_url="https://**************.us-east-1.aws.endpoints.huggingface.cloud/v1") ) tasks = [ From aa6bbdf3a89ea4b8fdb7af6fde86cf122e85c2f4 Mon Sep 17 00:00:00 2001 From: f-trycua Date: Thu, 1 May 2025 16:36:10 -0700 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 45a97758..8eb12022 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ If you want to use AI agents with virtualized environments: async with Computer(verbosity=logging.DEBUG) as macos_computer: agent = ComputerAgent( computer=macos_computer, - loop=AgentLoop.OPENAI, # or AgentLoop.ANTHROPIC, or AgentLoop.OMNI + loop=AgentLoop.OPENAI, # or AgentLoop.ANTHROPIC, or AgentLoop.UITARS, or AgentLoop.OMNI model=LLM(provider=LLMProvider.OPENAI) # or LLM(provider=LLMProvider.ANTHROPIC) )