LLM Reference

text-embedding-3-small on Vercel AI Gateway

text-embedding-3 · OpenAI

Serverless

Last refreshed 2026-05-22. Next refresh: weekly.

Why use text-embedding-3-small on Vercel AI Gateway?

Vercel AI Gateway offers text-embedding-3-small with pay-as-you-go pricing at $0.02/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.

Input / 1M
$0.020
Output / 1M
-
Cache
Not sourced
Batch
Not sourced

Setup recipe

Python + curl
Install
pip install openai
Auth
export AI_GATEWAY_API_KEY=...
Call
import os
from openai import OpenAI
client = OpenAI(
    api_key=os.environ["AI_GATEWAY_API_KEY"],
Model ID
openai/text-embedding-3-small

Request 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-3-small",
    messages=[{"role": "user", "content": "Hello"}]
)
print(response.choices[0].message.content)

Gotchas

  • Use provider model ID "openai/text-embedding-3-small", not the LLMReference slug "text-embedding-3-small".
  • 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

TypePrice (per 1M)
Input tokens$0.02

Capabilities

No model capability flags are currently sourced.

About text-embedding-3-small

OpenAI's efficient text embedding model with 1536 output dimensions. Higher performance than text-embedding-ada-002 at lower cost.

FAQ

What is the context window for text-embedding-3-small on Vercel AI Gateway?

text-embedding-3-small supports a 8,191 token context window on Vercel AI Gateway.

What API model ID do I use for text-embedding-3-small on Vercel AI Gateway?

Use the model ID openai/text-embedding-3-small when calling Vercel AI Gateway's API.

Who created text-embedding-3-small?

text-embedding-3-small was created by OpenAI as part of the text-embedding-3 model family.

Is text-embedding-3-small open source?

text-embedding-3-small's open source status is unknown in the seed data.

Get Started

Model Specs

Released2024-01-25
Context8K
Knowledge cutoff2021-09

Related Models on Vercel AI Gateway