1. 30 Jul, 2025 4 commits
  2. 29 Jul, 2025 3 commits
  3. 27 Jul, 2025 7 commits
    • feat: Enhance Channel Model Management UI · e85bf7b1
      Summary
      • Introduced standalone `ModelSelectModal.jsx` for selecting channel models
      • Fetch-list now opens modal instead of in-place select, keeping EditChannelModal lean
      
      Modal Features
      1. Search bar with `IconSearch`, keyboard clear & mobile full-screen support
      2. Tab layout (“New Models” / “Existing Models”) displayed next to title, responsive wrapping
      3. Models grouped by vendor via `getModelCategories` and rendered inside always-expanded `Collapse` panels
      4. Per-category checkbox in panel extra area for bulk select / deselect
      5. Footer checkbox for bulk select of all models in current tab, with real-time counter
      6. Empty state uses `IllustrationNoResult` / `IllustrationNoResultDark` for visual consistency
      7. Accessible header/footer paddings aligned with Semi UI defaults
      
      Fixes & Improvements
      • All indeterminate and full-select states handled correctly
      • Consistent “selected X / Y” stats synced with active tab, not global list
      • All panels now controlled via `activeKey`, ensuring they remain expanded
      • Search, vendor grouping, and responsive layout tested across mobile & desktop
      
      These changes modernise the channel model management workflow and prepare the codebase for upcoming upstream-ratio integration.
      t0ng7u committed
    • Merge pull request #1446 from Raymondxox/fix · a35419c6
      模型请求速率限制,增加对请求次数最大值的限制
      Calcium-Ion committed
    • 🗂️ refactor(table): isolate column preferences per role · 84fb6eea
      Summary
      • Added role-specific localStorage keys for column visibility in three hooks:
        - `useUsageLogsData.js` → `logs-table-columns-admin` / `logs-table-columns-user`
        - `useMjLogsData.js`   → `mj-logs-table-columns-admin` / `mj-logs-table-columns-user`
        - `useTaskLogsData.js` → `task-logs-table-columns-admin` / `task-logs-table-columns-user`
      
      Details
      1. Each hook now derives a `STORAGE_KEY` based on `isAdminUser`, preventing admin and non-admin sessions from overwriting one another’s column settings.
      2. Removed the previous “save but strip admin columns” workaround—settings are persisted unmodified to each role’s key.
      3. Kept runtime behaviour: non-admin users still see admin-only columns forcibly hidden.
      4. Replaced newly added Chinese comments with clear English equivalents for consistency.
      
      Result
      Switching between admin and non-admin accounts no longer corrupts column visibility preferences, and codebase comments are fully English-localized.
      t0ng7u committed
  4. 26 Jul, 2025 11 commits
  5. 25 Jul, 2025 4 commits
  6. 24 Jul, 2025 3 commits
  7. 23 Jul, 2025 7 commits
  8. 22 Jul, 2025 1 commit
    • 🐛 fix(EditChannelModal): hide empty “API Config” card for VolcEngine Ark/Doubao (type 45) · 5bd8dd78
      The VolcEngine Ark/Doubao channel now has a hard-coded base URL inside the backend, so it no longer requires any API-address settings on the front-end side.
      Previously, the input field was hidden but the surrounding “API Config” card still rendered, leaving a blank, confusing section.
      
      Changes made
      • Added `showApiConfigCard` flag (true when `inputs.type !== 45`) right after the state declarations.
      • Wrapped the entire “API Config” card in a conditional render driven by this flag.
      • Removed the duplicate declaration of `showApiConfigCard` further down in the component to avoid shadowing and improve readability.
      
      Scope verification
      • Checked all other channel types: every remaining type either displays a dedicated API-related input/banner (3, 8, 22, 36, 37, 40, …) or falls back to the generic “custom API address” field.
      • Therefore, only type 45 requires the card to be fully hidden.
      
      Result
      The “Edit Channel” modal now shows no empty card for the VolcEngine Ark/Doubao channel, leading to a cleaner and more intuitive UI while preserving behaviour for all other channels.
      t0ng7u committed