mirror of
https://github.com/langgenius/dify-plugins.git
synced 2026-07-22 01:55:36 -04:00
vllm plugin only support llm, but vllm can do text embedding too #125
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 @qiulang on GitHub (Jun 25, 2025).
vllm can do llm as well as text embedding
e.g. https://docs.vllm.ai/en/v0.7.1/serving/engine_args.html
--task
Possible choices: auto, generate, embedding, embed, classify, score, reward
I start bge model like this
vllm serve ./BAAI/bge-m3 --task embedbut I can not use it with vllm plugin@jingfelix commented on GitHub (Jun 29, 2025):
Good point. I will take a look.