AIOS:SDK

Three lines to proof.

Call any registered model. The proof returns with the result.

InstallSoonSee the OptionsDocsSoon
Callaios.call(model, input)
Returnsoutput + proof
KeysScoped, capped, revocable
ModesBadged distinctly
01Install

One client

Pass a registered model's name and your input; the answer and its proof come back together. There is no separate proof endpoint.

TypeScript

The SDK for Node, Deno and the browser.

npm install @aios/sdk
InstallSoon

Python

The same client for Python services and notebooks.

pip install aios-sdk
InstallSoon

REST

No SDK needed: the same call and the same proof over HTTPS.

POST /v1/infer
Read the APISoon
quickstart.tsts
import { AIOS } from "@aios/sdk"
 
const aios = new AIOS(key)            // scoped, capped, revocable
const r = await aios.call("bitnet-ref-1", prompt)
 
r.output   // the answer
r.proof    // job id, model, mode, committee, settlement
02r.proof · Per Call

Every field

AIOS:SDK · The Verification Record

Provenance of execution

The record proves this model produced this output, unforged. On large models the assurance is statistical, and the record says so outright.

  • proof.job the job id, to look up on the explorer
  • proof.model the registered name and address: no silent downgrade
  • proof.mode verified or attested, honest by schema
  • proof.committee size, matches and the canonical hash
  1. 01 / Key

    Mint a scoped key

    In AIOS:PLATFORM: a bounded-spend credential, capped and revocable, never custody.

  2. 02 / Resolve

    Name a model

    The SDK resolves address, price and mode from the registry. No hard-coded endpoints.

  3. 03 / Call

    Submit and settle

    The call escrows in $AIOS and clears by committee consensus.

  4. 04 / Keep

    Keep the proof

    The record is part of the return value. No quorum: a typed error and a full refund.

03Around the SDK

The toolchain

Fact / 01

Docs

The API reference, the verification record schema and every error type.

Fact / 02

AIOS:PLATFORM

The console and REST API, where keys are minted and corpora published.

Fact / 03

AIOS:MCP

The agent doorway, a verification record on every call.

Fact / 04

Registered is not endorsed

A model you can call is not a model anyone vetted. The mode says what proof a call earns, nothing more.

The Proof Testnet Is Built in the Open

Answers you can check

Call a registered model, read the proof, and look the job up on the explorer yourself. That is the whole promise.

Read the DocsSoonBrowse Models