Skip to content

Installation

Install the sipgate AI Flow SDK to start building voice assistants.

Package Managers

bash
npm install @sipgate/ai-flow-sdk
bash
yarn add @sipgate/ai-flow-sdk
bash
pnpm add @sipgate/ai-flow-sdk

Requirements

  • 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