import uuid
web_tasks = []
web_tasks.append({
"id": str(uuid.uuid4()),
"prompt": "Navigate to the documentation page",
"mcp_config": {
"hud": {
"url": "https://mcp.hud.ai/v3/mcp",
"headers": {
"Authorization": "Bearer ${HUD_API_KEY}",
"Mcp-Image": "hudpython/hud-remote-browser:latest"
}
}
},
"setup_tool": {"name": "setup", "arguments": {"name": "navigate", "arguments": {"url": "https://example.com"}}},
"evaluate_tool": {"name": "evaluate", "arguments": {"name": "url_match", "arguments": {"pattern": ".*/docs.*"}}},
"metadata": {"difficulty": "easy", "category": "navigation"}
})