Merge branch 'chore/optimize-model-selection-agent-node' into dev/plugin-deploy

This commit is contained in:
Yi 2025-02-13 11:35:27 +08:00
commit 3c868a9701

View File

@ -1,8 +1,8 @@
import type { FC } from 'react'
import { RiArrowDownSLine } from '@remixicon/react'
import { RiEqualizer2Line } from '@remixicon/react'
import { CubeOutline } from '@/app/components/base/icons/src/vender/line/shapes'
import cn from '@/utils/classnames'
import { useTranslation } from 'react-i18next'
type ModelTriggerProps = {
open: boolean
className?: string
@ -11,6 +11,7 @@ const ModelTrigger: FC<ModelTriggerProps> = ({
open,
className,
}) => {
const { t } = useTranslation()
return (
<div
className={cn(
@ -24,13 +25,13 @@ const ModelTrigger: FC<ModelTriggerProps> = ({
</div>
<div
className='text-[13px] text-text-tertiary truncate'
title='Select model'
title='Configure model'
>
Select model
{t('plugin.detailPanel.configureModel')}
</div>
</div>
<div className='shrink-0 flex items-center justify-center w-4 h-4'>
<RiArrowDownSLine className='w-3.5 h-3.5 text-text-tertiary' />
<RiEqualizer2Line className='w-3.5 h-3.5 text-text-tertiary' />
</div>
</div>
)