Frontend (web)
- ModelsActions.jsx
- Replace “Sync Official” with “Sync” and open a new two-step SyncWizard.
- Pass selected locale through to preview, sync, and overwrite flows.
- Keep conflict resolution flow; inject locale into overwrite submission.
- New: models/modals/SyncWizardModal.jsx
- Two-step wizard: (1) method selection (config-sync disabled for now), (2) language selection (en/zh/ja).
- Horizontal, centered Radio cards; returns { option, locale } via onConfirm.
- UpstreamConflictModal.jsx
- Add search input (model fuzzy search) and native pagination.
- Column header checkbox now only applies to rows in the current filtered result.
- Fix “Cannot access ‘filteredDataSource’ before initialization”.
- Refactor with useMemo/useCallback; extract helpers to remove duplicated logic:
- getPresentRowsForField, getHeaderState, applyHeaderChange
- Minor code cleanups and stability improvements.
- i18n (en.json)
- Add strings for the sync wizard and related actions (Sync, Sync Wizard, Select method/source/language, etc.).
- Adjust minor translations.
Hooks
- useModelsData.jsx
- Extend previewUpstreamDiff, syncUpstream, applyUpstreamOverwrite to accept options with locale.
- Send locale via query/body accordingly.
Backend (Go)
- controller/model_sync.go
- Accept locale from query/body and resolve i18n upstream URLs.
- Add SYNC_UPSTREAM_BASE for upstream base override (default: https://basellm.github.io/llm-metadata).
- Make HTTP timeouts/retries/limits configurable:
- SYNC_HTTP_TIMEOUT_SECONDS, SYNC_HTTP_RETRY, SYNC_HTTP_MAX_MB
- Add ETag-based caching and support both envelope and pure array JSON formats.
- Concurrently fetch vendors and models; improve error responses with locale and source URLs.
- Include source meta (locale, models_url, vendors_url) in success payloads.
Notes
- No breaking changes expected.
- Lint passes for touched files.
120 lines
4.2 KiB
JavaScript
120 lines
4.2 KiB
JavaScript
/*
|
|
Copyright (C) 2025 QuantumNous
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation, either version 3 of the
|
|
License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
For commercial licensing, please contact support@quantumnous.com
|
|
*/
|
|
|
|
import React from 'react';
|
|
import { Card, Avatar, Tag, Divider, Empty } from '@douyinfe/semi-ui';
|
|
import { Server, Gauge, ExternalLink } from 'lucide-react';
|
|
import {
|
|
IllustrationConstruction,
|
|
IllustrationConstructionDark,
|
|
} from '@douyinfe/semi-illustrations';
|
|
import ScrollableContainer from '../common/ui/ScrollableContainer';
|
|
|
|
const ApiInfoPanel = ({
|
|
apiInfoData,
|
|
handleCopyUrl,
|
|
handleSpeedTest,
|
|
CARD_PROPS,
|
|
FLEX_CENTER_GAP2,
|
|
ILLUSTRATION_SIZE,
|
|
t,
|
|
}) => {
|
|
return (
|
|
<Card
|
|
{...CARD_PROPS}
|
|
className='bg-gray-50 border-0 !rounded-2xl'
|
|
title={
|
|
<div className={FLEX_CENTER_GAP2}>
|
|
<Server size={16} />
|
|
{t('API信息')}
|
|
</div>
|
|
}
|
|
bodyStyle={{ padding: 0 }}
|
|
>
|
|
<ScrollableContainer maxHeight='24rem'>
|
|
{apiInfoData.length > 0 ? (
|
|
apiInfoData.map((api) => (
|
|
<React.Fragment key={api.id}>
|
|
<div className='flex p-2 hover:bg-white rounded-lg transition-colors cursor-pointer'>
|
|
<div className='flex-shrink-0 mr-3'>
|
|
<Avatar size='extra-small' color={api.color}>
|
|
{api.route.substring(0, 2)}
|
|
</Avatar>
|
|
</div>
|
|
<div className='flex-1'>
|
|
<div className='flex flex-wrap items-center justify-between mb-1 w-full gap-2'>
|
|
<span className='text-sm font-medium text-gray-900 !font-bold break-all'>
|
|
{api.route}
|
|
</span>
|
|
<div className='flex items-center gap-1 mt-1 lg:mt-0'>
|
|
<Tag
|
|
prefixIcon={<Gauge size={12} />}
|
|
size='small'
|
|
color='white'
|
|
shape='circle'
|
|
onClick={() => handleSpeedTest(api.url)}
|
|
className='cursor-pointer hover:opacity-80 text-xs'
|
|
>
|
|
{t('测速')}
|
|
</Tag>
|
|
<Tag
|
|
prefixIcon={<ExternalLink size={12} />}
|
|
size='small'
|
|
color='white'
|
|
shape='circle'
|
|
onClick={() =>
|
|
window.open(api.url, '_blank', 'noopener,noreferrer')
|
|
}
|
|
className='cursor-pointer hover:opacity-80 text-xs'
|
|
>
|
|
{t('跳转')}
|
|
</Tag>
|
|
</div>
|
|
</div>
|
|
<div
|
|
className='!text-semi-color-primary break-all cursor-pointer hover:underline mb-1'
|
|
onClick={() => handleCopyUrl(api.url)}
|
|
>
|
|
{api.url}
|
|
</div>
|
|
<div className='text-gray-500'>{api.description}</div>
|
|
</div>
|
|
</div>
|
|
<Divider />
|
|
</React.Fragment>
|
|
))
|
|
) : (
|
|
<div className='flex justify-center items-center min-h-[20rem] w-full'>
|
|
<Empty
|
|
image={<IllustrationConstruction style={ILLUSTRATION_SIZE} />}
|
|
darkModeImage={
|
|
<IllustrationConstructionDark style={ILLUSTRATION_SIZE} />
|
|
}
|
|
title={t('暂无API信息')}
|
|
description={t('请联系管理员在系统设置中配置API信息')}
|
|
/>
|
|
</div>
|
|
)}
|
|
</ScrollableContainer>
|
|
</Card>
|
|
);
|
|
};
|
|
|
|
export default ApiInfoPanel;
|