Skip to main content

docs.inertialai.com

Build on real-world data.

Two products, one API key: a chat model that reads your sensor streams, metrics, markets, and health signals — and self-serve finetuning that makes it yours.

quickstart.py

from openai import OpenAI

client = OpenAI(
base_url="https://inertialai.com/api/v1",
api_key="iai_...",
)

resp = client.chat.completions.create(
model="inertialai-0.1",
messages=[{
"role": "user",
"content": "Pump vibration (mm/s): 2.1, 2.0, 2.2, 4.8, 5.1. "
"One word: normal or anomaly?",
}],
logprobs=True, # calibrated token-level confidence
)

print(resp.choices[0].message.content) # "anomaly"