Developers
Build with PSIONHQ
Type-safe SDKs, REST APIs, and real-time streams. Integrate sovereign AI, identity, and secure storage into any stack.
Quickstart
From zero to first response in minutes
01
Install the SDK
$ npm install @psion/sdk02
Initialize the client
import { Psion } from "@psion/sdk"
const psion = new Psion({
apiKey: process.env.PSION_API_KEY,
})03
Make your first call
const response = await psion.ai.infer({
prompt: "Summarise this document",
model: "psion-secure-v1",
})