mirror of
https://github.com/infiniflow/ragflow.git
synced 2025-12-08 20:42:30 +08:00
### What problem does this PR solve? Feat: Clarify the use of OpenAI-API-compatible #6782 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
This commit is contained in:
@ -22,6 +22,7 @@ import {
|
||||
Tooltip,
|
||||
Typography,
|
||||
} from 'antd';
|
||||
import { CircleHelp } from 'lucide-react';
|
||||
import { useCallback, useMemo } from 'react';
|
||||
import SettingTitle from '../components/setting-title';
|
||||
import { isLocalLlmFactory } from '../utils';
|
||||
@ -304,7 +305,14 @@ const UserSettingModel = () => {
|
||||
},
|
||||
{
|
||||
key: '2',
|
||||
label: t('modelsToBeAdded'),
|
||||
label: (
|
||||
<div className="flex items-center gap-2">
|
||||
{t('modelsToBeAdded')}
|
||||
<Tooltip title={t('modelsToBeAddedTooltip')}>
|
||||
<CircleHelp className="size-4" />
|
||||
</Tooltip>
|
||||
</div>
|
||||
),
|
||||
children: (
|
||||
<List
|
||||
grid={{
|
||||
|
||||
Reference in New Issue
Block a user