Vol. I · No. 579Rochester, New York, Thursday, September 24, 2026Fintech · Page B16
All workSection B · Page B16

FintechSU$PEND

A Local Llama Audits the Company Spending

A team-built spend auditor where a local Llama 3 model checks employee transactions against company policy and flags risks by level.

Graphic5 steps
  1. FetchEmployee transactions from the Nessie sandbox
  2. PromptSpending policy plus a JSON output schema
  3. AuditLlama 3 runs locally through Ollama
  4. ValidatePydantic turns the answer into a typed AuditReport
  5. ActRisk view, drafted email, employee tickets
What happens inside SU$PEND, in order.Graphic: The Sahil Bachu

Auditing company card spending is slow, manual work. SU$PEND speeds it up. An admin searches for an employee, sees their transactions and runs an audit against the company's spending policy. Findings come back sorted into high, medium and low risk, and the tool can draft an email to the employee explaining what it found. Employees get their own dashboard where they can raise a ticket, and an approved ticket overrides a flag.

We were a team of four and built it over one weekend. My part was the AI audit pipeline, the Nessie integration and data seeding, the backend API, the audit results page and the frontend's API layer. Sadit Hussain, Hithashree Rayachoti and Jacky Huang built the rest of the app, including login and the dashboards.

It stayed useful because the schema was tight and nothing that failed validation got through.

The audit runs Llama 3 through Ollama, on the machine. That was deliberate: spending data is exactly what a company doesn't want to send to a third-party API. The engine fetches the transactions, builds a system and user prompt with a JSON output schema, calls the model and validates the answer with Pydantic into a typed AuditReport. Anything outside high, medium or low doesn't get through.

For data, I used Capital One's Nessie sandbox API and wrote a seeding script that fills it with synthetic customers and purchases. The Flask API exposes the policy, employee search, per-employee transactions and statements, audit runs, drafted emails and a health check. The audit routes also exist as a FastAPI router with typed response models, and I wrote an integration test that runs the whole pipeline.

The Llama 3 that Ollama runs locally is a small model. It stayed useful because the schema was tight and nothing that failed validation got through.

More from The Work

See all 25

Competitive Coding

Ranked Coding, With the AI Agents Allowed In

BeatCode tests whether developers can actually ship with AI coding agents, then rates them with Elo.

A competitive coding platform where you solve build and fix challenges with AI agents inside cloud sandboxes. A trusted grader scores the result and updates your Elo. Version 1 works, and version 2 is in progress.

Continued on Page B8

Design

A Writing App That Feels Like a Printed Book

A distraction-free personal editor with cream paper, drop caps, running headers and page numbers.

Folio is a personal writing app for stories, lessons and thoughts that looks like writing inside a real book: a two-page spread, IM Fell English type, drop caps and page numbers. The toolbar hides until you select text.

Continued on Page B19

Information theory

A Wordle Clone With an Entropy-Powered Cyborg Sidekick

A full-stack Wordle clone with a Cyborg Mode that suggests the best next guess using Shannon entropy.

A complete Wordle clone in React with a twist: flip on Cyborg Mode and a Flask solver suggests the guess that splits the remaining answers the most, measured by Shannon entropy.

Continued on Page B21