Open
Description
Self Checks
- I have searched for existing issues search for existing issues, including closed ones.
- I confirm that I am using English to submit this report (Language Policy).
- Non-english title submitions will be closed directly ( 非英文标题的提交将会被直接关闭 ) (Language Policy).
- Please do not modify this template :) and fill in all the required fields.
RAGFlow workspace code commit ID
RAGFlow image version
V0.19
Other environment information
Actual behavior
via api for create a dataset with the parmenter: "embedding_model": "bge-m3@OpenAI-API-Compatible",
it will return :
{
"code": 101,
"message": "Unsupported model: bge-reranker-v2-m3@GPUStack"
}
but it is normal when we use other @Factorys., such as "embedding_model": "bge-m3@Jina"
Expected behavior
No response
Steps to reproduce
curl --location --request POST 'http://172.16.180.217/api/v1/datasets' \
--header 'Authorization: Bearer ragflow-IzMjZmMDJlNDVlZDExZjBhNGEyMDI0Mm' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "test_KB_Doc1111",
"embedding_model": "bge-m3@Jina",
"chunk_method": "naive",
"parser_config": {
"chunk_token_num": 128,
"delimiter": "\\n",
"layout_recognize": "DeepDOC",
"html4excel": false,
"raptor": {"use_raptor": false},
"graphrag": {"use_graphrag": false}
},
"permission": "team",
"pagerank": 0
}'
{
"code": 101,
"message": "Unsupported model: <bge-reranker-v2-m3@GPUStack>"
}
Additional information
No response