mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
Feat: support vision llm for gpustack (#6636)
### What problem does this PR solve? https://github.com/infiniflow/ragflow/issues/6138 This PR is going to support vision llm for gpustack, modify url path from `/v1-openai` to `/v1` ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -107,7 +107,8 @@ from .cv_model import (
|
||||
YiCV,
|
||||
HunyuanCV,
|
||||
AnthropicCV,
|
||||
SILICONFLOWCV
|
||||
SILICONFLOWCV,
|
||||
GPUStackCV,
|
||||
)
|
||||
|
||||
from .rerank_model import (
|
||||
@ -145,7 +146,7 @@ from .tts_model import (
|
||||
SparkTTS,
|
||||
XinferenceTTS,
|
||||
GPUStackTTS,
|
||||
SILICONFLOWTTS
|
||||
SILICONFLOWTTS,
|
||||
)
|
||||
|
||||
EmbeddingModel = {
|
||||
@ -202,6 +203,7 @@ CvModel = {
|
||||
"Tencent Hunyuan": HunyuanCV,
|
||||
"Anthropic": AnthropicCV,
|
||||
"SILICONFLOW": SILICONFLOWCV,
|
||||
"GPUStack": GPUStackCV,
|
||||
}
|
||||
|
||||
ChatModel = {
|
||||
|
||||
Reference in New Issue
Block a user