docs: add OrcaRouter to supported providers - #89
Open
Marc-oss-hub wants to merge 1 commit into
Open
Conversation
Add OrcaRouter to the README provider lists and document it in docs/model_providers.md with a dedicated section mirroring OpenRouter and Atlas Cloud. LightAgent already works with any OpenAI-compatible endpoint via model / api_key / base_url, so this is documentation only.
wxai-space
requested changes
Aug 15, 2026
wxai-space
left a comment
Collaborator
There was a problem hiding this comment.
Thank you for the documentation contribution. The integration direction is compatible with LightAgent because OrcaRouter exposes an OpenAI-compatible endpoint, but a few changes are required before merge:
- Please use
orcarouter/autoas the primary example model, or clearly state that provider model IDs such asopenai/gpt-5.5andanthropic/claude-opus-4.8are dynamic and must be confirmed in OrcaRouter's current model catalog. This keeps the LightAgent documentation from becoming stale when upstream model availability changes. - Please add a link to the official OrcaRouter model catalog or documentation next to that availability note.
- Please rebase or update this branch against the latest
main, which now contains v0.9.7. - No GitHub Actions checks are currently reported for this commit. Please push the documentation update so the full repository CI can run. If GitHub requires maintainer approval for the external workflow, we can approve it after the updated commit appears.
Please keep the repository documentation limited to verifiable compatibility/configuration details and avoid long-term guarantees about model availability, routing behavior, or security policy that are controlled by the external service.
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
docs/model_providers.md, mirroring the existing OpenRouter and Atlas Cloud sections.OrcaRouter is an OpenAI-compatible model routing gateway that exposes 150+ models from OpenAI, Anthropic, Google, DeepSeek, Qwen and others behind a single endpoint and API key. 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.
Compatibility
agent.run("hello")behavior is unchanged, or the change is documented. (docs-only change)stream=Truebehavior is unchanged, or the change is documented. (docs-only change)Tests
python -m compileall -q LightAgent(passed)PYTHONPATH=. python -m pytest -q tests/test_v065_core.py tests/test_v070_tracing.py tests/test_memory_policy.py(57 passed)LightAgent(model="openai/gpt-5.5", api_key=..., base_url="https://api.orcarouter.ai/v1")returnedORCA-OKNotes
Documentation only. No code, API, or behavior changes.
I'm an engineer on the OrcaRouter team.