Fix
System Update
Optimization on API requests: 40-80% latency reduction
- Before: 30-55ms
- After: 5-10ms (cache hits) / 15-25ms (cache misses)
- Estimated improvement: 40-80% latency reduction
Fix
Optimization on API requests: 40-80% latency reduction
Fix
Python SDK: Add comprehensive SDK features (v0.2.0)
Add comprehensive SDK features (v0.2.0) New Features:
Includes 81 unit tests covering all new functionality.
PyPI Package: https://pypi.org/project/apertis/
Fix
Python SDK - Fix API response compatibility issues (v0.1.1)
Tested with real API calls:
Feature
🎉 Apertis Python SDK Released
We're excited to announce the official release of the Apertis Python SDK, now available on PyPI.
This SDK enables Python developers to integrate Apertis into their applications with ease, providing unified access to 470+ AI models across multiple providers through a single, consistent API.
---
pip install apertisPyPI: https://pypi.org/project/apertis
Designed for reliability, extensibility, and integration into real-world Python workflows.
v1.0.0 — Initial Release
We're excited to support the Python community and can't wait to see what you build with Apertis 🚀
Feature
🎉 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.
---
https://ai-sdk.dev/providers/community-providers/apertis
https://www.npmjs.com/package/@apertis/ai-sdk-provider
---
Apertis is now recognized and documented as a community provider by the Vercel AI SDK team.
Access OpenAI, Anthropic, Google, and many more models through Apertis.
Use Apertis with the same generateText, streaming, tool calling, and embedding APIs you already know.
Fully compatible with AI SDK 6+ and the LanguageModelV3 specification.
---
import { apertis } from '@apertis/ai-sdk-provider';
import { generateText } from 'ai';
const { text } = await generateText({
model: apertis('gpt-5.2'),
prompt: 'Hello from Apertis!',
});