Skip to main content
Yutori Computer Use (yutori) runs on the Yutori N1 model and is designed to balance low latency with smart task performance for real-world browser automation. In Anchor Browser, this agent is available directly through agentic API’s and taskOptions.agent = 'yutori'.

Overview

Yutori Computer Use provides:
  • Computer-use automation with native browser actions
  • Balanced latency and intelligence for fast and reliable task execution
  • Multi-step task handling for navigation, extraction, and workflow completion
  • Structured output support through output_schema when you need machine-readable results
Learn more about the model in the official Yutori N1 reference.

Supported Models

ModelModel IDBest For
Yutori N1n1-latestBalanced speed and smart performance (default)

Code Example

import Anchorbrowser from 'anchorbrowser';

const anchorClient = new Anchorbrowser({
  apiKey: process.env.ANCHORBROWSER_API_KEY,
});

const response = await anchorClient.agent.task(
  'Go to Hacker News, open the top story, and summarize it in 3 bullet points',
  {
    taskOptions: {
      url: 'https://news.ycombinator.com',
      agent: 'yutori',
    },
  }
);

console.log(response);

Supported Computer-Use Actions

Yutori in Anchor Browser supports these core computer-use actions:
  • left_click, double_click, triple_click, right_click
  • scroll, scroll_at
  • type, key_press
  • hover, drag
  • goto_url, go_back, refresh
  • wait

Secure Credentials with Secret Values

Yutori Computer Use fully supports secret values for secure credential handling. Secrets are never exposed to the AI model. Learn more about domain-scoped secrets and TOTP support.

Best Practices

  • Set max_steps intentionally based on task complexity to control runtime
  • Use output_schema for reliable, structured extraction workflows
  • Write specific prompts with clear success criteria for better automation quality