mirror of
https://github.com/langgenius/dify.git
synced 2025-07-13 20:21:37 +00:00
20 lines
624 B
TypeScript
20 lines
624 B
TypeScript
![]() |
'use client'
|
||
|
|
||
|
import { ToolTipContent } from '../components/base/tooltip/content'
|
||
|
import { SwitchPluginVersion } from '../components/workflow/nodes/_base/components/switch-plugin-version'
|
||
|
import { useTranslation } from 'react-i18next'
|
||
|
|
||
|
export default function Page() {
|
||
|
const { t } = useTranslation()
|
||
|
return <div className="p-20">
|
||
|
<SwitchPluginVersion
|
||
|
uniqueIdentifier={'langgenius/openai:12'}
|
||
|
tooltip={<ToolTipContent
|
||
|
title={t('workflow.nodes.agent.unsupportedStrategy')}
|
||
|
>
|
||
|
{t('workflow.nodes.agent.strategyNotFoundDescAndSwitchVersion')}
|
||
|
</ToolTipContent>}
|
||
|
/>
|
||
|
</div>
|
||
|
}
|