Skip to content

docs: document OrcaRouter as a hosted inference option - #787

Open
XiaoHuo888-hue wants to merge 1 commit into
OpenPipe:mainfrom
XiaoHuo888-hue:orcarouter-docs-examples
Open

docs: document OrcaRouter as a hosted inference option#787
XiaoHuo888-hue wants to merge 1 commit into
OpenPipe:mainfrom
XiaoHuo888-hue:orcarouter-docs-examples

Conversation

@XiaoHuo888-hue

Copy link
Copy Markdown

Summary

This documents OrcaRouter as a named hosted-inference option in the same places the existing OpenRouter examples live:

  • src/art/model.py — added an OrcaRouter example block to the Model docstring, mirroring the existing OpenRouter block.
  • docs/features/mcp-rl.mdx — added an OrcaRouter alternative to the scenario-generation snippet.
  • docs/fundamentals/sft-training.mdx — added an OrcaRouter alternative to the distillation teacher-client snippet.

This registers OrcaRouter the same way the existing OpenRouter provider is documented, so the Model docstring, the MCP-RL scenario-generation guide and the SFT teacher example stay consistent. OrcaRouter is an OpenAI-compatible gateway: one ORCAROUTER_API_KEY (keys start with sk-orca-) unlocks 150+ models from OpenAI, Anthropic, Google, DeepSeek, Qwen, MiniMax and xAI behind a single https://api.orcarouter.ai/v1 endpoint. It also runs gateway-level, zero-trust security for AI agents on the same endpoint — screening every prompt/response and governing every tool call on a default-deny basis, with no application code changes.

Verification

  • python -m py_compile src/art/model.py passes.
  • ruff check src/art/model.py and ruff format --check src/art/model.py pass.
  • Live check: https://api.orcarouter.ai/v1 with orcarouter/auto returns a valid completion.
  • Docstring/doc-only change (no runtime code path touched), so ty / pytest risk is nil.

I'm an engineer on the OrcaRouter team.

Adds a named OrcaRouter example alongside the existing OpenRouter
examples in the Model docstring, the SFT distillation teacher-client
snippet, and the MCP-RL scenario-generation docs.
OrcaRouter is an OpenAI-compatible gateway (https://api.orcarouter.ai/v1,
keys start with sk-orca-) that exposes 150+ models behind a single
endpoint, including the orcarouter/auto router model.
Co-Authored-By: Claude <noreply@anthropic.com>
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@XiaoHuo888-hue