# Apertis Changelog: 2.1.4 — Feature Added

Canonical page: https://apertis.ai/changelog/2.1.4
Markdown mirror: https://apertis.ai/changelog/2.1.4.md
Version: 2.1.4
Title: Feature Added
Published: 2026-01-22
Category: feature

🎉 Apertis Is Now an Official Community Provider in Vercel AI SDK

## Highlights

- Great news — Apertis is now officially listed as a Community Provider in the Vercel AI SDK.

## Details

# 🎉 Apertis Is Now an Official Community Provider in Vercel AI SDK

Great news — **Apertis is now officially listed as a Community Provider in the Vercel AI SDK**.

Our provider has been **merged into the official AI SDK repository** and is now available on the Vercel AI SDK website, making Apertis a first-class option for developers building with the AI SDK ecosystem.

---

## ✅ Officially Live

- 🔗 Vercel AI SDK Community Providers  
  https://ai-sdk.dev/providers/community-providers/apertis

- 📦 NPM Package  
  https://www.npmjs.com/package/@apertis/ai-sdk-provider

---

## What This Means for Developers

- **Official AI SDK Integration**  
  Apertis is now recognized and documented as a community provider by the Vercel AI SDK team.

- **470+ Models via One Provider**  
  Access OpenAI, Anthropic, Google, and many more models through Apertis.

- **Drop-in AI SDK Experience**  
  Use Apertis with the same `generateText`, streaming, tool calling, and embedding APIs you already know.

- **Production-Ready**  
  Fully compatible with AI SDK 6+ and the `LanguageModelV3` specification.

---

## Quick Example

```ts
import { apertis } from '@apertis/ai-sdk-provider';
import { generateText } from 'ai';

const { text } = await generateText({
  model: apertis('gpt-5.2'),
  prompt: 'Hello from Apertis!',
});
