mirror of
https://github.com/langgenius/dify.git
synced 2026-04-18 12:28:32 +08:00
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: yyh <yuanyouhuilyz@gmail.com>
208 lines
9.4 KiB
TypeScript
208 lines
9.4 KiB
TypeScript
import type {
|
|
ModelProvider,
|
|
} from './declarations'
|
|
import type { PluginDetail } from '@/app/components/plugins/types'
|
|
import { useQuery } from '@tanstack/react-query'
|
|
import { useDebounce } from 'ahooks'
|
|
import { useMemo } from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { usePluginsWithLatestVersion } from '@/app/components/plugins/hooks'
|
|
import { IS_CLOUD_EDITION } from '@/config'
|
|
import { useSystemFeaturesQuery } from '@/context/global-public-context'
|
|
import { useProviderContext } from '@/context/provider-context'
|
|
import { consoleQuery } from '@/service/client'
|
|
import { cn } from '@/utils/classnames'
|
|
import {
|
|
CustomConfigurationStatusEnum,
|
|
ModelTypeEnum,
|
|
} from './declarations'
|
|
import {
|
|
useDefaultModel,
|
|
} from './hooks'
|
|
import InstallFromMarketplace from './install-from-marketplace'
|
|
import ProviderAddedCard from './provider-added-card'
|
|
import QuotaPanel from './provider-added-card/quota-panel'
|
|
import SystemModelSelector from './system-model-selector'
|
|
import { providerToPluginId } from './utils'
|
|
|
|
type SystemModelConfigStatus = 'no-provider' | 'none-configured' | 'partially-configured' | 'fully-configured'
|
|
|
|
type Props = {
|
|
searchText: string
|
|
}
|
|
|
|
const FixedModelProvider = ['langgenius/openai/openai', 'langgenius/anthropic/anthropic']
|
|
|
|
const ModelProviderPage = ({ searchText }: Props) => {
|
|
const debouncedSearchText = useDebounce(searchText, { wait: 500 })
|
|
const { t } = useTranslation()
|
|
const { data: textGenerationDefaultModel, isLoading: isTextGenerationDefaultModelLoading } = useDefaultModel(ModelTypeEnum.textGeneration)
|
|
const { data: embeddingsDefaultModel, isLoading: isEmbeddingsDefaultModelLoading } = useDefaultModel(ModelTypeEnum.textEmbedding)
|
|
const { data: rerankDefaultModel, isLoading: isRerankDefaultModelLoading } = useDefaultModel(ModelTypeEnum.rerank)
|
|
const { data: speech2textDefaultModel, isLoading: isSpeech2textDefaultModelLoading } = useDefaultModel(ModelTypeEnum.speech2text)
|
|
const { data: ttsDefaultModel, isLoading: isTTSDefaultModelLoading } = useDefaultModel(ModelTypeEnum.tts)
|
|
const { modelProviders: providers } = useProviderContext()
|
|
const { data: systemFeatures } = useSystemFeaturesQuery()
|
|
|
|
const allPluginIds = useMemo(() => {
|
|
return [...new Set(providers.map(p => providerToPluginId(p.provider)).filter(Boolean))]
|
|
}, [providers])
|
|
const { data: installedPlugins } = useQuery(consoleQuery.plugins.checkInstalled.queryOptions({
|
|
input: { body: { plugin_ids: allPluginIds } },
|
|
enabled: allPluginIds.length > 0,
|
|
staleTime: 0,
|
|
}))
|
|
const enrichedPlugins = usePluginsWithLatestVersion(installedPlugins?.plugins)
|
|
const pluginDetailMap = useMemo(() => {
|
|
const map = new Map<string, PluginDetail>()
|
|
for (const plugin of enrichedPlugins)
|
|
map.set(plugin.plugin_id, plugin)
|
|
return map
|
|
}, [enrichedPlugins])
|
|
const enableMarketplace = systemFeatures?.enable_marketplace ?? false
|
|
const isDefaultModelLoading = isTextGenerationDefaultModelLoading
|
|
|| isEmbeddingsDefaultModelLoading
|
|
|| isRerankDefaultModelLoading
|
|
|| isSpeech2textDefaultModelLoading
|
|
|| isTTSDefaultModelLoading
|
|
const [configuredProviders, notConfiguredProviders] = useMemo(() => {
|
|
const configuredProviders: ModelProvider[] = []
|
|
const notConfiguredProviders: ModelProvider[] = []
|
|
|
|
providers.forEach((provider) => {
|
|
if (
|
|
provider.custom_configuration.status === CustomConfigurationStatusEnum.active
|
|
|| (
|
|
provider.system_configuration.enabled === true
|
|
&& provider.system_configuration.quota_configurations.some(item => item.quota_type === provider.system_configuration.current_quota_type)
|
|
)
|
|
) {
|
|
configuredProviders.push(provider)
|
|
}
|
|
else {
|
|
notConfiguredProviders.push(provider)
|
|
}
|
|
})
|
|
|
|
configuredProviders.sort((a, b) => {
|
|
if (FixedModelProvider.includes(a.provider) && FixedModelProvider.includes(b.provider))
|
|
return FixedModelProvider.indexOf(a.provider) - FixedModelProvider.indexOf(b.provider) > 0 ? 1 : -1
|
|
else if (FixedModelProvider.includes(a.provider))
|
|
return -1
|
|
else if (FixedModelProvider.includes(b.provider))
|
|
return 1
|
|
return 0
|
|
})
|
|
|
|
return [configuredProviders, notConfiguredProviders]
|
|
}, [providers])
|
|
|
|
const systemModelConfigStatus: SystemModelConfigStatus = useMemo(() => {
|
|
const defaultModels = [textGenerationDefaultModel, embeddingsDefaultModel, rerankDefaultModel, speech2textDefaultModel, ttsDefaultModel]
|
|
const configuredCount = defaultModels.filter(Boolean).length
|
|
if (configuredCount === 0 && configuredProviders.length === 0)
|
|
return 'no-provider'
|
|
if (configuredCount === 0)
|
|
return 'none-configured'
|
|
if (configuredCount < defaultModels.length)
|
|
return 'partially-configured'
|
|
return 'fully-configured'
|
|
}, [configuredProviders, textGenerationDefaultModel, embeddingsDefaultModel, rerankDefaultModel, speech2textDefaultModel, ttsDefaultModel])
|
|
const warningTextKey
|
|
= systemModelConfigStatus === 'none-configured'
|
|
? 'modelProvider.noneConfigured'
|
|
: systemModelConfigStatus === 'partially-configured'
|
|
? 'modelProvider.notConfigured'
|
|
: null
|
|
const showWarning = !isDefaultModelLoading && !!warningTextKey
|
|
|
|
const [filteredConfiguredProviders, filteredNotConfiguredProviders] = useMemo(() => {
|
|
const filteredConfiguredProviders = configuredProviders.filter(
|
|
provider => provider.provider.toLowerCase().includes(debouncedSearchText.toLowerCase())
|
|
|| Object.values(provider.label).some(text => text.toLowerCase().includes(debouncedSearchText.toLowerCase())),
|
|
)
|
|
const filteredNotConfiguredProviders = notConfiguredProviders.filter(
|
|
provider => provider.provider.toLowerCase().includes(debouncedSearchText.toLowerCase())
|
|
|| Object.values(provider.label).some(text => text.toLowerCase().includes(debouncedSearchText.toLowerCase())),
|
|
)
|
|
|
|
return [filteredConfiguredProviders, filteredNotConfiguredProviders]
|
|
}, [configuredProviders, debouncedSearchText, notConfiguredProviders])
|
|
|
|
return (
|
|
<div className="relative -mt-2 pt-1">
|
|
<div className={cn('mb-2 flex items-center')}>
|
|
<div className="grow text-text-primary system-md-semibold">{t('modelProvider.models', { ns: 'common' })}</div>
|
|
<div className={cn(
|
|
'relative flex shrink-0 items-center justify-end gap-2 rounded-lg border border-transparent p-px',
|
|
showWarning && 'border-components-panel-border bg-components-panel-bg-blur pl-2 shadow-xs',
|
|
)}
|
|
>
|
|
{showWarning && <div className="absolute bottom-0 left-0 right-0 top-0 opacity-40" style={{ background: 'linear-gradient(92deg, rgba(247, 144, 9, 0.25) 0%, rgba(255, 255, 255, 0.00) 100%)' }} />}
|
|
{showWarning && (
|
|
<div className="flex items-center gap-1 text-text-primary system-xs-medium">
|
|
<span className="i-ri-alert-fill h-4 w-4 text-text-warning-secondary" />
|
|
<span className="max-w-[460px] truncate" title={t(warningTextKey, { ns: 'common' })}>{t(warningTextKey, { ns: 'common' })}</span>
|
|
</div>
|
|
)}
|
|
<SystemModelSelector
|
|
notConfigured={showWarning}
|
|
textGenerationDefaultModel={textGenerationDefaultModel}
|
|
embeddingsDefaultModel={embeddingsDefaultModel}
|
|
rerankDefaultModel={rerankDefaultModel}
|
|
speech2textDefaultModel={speech2textDefaultModel}
|
|
ttsDefaultModel={ttsDefaultModel}
|
|
isLoading={isDefaultModelLoading}
|
|
/>
|
|
</div>
|
|
</div>
|
|
{IS_CLOUD_EDITION && <QuotaPanel providers={providers} />}
|
|
{!filteredConfiguredProviders?.length && (
|
|
<div className="mb-2 radius-lg bg-workflow-process-bg p-4">
|
|
<div className="flex h-10 w-10 items-center justify-center radius-lg border-[0.5px] border-components-card-border bg-components-card-bg shadow-lg backdrop-blur-sm">
|
|
<span className="i-ri-brain-line h-5 w-5 text-text-primary" />
|
|
</div>
|
|
<div className="mt-2 text-text-secondary system-sm-medium">{t('modelProvider.emptyProviderTitle', { ns: 'common' })}</div>
|
|
<div className="mt-1 text-text-tertiary system-xs-regular">{t('modelProvider.emptyProviderTip', { ns: 'common' })}</div>
|
|
</div>
|
|
)}
|
|
{!!filteredConfiguredProviders?.length && (
|
|
<div className="relative">
|
|
{filteredConfiguredProviders?.map(provider => (
|
|
<ProviderAddedCard
|
|
key={provider.provider}
|
|
provider={provider}
|
|
pluginDetail={pluginDetailMap.get(providerToPluginId(provider.provider))}
|
|
/>
|
|
))}
|
|
</div>
|
|
)}
|
|
{!!filteredNotConfiguredProviders?.length && (
|
|
<>
|
|
<div className="mb-2 flex items-center pt-2 text-text-primary system-md-semibold">{t('modelProvider.toBeConfigured', { ns: 'common' })}</div>
|
|
<div className="relative">
|
|
{filteredNotConfiguredProviders?.map(provider => (
|
|
<ProviderAddedCard
|
|
notConfigured
|
|
key={provider.provider}
|
|
provider={provider}
|
|
pluginDetail={pluginDetailMap.get(providerToPluginId(provider.provider))}
|
|
/>
|
|
))}
|
|
</div>
|
|
</>
|
|
)}
|
|
{
|
|
enableMarketplace && (
|
|
<InstallFromMarketplace
|
|
providers={providers}
|
|
searchText={searchText}
|
|
/>
|
|
)
|
|
}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default ModelProviderPage
|