mirror of
https://github.com/infiniflow/ragflow.git
synced 2026-06-29 23:41:12 +08:00
### What problem does this PR solve? implement provider `OrcaRouter` **The following functionalities are now supported:** **Cohere:** - [x] Chat / Think Chat / Stream Chat / Stream Think Chat - [x] Model listing - [x] TTS - [ ] Balance ### Type of change - [x] New Feature (non-breaking change which adds functionality) --------- Co-authored-by: Jin Hai <haijin.chn@gmail.com>
27 lines
450 B
JSON
27 lines
450 B
JSON
{
|
|
"name": "OrcaRouter",
|
|
"url": {
|
|
"default": "https://api.orcarouter.ai"
|
|
},
|
|
"url_suffix": {
|
|
"chat": "v1/chat/completions",
|
|
"models": "v1/models",
|
|
"tts": "v1/audio/speech"
|
|
},
|
|
"class": "orcarouter",
|
|
"models": [
|
|
{
|
|
"name": "orcarouter/auto",
|
|
"max_tokens": 128000,
|
|
"model_types": [
|
|
"chat"
|
|
]
|
|
},
|
|
{
|
|
"name": "openai/tts-1",
|
|
"model_types": [
|
|
"tts"
|
|
]
|
|
}
|
|
]
|
|
} |