Quickstart
Install the SDK (Node.js 20 or newer):TYPESAFE_API_KEY in your environment, then create and use the client:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
npm install @typesafe-ai/sdk
TYPESAFE_API_KEY in your environment, then create and use the client:
import { choice, TypeSafeClient } from "@typesafe-ai/sdk";
const client = new TypeSafeClient();
const response = await client.systemOne({
state: { document: "I was charged twice. Please fix this ASAP." },
questions: {
category: choice("What is this ticket about?", {
billing: null,
technical: null,
other: null,
}),
},
});
console.log(response.answers.category.choice);
Was this page helpful?
Suggestions
