Start with Jev.
Then make it local.

Turn your Jev-usage into small, task-specific classifiers. Train with one command. Run locally in your browser or Node.js.

Loading model…

A few lines, then it’s yours.

Bring saved answers, or have Jev label your inputs.

Train

npx jimothy train \
  --task task.json \
  --data emails.jsonl \
  --out models/email

Run

import { loadClassifier } from 'jimothy/browser';

const model = await loadClassifier('/models/email/');
const { answer } = await model.predict({
  from: 'maya@example.com',
  subject: 'Lunch on Friday?',
  body: 'Are you free around twelve?'
});

console.log(answer);
await model.dispose();
Browser setup & full API