refactor: rename "API Keys" settings page to "Models" - #1313
Merged
lfnovo merged 4 commits intoSep 5, 2026
Conversation
Rename the provider credentials settings area from "API Keys" to "Models": - Route: /settings/api-keys -> /settings/models with a permanent redirect - UI copy: page title, description, and learn-more now use "Models" wording - i18n: updated display values across all 14 locales (key names unchanged) - Internal links: sidebar, setup banner, and command palette point to /settings/models - Docs: "Settings → API Keys" references updated to "Settings → Models"
AugustoSandim
force-pushed
the
refactor/standardize-models-area
branch
from
September 4, 2026 22:39
d97085c to
1242d91
Compare
AugustoSandim
marked this pull request as ready for review
September 4, 2026 22:40
Contributor
There was a problem hiding this comment.
All reported issues were addressed across 42 files
Reply with feedback, questions, or to request a fix.
Re-trigger cubic
Contributor
There was a problem hiding this comment.
All reported issues were addressed across 1 file (changes from recent commits).
Reply with feedback, questions, or to request a fix.
Re-trigger cubic
AugustoSandim
force-pushed
the
refactor/standardize-models-area
branch
from
September 4, 2026 23:47
7cf90f0 to
1242d91
Compare
Use longest-prefix matching so parent items like Settings don't also highlight when viewing a child page such as Models. Add test coverage for the Models page active state.
…models-area # Conflicts: # docs/5-CONFIGURATION/environment-reference.md # docs/5-CONFIGURATION/ollama.md
lfnovo
added a commit
that referenced
this pull request
Sep 5, 2026
* docs: standardize Models navigation path to "Manage → Models" The Models page (/settings/models) is rendered under the sidebar's "Manage" section as a sibling of Settings, not as a child of it (frontend/src/components/layout/AppSidebar.tsx). The docs mixed "Settings → Models" (~150 occurrences) with the correct "Manage → Models" (3). Standardize every doc, the backend error-message hints and the speaches compose example on "Manage → Models". CHANGELOG is historical and left untouched. No routes or behaviour changed. Follow-up to the P2 note on #1313. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_012heLWVTmopC5FkipUgnvsN * docs: fix remaining multi-step "Settings → Models" instructions Addresses cubic P2s on #1330: two sections spelled the old path out as separate steps ("Click Settings… Select Models tab"), plus a few shorthand "in Settings" mentions that refer to the Models page. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_012heLWVTmopC5FkipUgnvsN * docs: fix step numbering in quick-start-cloud after merging nav steps Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_012heLWVTmopC5FkipUgnvsN --------- Co-authored-by: Claude Fable 5.1 <noreply@anthropic.com>
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
Renames the provider credentials settings area from "API Keys" to "Models", per #1199.
Changes
/settings/api-keys→/settings/models, with a permanent redirect (308) so existing bookmarks and links keep working./settings/models.quick-start-local.mdfixed so its LM Studio block, step 9, and "Going Further" use "Manage → Models" consistently (CHANGELOG left untouched)./settings/modelsis a URL child of/settings, so the oldstartsWithmatched both; now uses a longest-prefix match.Testing
npm run lint— 0 errorsnpm run test— 145 passed (includes locale parity test)npm run build— passes; route table shows/settings/modelsAppSidebar.test.tsx— added a regression test: on the Models page only Models is highlighted, not SettingsCloses #1199