Embed Text
embed_textConvert text into 4096-dimension vectors for retrieval-augmented generation or semantic search. Returns a summary of item count, dimensions, and input tokens so you can populate a vector store efficiently.
Instructions
Turn text into 4096-dimension vectors with qwen3-embedding (NaN API) for RAG or semantic search; rerank_documents then orders whatever a search over those vectors brings back. Returns only a summary — item count, dimensions and input tokens — because the vectors are far too large to put in the conversation, so use this to populate a store rather than to read values.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| input | Yes | Single text or array of strings to embed. Passing the whole batch in one call is cheaper than one call per string | |
| encoding_format | No | Encoding format. Default float |