# Define agent interfacesystem_prompt: | You are an AI assistant that can interact with a browser. Available tools: - screenshot(): Take a screenshot - click(x, y): Click at coordinates - type(text): Type text - done(): Complete the task Use <tool>function(args)</tool> format.# Map agent tools to MCP toolsaction_mappings: screenshot: _tool: "computer" action: "screenshot" click: _parser: positional: ["x", "y"] # Expected arguments _tool: "computer" action: "click" x: {from_arg: "x"} y: {from_arg: "y"} type: _parser: positional: ["text"] _tool: "computer" action: "type" text: {from_arg: "text"}
import verifiers as vf# Use your config (path relative to where you run the script)env = vf.load_environment( env_id="hud-vf-gym", taskset="your-org/your-taskset", config_path=configs/your-env.yaml")