Skip to content

Qwen3 Embedding

An open source model from the Qwen family for generating embeddings — vectors that represent the meaning of a text, the foundation for semantic search, deduplication, clustering, and RAG.

idqwen3-embedding
TypeEmbeddings
Max input8K tokens
Available onStarter, Standard, Pro
  • Semantic search over your documents
  • RAG (retrieval-augmented generation)
  • Group or deduplicate texts by similarity
resp = client.embeddings.create(
model="qwen3-embedding",
input=["how to reset my password", "forgot the password"],
)
print(resp.data[0].embedding[:5])

Endpoint details in Embeddings.