For AI agents: docs.octen.ai/capabilities/vl-embedding.md
Text, images, and videos normally live in separate vector spaces: a text query can’t find an image, and a product photo can’t find its description. VL Embedding closes that gap: it encodes text, images, and videos into one shared vector space, so any modality can retrieve any other. For the full list of parameters, see the VL Embedding API reference. For the concept behind embeddings, see What are Embeddings.Why VL Embedding
- Cross-modal search. Query with text and retrieve images or videos, or the other way around.
- Visual retrieval. Find similar images for dedup, recommendations, and visual search.
- Multimodal RAG. Ground models on knowledge that includes screenshots, diagrams, and video.
Why Octen
- SOTA multimodal retrieval. Top-ranked on MMEB-v2 for retrieval across text, images, videos, and visual documents.
- Native video embedding. Videos embed into the same space as text and images, so video libraries become searchable instead of staying a blind spot.
- Flexible output. One vector per element, or a single fused vector for the whole multimodal input.
Model Choices
How It Works
- Embed your content. Send text, images, or videos, mixed freely in one request. The model encodes them into one shared vector space: one vector per element, or a single fused vector for the combined input.
- Build a vector index. Store the vectors in a vector database, the same way as text-only embeddings.
- Embed queries and retrieve. Encode the query, in any modality, with the same model, and compare it against the index by similarity. The closest matches come back regardless of modality, so text can find images and videos, and an image can find its description.
Scenarios
Index your images
Embed a product catalog, photo library, or asset collection so every image can be found by meaning.Find images by describing them
No tags, no filenames: embed a plain description in the same space, and the closest image vectors are the results.One vector for the whole item
A product is more than its photo: fuse the title and the image into a single vector that represents the item as a whole, so one entry per item lands in your index.Make videos searchable
Tutorials, demos, and recordings hold knowledge that keyword search never reaches. Embed them like any document; lower the frame sampling to cut token cost on long footage.Customize the task instruction
Pass a task description to control what the embedding captures. The instruction below makes the vector represent the screenshot’s UI layout style, so retrieval matches by design rather than by subject.Next Steps
VL Embedding API Reference
Full request/response schema.