Text Embedding 3 Small
Text Embedding 3 Small is a OpenAI model listed in the NextModel catalogue for General chat via OpenAI, API workloads workloads. Its listed price is $0.02 / 1M tokens input and $0 / 1M tokens output, with a — token context window.
What is Text Embedding 3 Small in NextModel?
Text Embedding 3 Small is a OpenAI model listed in the NextModel catalogue for General chat via OpenAI, API workloads workloads. Its listed price is $0.02 / 1M tokens input and $0 / 1M tokens output, with a — token context window.
Best use cases
- General chat via OpenAI
- API workloads
OpenAI-compatible code example
Keep the OpenAI SDK style, set base_url to NextModel, and use the catalogue model ID openai--text-embedding-3-small.
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://api.nextmodel.app/v1"
)
resp = client.chat.completions.create(
model="openai/text-embedding-3-small",
messages=[{"role": "user", "content": "Hello from NextModel"}]
)
print(resp.choices[0].message.content)Similar alternatives
Available through the NextModel gateway via OpenAI.
Available through the NextModel gateway via OpenAI.
TTS 1
80Available through the NextModel gateway via OpenAI.
Reading
Articles that explain Text Embedding 3 Small
How Canadian teams can estimate AI API cost before launch
Listed price only tells you the unit cost. This walkthrough turns that into a traffic estimate.
Lin Qiming
LLM Gateway: Compare Options and Alternatives
Same OpenAI-compatible base URL, with routing and billing sitting in front of the model.
Zhao Yu'an
OpenRouter alternatives for developers who need AI API cost control
If the buying question is cost control rather than one model, start here.
Zhao Yu'an
FAQ