chore: add icon for agent

This commit is contained in:
AkaraChen
2024-12-25 14:13:20 +08:00
parent 057da6c31b
commit e1d0c29711
3 changed files with 9 additions and 5 deletions

View File

@ -2,6 +2,7 @@ import type { FC } from 'react'
import { memo } from 'react'
import { BlockEnum } from './types'
import {
Agent,
Answer,
Assigner,
Code,
@ -53,8 +54,7 @@ const getIcon = (type: BlockEnum, className: string) => {
[BlockEnum.ParameterExtractor]: <ParameterExtractor className={className} />,
[BlockEnum.DocExtractor]: <DocsExtractor className={className} />,
[BlockEnum.ListFilter]: <ListFilter className={className} />,
// TODO: add icon for Agent
[BlockEnum.Agent]: <VariableX className={className} />,
[BlockEnum.Agent]: <Agent className={className} />,
}[type]
}
const ICON_CONTAINER_BG_COLOR_MAP: Record<string, string> = {

View File

@ -5,6 +5,7 @@ import { AgentStrategySelector } from './agent-strategy-selector'
import Link from 'next/link'
import { useTranslation } from 'react-i18next'
import Form from '@/app/components/header/account-setting/model-provider-page/model-modal/Form'
import { Agent } from '@/app/components/base/icons/src/vender/workflow'
export type Strategy = {
agent_strategy_provider_name: string
@ -39,8 +40,8 @@ export const AgentStrategy = (props: AgentStrategyProps) => {
fieldLabelClassName='uppercase'
/>
</div>
// TODO: list empty need a icon
: <ListEmpty
icon={<Agent className='w-5 h-5 shrink-0 text-text-accent' />}
title={t('workflow.nodes.agent.strategy.configureTip')}
description={<div className='text-text-tertiary text-xs'>
{t('workflow.nodes.agent.strategy.configureTipDesc')} <br />