9 Use Cases. One Predictive Database.

Predictive accounting on Aito โ€” multi-tenant, no model training

A working reference implementation of a predictive accounting SaaS. 255 customer companies, 128K invoices, one shared Aito instance โ€” predictions scoped per-tenant via customer_id in the where clause. No model training, no retraining schedule, no per-tenant pipeline.

Predictive Ledger โ€” 9 Features Grouped by Function

Every feature is a query against the same multi-tenant Aito table. Pick a feature to read its implementation guide on GitHub.

Implementation Details

Explore the source, data model, and architecture decisions

// Predict GL code for a Telia invoice โ€” scoped to one tenant
{
  "from": "invoices",
  "where": {
    "customer_id": "CUST-0000",
    "vendor": "Telia Finland Oyj",
    "amount": 890.50
  },
  "predict": "gl_code",
  "select": ["$p", "feature", "$why"]
}
๐Ÿ“

Full Source Code

Apache 2.0 reference implementation โ€” 9 use cases, ADRs, deployment recipe

๐Ÿš€

Try the Live Demo

255 tenants live at accounting.aito.ai โ€” switch tenants, watch predictions change

๐Ÿ“š

Aito Cheatsheet

Verified Aito query patterns used across the 9 features

Why This Pattern Works for Accounting SaaS

One predictive database, every tenant scoped by customer_id, no model deployment between corrections

โš™๏ธ

Zero MLOps

  • No model training, no retraining schedule
  • Override a prediction, the next reflects it instantly
  • Schema additions accepted in place
๐Ÿข

Multi-Tenant by Default

  • One Aito DB, 255 tenants
  • customer_id in where clause = isolation
  • Same vendor, different tenant โ†’ different prediction
โœ…

Production-Proven

  • Same operators Posti runs at 95% accuracy
  • 20-168ms _predict latency
  • Sub-50ms when served from precomputed JSON

Evaluate in 15 Minutes

From live demo to your own data in three steps

1

Try the Live Demo

Switch tenants in the TopBar, watch predictions change per customer

2

Read the Source

9 use case guides, ADRs, multi-tenant architecture

3

Try With Your Data

Upload your invoices to Aito and predict in minutes

Ready to ship a predictive accounting product?