PORTAL

The portal runs on your machine. Nothing leaves it.

Furrow is a local application. You install it from the repository, start it with one command, and it opens on 127.0.0.1 in your browser. There is no account, no server of ours, and no telemetry. Customer intakes and reports stay in a folder next to the code.

Get the repositoryRead the sample report
The Results screen of the Furrow portal: four page-one metrics, the answer paragraph and the scenario panel
THREE SCREENS

Workload in, seven pages out, every run kept.

01

Workload

About ten questions your infrastructure lead already knows: tokens per request, requests a month, latency floor, GPU, contract. Validation and derived facts update as you type.

02

Results

The seven report pages on screen with every number tagged observed, derived, assumed, scenario or simulated. A scenario panel re-runs the engine under other assumptions during a call.

03

Customers

Every run on this machine, with re-run, export to PDF or HTML, and a trash folder. Nothing is hard-deleted.

RUN IT

Ten minutes, offline.

git clone https://github.com/Adityaakr/furrow-research.git furrow
cd furrow
python3.12 -m venv .venv
.venv/bin/pip install -e .
# place the licensed Satoshi fonts in assets/fonts/
.venv/bin/furrow serve
# opens http://127.0.0.1:8765 in your browser
  1. Python 3.12 is the only requirement. Every data pull the reports need is seeded in the repository, so the first run needs no network.
  2. Fonts. The report embeds Satoshi from the assets folder. The two font files and their licence are placed by the operator; they are not distributed here.
  3. Start the portal. It binds to 127.0.0.1 only and refuses a host flag. Close the terminal and it is gone.
  4. Load an example. The Workload screen offers the five example intakes from the paper; the chat example reproduces the sample report on this site.

The command line does the same work without the browser: furrow run examples/chat_h100.json prints the four page-one numbers and writes the report to the reports folder.