Files
ragflow/conf/models/huggingface.json
Haruko386 ee0de58204 Go: implement provider: HuggingFace (#14722)
### What problem does this PR solve?

Implement `HuggingFace` provider

### Type of change

- [x] New Feature (non-breaking change which adds functionality)
2026-05-09 13:36:03 +08:00

21 lines
387 B
JSON

{
"name": "HuggingFace",
"url": {
"default": "https://router.huggingface.co/v1/"
},
"url-suffix": {
"chat": "chat/completions",
"models": "models",
"embedding": "hf-inference/models"
},
"class": "huggingface",
"models": [
{
"name": "openai/gpt-oss-120b:fastest",
"max_tokens": 32768,
"model_types": [
"chat"
]
}
]
}