Skip to content
SolidRusT.ai

Embeddings

Generate vector embeddings from input text.

Live model (2026-09-04): Qwen/Qwen3-Embedding-0.6B, 1024 dimensions, 32768 max input tokens. Confirmed by GET /v1/models on the embeddings service and by GET /v1/stats on the data layer (embedding_dimension: 1024).

POST /v1/embeddings
ParameterTypeRequiredDescription
modelstringYesQwen/Qwen3-Embedding-0.6B
inputstring/arrayYesText to embed (string or array of strings)
encoding_formatstringNofloat (default) or base64
Terminal window
curl https://api.solidrust.ai/v1/embeddings \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "Qwen/Qwen3-Embedding-0.6B",
"input": "What is semantic search?"
}'
Terminal window
curl https://api.solidrust.ai/v1/embeddings \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "Qwen/Qwen3-Embedding-0.6B",
"input": [
"First document to embed",
"Second document to embed",
"Third document to embed"
]
}'
{
"object": "list",
"data": [
{
"object": "embedding",
"index": 0,
"embedding": [0.0023, -0.0047, 0.0112]
}
],
"model": "Qwen/Qwen3-Embedding-0.6B",
"usage": {
"prompt_tokens": 8,
"total_tokens": 8
}
}
ModelDimensionsMax input
Qwen/Qwen3-Embedding-0.6B102432768 tokens

bge-m3 is not deployed. Do not send that id.

  • Semantic Search - Find similar documents by meaning
  • RAG Applications - Retrieve relevant context for LLM prompts
  • Clustering - Group related content together
  • Classification - Use embeddings as features for ML models