Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,15 @@ We support Azure OpenAI, Anthropic, Gemini, Open Router, and vLLM inference. See
### Grounding Models (Required)
For optimal performance, we recommend [UI-TARS-1.5-7B](https://huggingface.co/ByteDance-Seed/UI-TARS-1.5-7B) hosted on Hugging Face Inference Endpoints or another provider. See [Hugging Face Inference Endpoints](https://huggingface.co/learn/cookbook/en/enterprise_dedicated_endpoints) for setup instructions.

### 🔍 Self-check (Recommended)
Before running the agent, you can verify that your environment has the right dependencies, permissions, and API keys by running:

```bash
agent-s_doctor
```

The tool highlights anything missing and suggests fixes. Use `agent-s_doctor --json` if you want to parse the results programmatically, and `agent-s_doctor --skip-screenshot` when running in a headless environment.

## 🚀 Usage


Expand Down
2 changes: 1 addition & 1 deletion gui_agents/s3/agents/grounding.py
Original file line number Diff line number Diff line change
Expand Up @@ -652,4 +652,4 @@ def done(
@agent_action
def fail(self):
"""End the current task with a failure. Use this when you believe the entire task is impossible to complete."""
return """FAIL"""
return """FAIL"""
Loading