Vercel AI SDK
The Vercel AI SDK is the default TypeScript toolkit for building AI features, and qynio publishes a provider for it. Install @qynio/ai-sdk-provider, set QYN_API_KEY, and every generateText, streamText and tool call routes through the gateway, so switching model means editing a string rather than rewriting a client. Wrap a model with opperSpan and every call in a session lands under one span in tracing.
Build with Vercel AI SDK on qynio
qynio publishes and maintains @qynio/ai-sdk-provider. Install it, set QYN_API_KEY, and pick any model in the catalogue.
Get your API keyIn your code
import { qynio } from '@qynio/ai-sdk-provider';import { generateText } from 'ai';const { text } = await generateText({model: qynio('openai/gpt-5.5'),prompt: 'Hello!',});
More apps on qynio
Mastra
qynio is a provider in Mastra's model router. Write a model string, set a key, and the agent runs through the gateway.
qynio built inLiteLLM
Reach qynio through LiteLLM's OpenAI-compatible provider, in the Python SDK or behind the proxy.
/v3/compatLangChain
Point LangChain's OpenAI chat model at qynio and the rest of the chain carries on unchanged.
/v3/compat