Overview
About this model
qwen3-embedding-8b produces vector embeddings for semantic search and retrieval, served on EcoHash through an OpenAI-compatible API.
Specifications
Model details
- Provider
- Alibaba
- Modality
- Embedding
- Pricing
- $0.12 / 1M
API
Call it in code
One OpenAI-compatible API. Swap the model id and you're done.
from openai import OpenAI
client = OpenAI(
base_url="https://api.ecohash.com/v1",
api_key="YOUR_API_KEY",
)
response = client.embeddings.create(
model="qwen3-embedding-8b",
input="Semantic search over your documents",
)More models