Last refreshed 2026-05-22. Next refresh: weekly.
Why use text-embedding-ada-002 on Vercel AI Gateway?
Vercel AI Gateway offers text-embedding-ada-002 with pay-as-you-go pricing at $0.10/1M input tokens. Vercel AI Gateway is a unified AI proxy providing a single OpenAI-compatible API endpoint to 275+ models from 25+ providers including Anthropic, OpenAI, Google, Meta, Mistral, DeepSeek, xAI, Alibaba, Amazon, ByteDance, Cohere, MiniMax, MoonshotAI, KwaiPilot, Black Forest Labs, Recraft, Voyage AI, NVIDIA, and more.
Setup recipe
Python + curlpip install openaiexport AI_GATEWAY_API_KEY=...import os
from openai import OpenAI
client = OpenAI(
api_key=os.environ["AI_GATEWAY_API_KEY"],openai/text-embedding-ada-002Request example
import os
from openai import OpenAI
client = OpenAI(
api_key=os.environ["AI_GATEWAY_API_KEY"],
base_url="https://ai-gateway.vercel.sh/v1"
)
response = client.chat.completions.create(
model="openai/text-embedding-ada-002",
messages=[{"role": "user", "content": "Hello"}]
)
print(response.choices[0].message.content)Gotchas
- Use provider model ID "openai/text-embedding-ada-002", not the LLMReference slug "text-embedding-ada-002".
- creator/model-name e.g. kwaipilot/kat-coder-pro-v2
- The examples expect AI_GATEWAY_API_KEY; rename it only if your application config maps the new variable.
Pricing
| Type | Price (per 1M) |
|---|---|
| Input tokens | $0.10 |
Capabilities
No model capability flags are currently sourced.
About text-embedding-ada-002
OpenAI's Ada-002 text embedding model. Legacy but widely deployed; succeeded by text-embedding-3 series. 1536 output dimensions.
FAQ
What is the context window for text-embedding-ada-002 on Vercel AI Gateway?
text-embedding-ada-002 supports a 8,191 token context window on Vercel AI Gateway.
What API model ID do I use for text-embedding-ada-002 on Vercel AI Gateway?
Use the model ID openai/text-embedding-ada-002 when calling Vercel AI Gateway's API.
Who created text-embedding-ada-002?
text-embedding-ada-002 was created by OpenAI as part of the text-embedding-ada model family.
Is text-embedding-ada-002 open source?
text-embedding-ada-002's open source status is unknown in the seed data.