"use client" import Link from "next/link" import { SettingsCard, SettingsToggleRow } from "@/components/settings/settings-kit" import { toggleUltiAiToolGroup, ULTIAI_TOOL_GROUPS, } from "@/lib/ai/ultiai-tool-groups" type UltiAiToolsCardProps = { enabledTools: string[] onChange: (enabledTools: string[]) => void webSearchSettingsHref?: string } export function UltiAiToolsCard({ enabledTools, onChange, webSearchSettingsHref = "/mail/settings/automation", }: UltiAiToolsCardProps) { return ( Groupes d'outils MCP exposés à l'assistant. La recherche web supporte Brave, Bing, DuckDuckGo, SearXNG et API JSON — config dans{" "} Automatisations → Recherche {" "} (utilisateur) ou Administration → Moteur de recherche (organisation). } > {ULTIAI_TOOL_GROUPS.map((group) => ( onChange(toggleUltiAiToolGroup(enabledTools, group.id, enabled)) } /> ))} ) }