
Co-authored-by: AkaraChen <akarachen@outlook.com> Co-authored-by: Yi <yxiaoisme@gmail.com> Co-authored-by: Joel <iamjoel007@gmail.com> Co-authored-by: JzoNg <jzongcode@gmail.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: kurokobo <kuro664@gmail.com> Co-authored-by: Hiroshi Fujita <fujita-h@users.noreply.github.com>
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>
|
|
}
|