Features
Multi-Provider Support
Unified interface for OpenAI, Anthropic, Gemini, AWS Bedrock, Hugging Face, and more
Gemini 3 Integration
Latest Gemini 3 models with extended thinking support for advanced reasoning
Workflow Automation
Build complex AI workflows with our action system and human-in-the-loop verification
OpenClaw Ready
First-class support for OpenClaw and other automation platforms
Type-Safe SDK
Full TypeScript support with @heysalad/ai npm package
REST API
RESTful API at ai.heysalad.app/api/v1 for easy integration
Edge-First
Deployed on Cloudflare Workers for global low-latency access
Cost Optimized
Intelligent routing to minimize costs - save up to 98% vs GPT-4
Quick Start
npm install @heysalad/ai
import { createClient } from '@heysalad/ai';
const ai = createClient();
ai.configureProvider('openai', {
apiKey: process.env.OPENAI_API_KEY
});
const response = await ai.chat({
model: 'gpt-4-turbo',
messages: [{ role: 'user', content: 'Hello!' }]
});