Providers
vercelAI
Wrap a Vercel AI SDK `LanguageModel` as an AgentsKit adapter.
import { vercelAI } from '@agentskit/adapters'
import { openai as vercelOpenAI } from '@ai-sdk/openai'
const adapter = vercelAI({
model: vercelOpenAI('gpt-4o'),
})#Options
| Option | Type |
|---|---|
model | LanguageModel (from ai SDK) |
#Why vercelAI
- Migrate from Vercel AI SDK incrementally.
- Keep your existing
@ai-sdk/*provider choices.
#Related
Explore nearby
- PeerProviders
25 native chat and embedder adapters, plus higher-order adapters that compose candidates. Separate from the 140-provider models catalog.
- PeerChoosing an adapter
Capability decision table and rules of thumb for picking a chat adapter.
- PeerHosted chat adapters
17 managed-LLM adapters. Same contract; swap by changing one import.