Browser & computer use
Jev for Chrome: drives the tab you are looking at with TypeSafe Jev, a sub-second decision model. Community port of browser-use/jev-ultrafast, not affiliated with TypeSafe.
endpoint: 'https://api.typesafe.ai/v1/systemone',The link points at the commit we read, so the line number still holds.
These question sets are lifted from this project's source exactly as written.
from scripts/test_live_e2e.ts:68
operationchoiceChoose the next action to find flights
CLICK — Click search flights buttonTYPE_TEXT — Type text in destinationDONE — Already finishedimport { experimental_evaluate as evaluate } from 'ai';
const { answers } = await evaluate({
model: 'typesafe-ai/jev',
state,
questions: {
operation: { type: 'choice', instructions: 'Choose the next action to find flights',
criteria: { CLICK: 'Click search flights button', TYPE_TEXT: 'Type text in destination', DONE: 'Already finished' } },
},
});from src/options/Options.tsx:21
operationchoicePick an operation
CLICK — Click more informationDONE — Doneimport { experimental_evaluate as evaluate } from 'ai';
const { answers } = await evaluate({
model: 'typesafe-ai/jev',
state,
questions: {
operation: { type: 'choice', instructions: 'Pick an operation',
criteria: { CLICK: 'Click more information', DONE: 'Done' } },
},
});from tests/providers.test.ts:22
operationchoiceChoose next operation
CLICK — Click more infoDONE — Doneimport { experimental_evaluate as evaluate } from 'ai';
const { answers } = await evaluate({
model: 'typesafe-ai/jev',
state,
questions: {
operation: { type: 'choice', instructions: 'Choose next operation',
criteria: { CLICK: 'Click more info', DONE: 'Done' } },
},
});