Appearance
Installation
Install the sipgate AI Flow SDK to start building voice assistants.
Package Managers
bash
npm install @sipgate/ai-flow-sdkbash
yarn add @sipgate/ai-flow-sdkbash
pnpm add @sipgate/ai-flow-sdkRequirements
- Node.js >= 22.0.0
- TypeScript 5.x (recommended)
TypeScript Setup
The SDK is written in TypeScript and includes full type definitions. No additional @types package is needed.
If you're using TypeScript, make sure your tsconfig.json includes:
json
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true
}
}Verify Installation
You can verify the installation by importing the SDK:
typescript
import { AiFlowAssistant } from "@sipgate/ai-flow-sdk";
console.log("SDK installed successfully!");Next Steps
- Quick Start - Build your first voice assistant
- API Reference - Explore the complete API