Loading Apertis changelog
Feature
🎉 Release @apertis/ai-sdk-provider v1.1.1
We're excited to announce the release of `@apertis/ai-sdk-provider`, the official Apertis provider for the Vercel AI SDK.
This release brings full compatibility with AI SDK 6+ and unlocks seamless access to 470+ AI models across multiple providers — all through a single, unified interface.
---
Fully implements the LanguageModelV3 specification.
Access models from OpenAI, Anthropic, Google, and more via Apertis.
Built-in support for both chat generation and text embeddings.
Real-time streaming responses with zero additional setup.
First-class support for function / tool calling.
---
npm install @apertis/ai-sdk-provider aiimport { apertis } from '@apertis/ai-sdk-provider';
import { generateText } from 'ai';
const { text } = await generateText({
model: apertis('gpt-5.2-chat'),
prompt: 'Hello, world!',
});
console.log(text);