feat(ui): implement Files tab with model file listing (#2428)#2538
Merged
Conversation
Wire the model-detail Files tab to GET /api/v1/models/{id}/files (PR #2437).
Renders backing files (name, role badge, human-readable size, download
status) in an accessible table with column headers and a caption, plus
loading/empty/error states. Adds getModelFiles() + ModelFilesResponse to
the API client, dark-theme CSS, and Playwright a11y tests A180-A184.
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
6 tasks
Collaborator
Addresses fl0rianr's review feedback on PR #2538: - Size column now left-aligned so header sits directly above values - Table rows have uniform 40px height Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.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
Implements the Files tab in the Model Detail Panel, completing Slice 2 of #2428.
What it does
GET /api/v1/models/{id}/filesendpoint (merged in feat: add model files endpoint #2437)lemondbuild from this branchChanges (4 files)
src/api.tsModelFileInfo,ModelFilesResponseinterfaces +getModelFiles(id)methodsrc/components/ModelDetailPanel.tsxsrc/styles/styles.csstests/a11y.spec.tsTesting
GET /api/v1/models/Qwen3.6-35B-A3B-GGUF/filesreturns files with roles (main, mmproj)GET /api/v1/system-inforeturnsmodel_storagewith real disk statstsc --noEmitcleanAccessibility
Closes progress on #2428. @fl0rianr - ready for your review.