Browser & computer use

jev-automation

@yatharth17061TypeScriptupdated 2026-09-18runnable

Trying automation on web browser via jev from typesafe

yatharth1706/jev-automation

Where it calls Jev

import { type ChoiceCriteria, type Questions, type SystemOneResult, TypeSafeClient, choice, noul } from "@typesafe-ai/sdk";

server/decide.ts:9

The link points at the commit we read, so the line number still holds.

What it asks Jev

These question sets are lifted from this project's source exactly as written.

from server/decide.ts:96

  1. riskytrue/false

    Would carrying out this command do something hard to undo?

  2. submit_after_typingtrue/false

    After the text is typed, does the user want it submitted right away (press enter / run the search)?

Run it on your own text

The code
import { experimental_evaluate as evaluate } from 'ai';

const { answers } = await evaluate({
  model: 'typesafe-ai/jev',
  state,
  questions: {
    risky: { type: 'boolean', instructions: 'Would carrying out this command do something hard to undo?' },
    submit_after_typing: { type: 'boolean', instructions: 'After the text is typed, does the user want it submitted right away (press enter / run the search)?' },
  },
});

Other projects in this category