import { AiChatBanner } from '@/ai/components/AiChatBanner'; import { t } from '@lingui/core/macro'; import { IconExternalLink } from 'twenty-ui/display'; const DOCS_URL = 'https://twenty.com/developers/section/self-hosting/self-hosting-var#ai-features'; export const AiChatApiKeyNotConfiguredMessage = () => { const handleDocsClick = () => { window.open(DOCS_URL, '_blank', 'noopener,noreferrer'); }; return ( ); };