feat(desktop): add custom endpoint quick-edit card to API Keys page - #68591
Closed
eiritsu wants to merge 3 commits into
Closed
feat(desktop): add custom endpoint quick-edit card to API Keys page#68591eiritsu wants to merge 3 commits into
eiritsu wants to merge 3 commits into
Conversation
Collaborator
eiritsu
force-pushed
the
feat/custom-endpoint-card-clean
branch
4 times, most recently
from
July 22, 2026 02:50
b209462 to
d72cc34
Compare
eiritsu
force-pushed
the
feat/custom-endpoint-card-clean
branch
2 times, most recently
from
July 23, 2026 13:47
d7d1a10 to
424871f
Compare
Author
Coordinating with PR #69258Noticed PR #69258 (fix(desktop): delete legacy custom providers) also touches Custom Endpoints. Currently coordinating with @SacrEllfarch on how to align the two PRs. Current state
Coordination options under discussion
Links |
Adds a compact inline card under the LocalEndpointRow in the API Keys page, giving users a quick-edit affordance for their active custom endpoint's base_url and api_key without leaving the page. - Calls plural /api/providers/custom-endpoints (aligned with upstream main) - Falls back to the existing CustomEndpointsSettings full page for advanced flows (new/edit multiple, API compatibility mode, legacy entries) - Sits on top of NousResearch#69258 which adds legacy custom_providers management to the full page
eiritsu
force-pushed
the
feat/custom-endpoint-card-clean
branch
from
July 24, 2026 05:24
424871f to
915985a
Compare
Author
|
Closing this overlapping implementation in favor of PR #69258, which is the coordinated Custom Endpoint path. |
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
Adds a compact inline card under the LocalEndpointRow in the API Keys page, giving users a quick-edit affordance for their active custom endpoint's base_url and api_key without leaving the page.
This sits on top of PR #69258 which adds legacy
custom_providers:management to the existing full Custom Endpoints settings page. That page (preserved as-is) handles multi-endpoint CRUD, API compatibility mode, and legacy entries; the new card is just a faster inline shortcut for the common single-endpoint case.Changes
New
CustomEndpointKeyCardcomponent (providers-settings.tsx)<LocalEndpointRow />in the API Keys viewbase_urlandapi_keyin place/api/providers/custom-endpointsREST surface as upstream maingetCustomEndpoints()and passes itsid/name/modelthroughsaveCustomEndpoint()on every save<LocalEndpointRow />→ full page for new endpoints / multiple endpoints / legacy entriesi18n
customEndpointtranslation block (en + zh + types)Out of scope (already handled by #69258)
custom_providers:entry listing and deletionDesign notes
getCustomEndpoints()so backend writes stay scoped to a knownproviderkey (no orphannamederivation)web_server.pyis unchanged from fix(desktop): delete legacy custom providers #69258's branch