Text Embedding 3 Small

text-embedding-3-small
byOpenAI|Created May 26, 2025
Embeddings

Text-Embedding-3-Small is OpenAI’s efficient, compact embedding model, designed to convert text into numerical representations for semantic tasks such as search, clustering, and recommendations. It offers improved performance and cost-effectiveness compared to previous models, with low latency and storage requirements.

Code Example

Example code for using this model through our API with Python (OpenAI SDK) or cURL. Replace placeholders with your API key and model ID.

Basic request example. Ensure API key permissions. For more details, see our documentation.

from openai import OpenAI

client = OpenAI(base_url="https://api.naga.ac/v1", api_key="YOUR_API_KEY")

resp = client.embeddings.create(
    model="text-embedding-3-small",
    input=[
        "The food was delicious!",
        "Service could be faster."
    ],
    # dimensions=512,  # if supported
    # encoding_format="base64",
)
print(resp)