mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-06-29 23:41:12 +08:00
### What problem does this PR solve? Add a Go driver for **FuturMix** (https://futurmix.ai/docs), one of the unchecked providers on the umbrella tracking issue #14736. FuturMix is documented as an "OpenAI-compatible API" aggregator over Claude / GPT / Gemini / DeepSeek (~22 models per their `/models` page). Until this PR, a tenant who configured `futurmix` as a model provider in the Go layer fell through to the default branch of `internal/entity/models/factory.go` and got the dummy driver. --------- Co-authored-by: sxxtony <sxxtony@users.noreply.github.com> Co-authored-by: Jin Hai <haijin.chn@gmail.com>
109 lines
1.8 KiB
JSON
109 lines
1.8 KiB
JSON
{
|
|
"name": "FuturMix",
|
|
"url": {
|
|
"default": "https://futurmix.ai"
|
|
},
|
|
"url_suffix": {
|
|
"chat": "v1/chat/completions"
|
|
},
|
|
"class": "futurmix",
|
|
"models": [
|
|
{
|
|
"name": "gpt-5.5",
|
|
"max_tokens": 400000,
|
|
"model_types": [
|
|
"chat",
|
|
"vision"
|
|
]
|
|
},
|
|
{
|
|
"name": "gpt-5.4",
|
|
"max_tokens": 400000,
|
|
"model_types": [
|
|
"chat",
|
|
"vision"
|
|
]
|
|
},
|
|
{
|
|
"name": "gpt-5.4-mini",
|
|
"max_tokens": 400000,
|
|
"model_types": [
|
|
"chat",
|
|
"vision"
|
|
]
|
|
},
|
|
{
|
|
"name": "gpt-5.4-nano",
|
|
"max_tokens": 400000,
|
|
"model_types": [
|
|
"chat",
|
|
"vision"
|
|
]
|
|
},
|
|
{
|
|
"name": "claude-opus-4-7",
|
|
"max_tokens": 200000,
|
|
"model_types": [
|
|
"chat",
|
|
"vision"
|
|
]
|
|
},
|
|
{
|
|
"name": "claude-opus-4-6",
|
|
"max_tokens": 200000,
|
|
"model_types": [
|
|
"chat",
|
|
"vision"
|
|
]
|
|
},
|
|
{
|
|
"name": "claude-sonnet-4-6",
|
|
"max_tokens": 200000,
|
|
"model_types": [
|
|
"chat",
|
|
"vision"
|
|
]
|
|
},
|
|
{
|
|
"name": "claude-haiku-4-5-20251001",
|
|
"max_tokens": 200000,
|
|
"model_types": [
|
|
"chat",
|
|
"vision"
|
|
]
|
|
},
|
|
{
|
|
"name": "gemini-3.1-pro-preview",
|
|
"max_tokens": 2000000,
|
|
"model_types": [
|
|
"chat",
|
|
"vision"
|
|
]
|
|
},
|
|
{
|
|
"name": "gemini-2.5-pro",
|
|
"max_tokens": 2000000,
|
|
"model_types": [
|
|
"chat",
|
|
"vision"
|
|
]
|
|
},
|
|
{
|
|
"name": "gemini-2.5-flash",
|
|
"max_tokens": 1048576,
|
|
"model_types": [
|
|
"chat",
|
|
"vision"
|
|
]
|
|
},
|
|
{
|
|
"name": "gemini-2.5-flash-lite",
|
|
"max_tokens": 1048576,
|
|
"model_types": [
|
|
"chat",
|
|
"vision"
|
|
]
|
|
}
|
|
]
|
|
}
|