import type { AgentLogConversationItemResponse } from '@dify/contracts/api/console/agent/types.gen' import { useTranslation } from 'react-i18next' import { LogSourceIcon } from './source-icon' export function LogSourceCell({ source }: { source?: AgentLogConversationItemResponse['source'] }) { const { t } = useTranslation('agentV2') if (!source) { return (
{t(($) => $['agentDetail.logs.notAvailable'])}
) } return (
{source.app_name}
) }