Updated docs

This commit is contained in:
Dillon DuPont
2025-08-12 10:53:50 -04:00
parent 3cf818aa1b
commit 85cdaceca4
2 changed files with 14 additions and 8 deletions

View File

@@ -29,11 +29,4 @@ async for result in agent.run(prompt):
print("Agent:", result["output"][-1]["content"][0]["text"])
```
We currently support 4 computer-using agent loops:
- Anthropic CUAs
- OpenAI CUA Preview
- UI-TARS 1.5
- Omniparser + LLMs
For a full list of supported models and configurations, see the [Supported Agents](./supported-agents) page.
For a list of supported models and configurations, see the [Supported Agents](./supported-agents/computer-use-agents) page.

View File

@@ -49,6 +49,19 @@ async for _ in agent.run("Open the settings menu and change the theme to dark mo
pass
```
## GLM-4.5V
Zhipu AI's GLM-4.5V vision-language model with computer-use capabilities:
- `openrouter/z-ai/glm-4.5v`
- `huggingface-local/zai-org/GLM-4.5V`
```python
agent = ComputerAgent("openrouter/z-ai/glm-4.5v", tools=[computer])
async for _ in agent.run("Click on the search bar and type 'hello world'"):
pass
```
---
For details on agent loop behavior and usage, see [Agent Loops](../agent-loops).