Integrations
Use Hypery with popular tools and frameworks
Overview
Hypery Hub works with popular AI tools and frameworks by simply configuring the base URL.
Supported Tools
Development Tools
OpenAI SDK
Official OpenAI SDK for JavaScript and Python
Vercel AI SDK
Build AI-powered applications with Vercel AI SDK
Continue.dev
AI coding assistant for VS Code and JetBrains
Python Libraries
LangChain
Build LLM applications with LangChain
Replicate SDK
Official Replicate SDK for async predictions
Quick Start
All integrations work the same way - just set the baseURL:
import OpenAI from 'openai'
const client = new OpenAI({
apiKey: process.env.GATEWAY_API_KEY,
baseURL: 'https://hypery.ai/api/v1'
})import { createOpenAI } from '@ai-sdk/openai'
const aiGateway = createOpenAI({
apiKey: process.env.GATEWAY_API_KEY,
baseURL: 'https://hypery.ai/api/v1'
})import Replicate from 'replicate'
const replicate = new Replicate({
auth: process.env.GATEWAY_API_KEY,
baseUrl: 'https://hypery.ai/api/v1'
})Base URL Reference
Hypery Hub Base URL:
https://hypery.ai/api/v1
Use this base URL with any OpenAI-compatible SDK or tool.
Next Steps
Choose your integration and follow the detailed guide:
- OpenAI SDK - Most common, works with OpenAI package
- Vercel AI SDK - For Next.js applications
- Continue.dev - AI coding assistant setup