Text Embedding 3 Large

高维度 embedding (3072 dim)

Model ID: text-embedding-3-large · Type: embedding · Provider: OpenAI

Endpoints: /v1/embeddings

Pricing

Input (per 1M tokens)$0.09295 USD
from openai import OpenAI

client = OpenAI(api_key="sk-...", base_url="https://api.router.ai/v1")
resp = client.embeddings.create(model="text-embedding-3-large", input="hello world")
print(len(resp.data[0].embedding))

FAQ

How much does Text Embedding 3 Large cost on OpenCrow?

Text Embedding 3 Large (`text-embedding-3-large`) is billed per usage at $0.143 / 1M tokens in · None / 1M tokens out, in USD. Current pricing is always listed at https://opencrow.ai/models/text-embedding-3-large.

How do I call Text Embedding 3 Large through OpenCrow?

Send a request to https://api.router.ai/v1/v1/embeddings with the header `Authorization: Bearer <your API key>` and `"model": "text-embedding-3-large"`. The API is OpenAI-compatible, so any OpenAI SDK works by changing base_url to https://api.router.ai/v1 — no other code change.

What is Text Embedding 3 Large's context window?

Text Embedding 3 Large accepts up to 8,192 input tokens. Requests exceeding the input limit are rejected before reaching the model.

Who makes Text Embedding 3 Large?

Text Embedding 3 Large is a embedding model from OpenAI, available through the OpenCrow gateway with the same API key as every other model.

Call it through the OpenCrow OpenAI-compatible endpoint (API base: https://api.router.ai/v1). AI agents can discover and call every model on this gateway through MCP (https://mcp.router.ai/mcp) with no manual integration.

API reference · All models