proomt

Search

Search posts, papers, and topics

All posts

Hacker News front pageawlevin11 min readintermediate

Typesafe-computer-use drives a Mac toward a goal for 1/50th of a cent per step

Summary

A Python tool for macOS that replaces expensive LLM‑driven UI automation with a cheap, deterministic classifier (TypeSafe) for per‑step decisions, cutting cost by ~150‑300× and latency by ~10‑40× while still handling text entry via a small writer model.

  • Uses screen capture + Vision OCR + macOS accessibility tree to build a concise list of actionable items per step.
  • A TypeSafe decision model (up to 255 choices) selects the next action with a confidence score, avoiding full‑frame LLM planning for most steps.
  • Smart OCR reuse: compares scaled‑down screenshots, re‑reads only changed tiles, reducing Vision token usage.
  • Off‑screen controls are discovered via the accessibility tree and offered as separate actions, enabling clicks on hidden UI elements.

Frontier‑model UI agents are prohibitively expensive for high‑frequency automation. By delegating deterministic UI parsing to OCR/AX and only invoking a tiny classifier for action selection, the system achieves near‑real‑time interaction at a fraction of the cost, making large‑scale desktop automat…

7/10

Related reading

  1. TypeSafe AI's Jev now available on AI Gateway

    Vercel AI Gateway now offers Jev, a probabilistic decision model that returns typed choices, scores, and booleans instead of raw text. TypeSafe AI reports it runs up to 193× faster and 445× cheaper than standard LLMs, exposed via the experimental evaluate API in AI SDK 7.

    Vercelvercel.com2 minrelease
  2. Introducing System One Models and Jev

    TypeSafe AI announced its first “System One” model, Jev, a non‑text‑generating LLM that outputs type‑safe structured decisions with calibrated probabilities. It claims 40‑200× lower latency (70‑500 ms) and 100‑500× lower cost versus frontier LLMs, no hallucinations, and parallel sampling. The post includes a side‑by‑side demo, a custom “workflow” benchmark comparing Jev to GPT‑5.6/6 and other mod…

    Hacker News front pagetypesafe.ai9 minHN1824480lobste.rs26
  3. I turned Jev into a (lousy) chatbot

    jevchat is a Python CLI that turns the Typesafe Jev API into a symbol‑level chatbot by repeatedly asking Jev which next character to emit. It offers interchangeable sampling strategies and alphabets, live generation stats, and a benchmark mode that quantifies performance trade‑offs.

    Hacker News front pagegithub.com5 minHN16948
  4. Automating EDA With fg-data-profiling

    The Real Python course shows how to automate exploratory data analysis using the fg-data-profiling library. It walks through building, exporting, time‑series profiling, and comparing reports with concise code examples.

    Real Pythonrealpython.com2 min
  5. The Road to Better Performance Profiles – Part 2

    Mozilla’s Automation Team added native system‑wide profiling to their CI pipelines for Speedometer 3 on Windows, macOS, Linux, and Android, using xperf, perf, and simpleperf together with the samply toolchain, and modernized the mozgeckoprofiler symbolication stack by replacing the legacy Eliot service with samply and profiler‑edit.

    Mozilla Automation Teammozilla.org5 min