-
Notifications
You must be signed in to change notification settings - Fork 315
docs: add ChatOrcaRouter chat model integration #216
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
zhenjunchen-png
wants to merge
3
commits into
FlowiseAI:main
Choose a base branch
from
zhenjunchen-png:feature/orcarouter-chat-model
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -16,6 +16,7 @@ Chat models take a list of messages as input and return a model-generated messag | |
| * [ChatAnthropic](chatanthropic.md) | ||
| * [ChatCohere](chatcohere.md) | ||
| * [Chat Fireworks](chat-fireworks.md) | ||
| * [ChatOrcaRouter](chatorcarouter.md) | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| * [ChatGoogleGenerativeAI](google-ai.md) | ||
| * [ChatGooglePaLM](broken-reference) | ||
| * [Google VertexAI](google-vertexai.md) | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| # ChatOrcaRouter | ||
|
|
||
| ## Description | ||
|
|
||
| OrcaRouter is an OpenAI-compatible LLM router that exposes 150+ models behind a single endpoint, with a workspace-configurable `auto` router that picks the best upstream per request based on price, latency, quality, and rate-limit signals. | ||
|
|
||
| ## Prerequisite | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
|
|
||
| 1. Sign up at [https://www.orcarouter.ai](https://www.orcarouter.ai). | ||
| 2. Create an API key at the [OrcaRouter console](https://www.orcarouter.ai/console). Keys begin with `sk-orca-`. | ||
| 3. Browse the full model catalog at [https://www.orcarouter.ai/models](https://www.orcarouter.ai/models). | ||
|
|
||
| ## Step by Step Guide | ||
|
|
||
| 1. **Chat Models** > Drag the **ChatOrcaRouter** node. | ||
| 2. Click **Connect Credential** and create a new credential with your OrcaRouter API key. | ||
| 3. Pick a model from the **Model Name** dropdown — it is fetched live from the OrcaRouter catalog and led by `orcarouter/auto` (the workspace router). You can also type any model id from the [OrcaRouter catalog](https://www.orcarouter.ai/models). | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| 4. Connect ChatOrcaRouter to an LLM Chain, Conversational Agent, or other downstream node and run the chatflow. | ||
|
|
||
| ## Routing notes | ||
|
|
||
| - `orcarouter/auto` is a virtual router name, not a model. Configure its routing strategy (`cheapest`, `balanced`, `quality`, `adaptive`, `gated_adaptive`) and pool membership at [https://www.orcarouter.ai/console/routing](https://www.orcarouter.ai/console/routing). | ||
| - Reasoning models such as `anthropic/claude-opus-4.8`, the OpenAI `gpt-5` family, and `deepseek/deepseek-reasoner` reject the `temperature` field. Leave **Temperature** blank for those models. | ||
| - For self-hosted [OrcaRouter-O2](https://github.com/Continuum-AI-Corp/OrcaRouter-O2) deployments, override the **Base Path** under *Additional Parameters*. | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
To maintain alphabetical order in the Chat Models list,
ChatOrcaRoutershould be placed afterChatOpenAI(which is at line 127) rather than here.