Skip to content

Changelog

Product updates, model releases, and platform improvements.

January 2026

🎉 Release @apertis/ai-sdk-provider v1.1.1

🚀 @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.

✨ Key Highlights

  • AI SDK 6+ Compatible

Fully implements the LanguageModelV3 specification.

  • 470+ Models, One Provider

Access models from OpenAI, Anthropic, Google, and more via Apertis.

  • Chat & Embeddings Support

Built-in support for both chat generation and text embeddings.

  • Streaming Out of the Box

Real-time streaming responses with zero additional setup.

  • Native Tool Calling

First-class support for function / tool calling.

📦 Installation

npm install @apertis/ai-sdk-provider ai

⚡ Quick Start

import { 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);

🆕 What's New in v1.1.1

  • Implemented ProviderV3 interface for full AI SDK 6+ compatibility
  • Added embedding model support via apertis.textEmbeddingModel()
  • Improved API response schema flexibility
  • Removed deprecated completion model endpoint

🔗 Resources

  • https://www.npmjs.com/package/@apertis/ai-sdk-provider
  • https://github.com/apertis-ai/apertis-sdk
  • https://docs.apertis.ai
  • https://apertis.ai/token
Read update

Add Apple OAuth SSO

<p align="center"> <img src="/applesso.png" alt="Apple SSO" width="180" /> </p>

We're excited to announce that Apple OAuth (Sign in with Apple) is now supported on the Apertis login page for all users.

You can now sign in to Apertis using your Apple ID for a faster, more secure, and privacy-focused authentication experience.

Why this matters:

  • ✅ One-click login with your Apple ID
  • 🔒 Enhanced security with Apple's OAuth flow
  • 🕵️ Privacy-first: hide your email if you choose
  • 🚀 Faster onboarding for new users

This update is available to all users starting today.

👉 Try it now on the login page and let us know what you think.

Read update

New Feature: FREE Real-Time Web Search for Any Model

We're excited to announce Web Search - a powerful new feature that brings real-time internet data to any AI model on Apertis.

What's New

Simply add :web to any model name to enable real-time web search:

  • gpt-4o-mini:web
  • claude-3-5-sonnet-20241022:web
  • gemini-1.5-pro:web,...

🎉 Simply add :web suffix directly for ALL Model Ids!!!

Key Features

  • Real-Time Data: Get up-to-date information on stock prices, news, weather, and more
  • Source Citations: Every response includes web_sources with referenced URLs
  • Streaming Support: See the 🔍 Web searching... indicator followed by live content streaming
  • Zero Extra Cost: Web search costs are absorbed by the platform - you only pay for model tokens
  • Graceful Fallback: If search fails, the request automatically continues without interruption

🔥 Key benefits

  • Real-time information (stock prices, news, weather, live events)
  • Source citations included in every response
  • Streaming support with visible search indicators
  • 🤩 No extra cost — web search is included
  • Automatic fallback if search is unavailable to ensure stability

Example Response

  {
    "content": "As of January 6, 2026, Apple (AAPL) is trading at $262.36...",
    "web_sources": [
      {"title": "Apple Investor Relations", "url": "https://investor.apple.com/..."},
      {"title": "MarketWatch", "url": "https://www.marketwatch.com/..."}
    ]
  }

Documentation

For complete usage details, request parameters, and best practices, check out our documentation:

👉 https://docs.apertis.ai/web-search

Read update

December 2025