Quick Start
Get your first AI integration running in 5 minutes.
Prerequisites
- Node.js 18+ or Python 3.8+
- API key from OpenAI, Anthropic, or Google
- Text editor (VS Code recommended)
Installation
Option 1: Node.js
npm init -y
npm install openai
Option 2: Python
pip install openai
Your First AI Integration
Create a file called app.js
(Node.js) or app.py
(Python):