add uitars in examples and .toml

This commit is contained in:
Dillon DuPont
2025-04-24 16:27:03 -04:00
parent 7ebab33104
commit c319003ca2
3 changed files with 5 additions and 1 deletions
+1
View File
@@ -30,6 +30,7 @@ async def run_agent_example():
computer=macos_computer,
# loop=AgentLoop.OPENAI,
# loop=AgentLoop.ANTHROPIC,
# loop=AgentLoop.UITARS,
loop=AgentLoop.OMNI,
# model=LLM(provider=LLMProvider.OPENAI), # No model name for Operator CUA
# model=LLM(provider=LLMProvider.OPENAI, name="gpt-4o"),
+3
View File
@@ -34,6 +34,9 @@ openai = [
"openai>=1.14.0,<2.0.0",
"httpx>=0.27.0,<0.29.0",
]
uitars = [
"httpx>=0.27.0,<0.29.0",
]
ui = [
"gradio>=5.23.3,<6.0.0",
"python-dotenv>=1.0.1,<2.0.0",
+1 -1
View File
@@ -104,7 +104,7 @@ The server is configured using environment variables (can be set in the Claude D
| Variable | Description | Default |
|----------|-------------|---------|
| `CUA_AGENT_LOOP` | Agent loop to use (OPENAI, ANTHROPIC, OMNI) | OMNI |
| `CUA_AGENT_LOOP` | Agent loop to use (OPENAI, ANTHROPIC, UITARS, OMNI) | OMNI |
| `CUA_MODEL_PROVIDER` | Model provider (ANTHROPIC, OPENAI, OLLAMA, OAICOMPAT) | ANTHROPIC |
| `CUA_MODEL_NAME` | Model name to use | None (provider default) |
| `CUA_PROVIDER_BASE_URL` | Base URL for provider API | None |