Files
ragflow/conf/models/orcarouter.json
Haruko386 3619ceca01 Go: implement provider: OrcaRouter (#15235)
### 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>
2026-05-26 18:20:33 +08:00

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"
]
}
]
}