mirror of
https://github.com/langgenius/dify-official-plugins.git
synced 2026-07-22 10:05:23 -04:00
jina multimodal embedding #922
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @nicho2 on GitHub (Jan 7, 2026).
Self Checks
Dify version
1.11.1
Plugin version
0.0.14
Cloud or Self Hosted
Self Hosted (Docker)
Steps to reproduce
I've updated the jina plugin and now the embedding don't work
I used the jina-embeddings-v4 embedding (from pipeline)
I don't now if it's the solution but this model don't appear in _position.yaml file -->
My connection to jina is well
✔️ Error log
No response
@dosubot[bot] commented on GitHub (Jan 7, 2026):
The reason 'jina-embeddings-v4' isn't working is that, while the plugin code and model config files for this model exist and support was added in plugin versions after 0.0.7, the model must also be listed in the
_position.yamlfile to be available for use in Dify. If it's missing from that file, Dify won't recognize or allow you to select it—even if the code supports it and your connection to Jina is fine [source 1] [source 2].To resolve this, add
jina-embeddings-v4to thetext_embeddingsection of your plugin's_position.yamlfile, matching the format of the other models. After editing, restart your plugin and Dify services. This should make the model selectable and usable. If you still have issues, double-check that your plugin version is at least 0.0.8 (when v4 support was added), and that your pipeline or knowledge base type supports this model—pipeline-based KBs have stricter validation and may reject some models [source].If you want multimodal (image+text) embedding, make sure the model's schema advertises the
VISIONfeature; otherwise, Dify won't enable image input for recall, even if the model is technically multimodal [source].To reply, just mention @dosu.
How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other