OpenRouter: Migrate python-open-router to official openrouter#168011
Open
ab3lson wants to merge 3 commits intohome-assistant:devfrom
Open
OpenRouter: Migrate python-open-router to official openrouter#168011ab3lson wants to merge 3 commits intohome-assistant:devfrom
ab3lson wants to merge 3 commits intohome-assistant:devfrom
Conversation
|
Hey there @joostlek, mind taking a look at this pull request as it has been labeled with an integration ( Code owner commandsCode owners of
|
Contributor
There was a problem hiding this comment.
Pull request overview
Note
Copilot was unable to run its full agentic suite in this review.
Migrates the OpenRouter integration from the third-party python-open-router SDK to the official openrouter Python SDK, updating the config flow and tests accordingly.
Changes:
- Replaced
python-open-routerusage withopenrouterin the integration config flow. - Updated OpenRouter test fixtures and config flow tests to mock the official SDK APIs and error types.
- Swapped dependency pins from
python-open-router==0.3.3toopenrouter==0.8.0across manifests and requirement sets.
Reviewed changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated 5 comments.
Show a summary per file
| File | Description |
|---|---|
| tests/components/open_router/test_config_flow.py | Updates mocks/error construction and adapts tests to the official SDK method surface. |
| tests/components/open_router/conftest.py | Reworks OpenRouter client fixture to patch OpenRouter and return official Model objects. |
| requirements_test_all.txt | Replaces python-open-router with openrouter for tests. |
| requirements_all.txt | Replaces python-open-router with openrouter for runtime. |
| homeassistant/components/open_router/manifest.json | Updates integration requirements to the official SDK. |
| homeassistant/components/open_router/config_flow.py | Refactors API key validation and model fetching to use openrouter via executor jobs. |
e8f5d52 to
d1c9835
Compare
erwindouna
reviewed
Apr 12, 2026
Comment on lines
+53
to
+54
| label: str = result.data.label | ||
| return label |
Contributor
There was a problem hiding this comment.
Suggested change
| label: str = result.data.label | |
| return label | |
| return result.data.label |
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.
Proposed change
This MR migrates python-open-router to the official openrouter package. This should alleviate the need to maintain a custom SDK and allows the integration to easily stay up-to-date with OpenRouter capabilities.
Type of change
Checklist
ruff format homeassistant tests)If user exposed functionality or configuration variables are added/changed:
If the code communicates with devices, web services, or third-party tools:
Updated and included derived files by running:
python3 -m script.hassfest.requirements_all.txt.Updated by running
python3 -m script.gen_requirements_all.To help with the load of incoming pull requests: