Changelog

Type

January 2026

Feature

Feature Added

🔥 LlamaIndex: Apertis is Now an Official LlamaIndex Model Provider

🎉 Apertis is Now an Official LlamaIndex Model Provider

We're excited to announce that Apertis is now an official model provider for LlamaIndex.

This integration allows LlamaIndex users to seamlessly access 470+ models across multiple providers through Apertis, using a single, unified API.

---

✨ What This Means

  • Native Provider Integration

Apertis is now recognized as an official model provider in the LlamaIndex ecosystem.

  • 470+ Models via One Gateway reminder

Use OpenAI, Anthropic, Google, and more without changing your application logic.

  • Drop-in Compatibility

Works seamlessly with existing LlamaIndex workflows and abstractions.

  • Unified Auth & Billing

Manage keys, usage, and costs centrally through Apertis.

---

🚀 Getting Started

Refer to the LlamaIndex documentation to configure Apertis as your model provider:

  • https://docs.apertis.ai
  • https://www.llamaindex.ai

---

🔗 Resources

  • https://developers.llamaindex.ai/python/examples/llm/apertis/
  • https://docs.apertis.ai/installation/llamaindex

---

We're excited to support the LlamaIndex community and look forward to enabling more flexible, multi-model AI applications with Apertis.

Read more

Feature

Feature Added

🎉 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 more

Feature

System Update

Add Apple OAuth SSO

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

<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 more

Feature

Feature Added

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 more