refactor: support i18n
This commit is contained in:
@@ -54,15 +54,12 @@ import {
|
||||
type MCPToolSourceType,
|
||||
type SkillDefinition,
|
||||
} from "@/lib/api/admin";
|
||||
import { getEnumOptions } from "@/lib/enums";
|
||||
import { useI18n } from "@/i18n/provider";
|
||||
import {
|
||||
AIAgentFallbackMode,
|
||||
AIAgentFallbackModeLabels,
|
||||
AIAgentHandoffMode,
|
||||
AIAgentHandoffModeLabels,
|
||||
AIModelType,
|
||||
IMConversationServiceMode,
|
||||
IMConversationServiceModeLabels,
|
||||
Status,
|
||||
} from "@/lib/generated/enums";
|
||||
|
||||
@@ -90,49 +87,43 @@ type EditDialogProps = {
|
||||
onSubmit: (payload: CreateAIAgentPayload) => Promise<void>;
|
||||
};
|
||||
|
||||
const schema = z.object({
|
||||
name: z.string().trim().min(1, "名称不能为空"),
|
||||
description: z.string().trim(),
|
||||
aiConfigId: z.string().trim().regex(/^\d+$/, "请选择 AI 配置"),
|
||||
serviceMode: z.string().trim().min(1, "请选择服务模式"),
|
||||
systemPrompt: z.string().trim(),
|
||||
welcomeMessage: z.string().trim(),
|
||||
replyTimeoutSeconds: z
|
||||
.number()
|
||||
.min(0, "回复超时秒数必须是大于等于 0 的整数"),
|
||||
handoffMode: z.string().trim().min(1, "请选择转人工模式"),
|
||||
fallbackMode: z.string().trim().min(1, "请选择兜底策略"),
|
||||
fallbackMessage: z.string().trim(),
|
||||
});
|
||||
type TFunction = (key: string, values?: Record<string, string | number>) => string;
|
||||
|
||||
type EditForm = z.infer<typeof schema>;
|
||||
type EditForm = {
|
||||
name: string;
|
||||
description: string;
|
||||
aiConfigId: string;
|
||||
serviceMode: string;
|
||||
systemPrompt: string;
|
||||
welcomeMessage: string;
|
||||
replyTimeoutSeconds: number;
|
||||
handoffMode: string;
|
||||
fallbackMode: string;
|
||||
fallbackMessage: string;
|
||||
};
|
||||
|
||||
const resolver = zodResolver(schema as never) as Resolver<
|
||||
z.input<typeof schema>,
|
||||
undefined,
|
||||
z.output<typeof schema>
|
||||
>;
|
||||
function getServiceModeOptions(t: TFunction) {
|
||||
return [
|
||||
{ value: String(IMConversationServiceMode.AIOnly), label: t("aiAgent.serviceAiOnly") },
|
||||
{ value: String(IMConversationServiceMode.HumanOnly), label: t("aiAgent.serviceHumanOnly") },
|
||||
{ value: String(IMConversationServiceMode.AIFirst), label: t("aiAgent.serviceAiFirst") },
|
||||
];
|
||||
}
|
||||
|
||||
const serviceModeOptions = getEnumOptions(IMConversationServiceModeLabels).map(
|
||||
(option) => ({
|
||||
value: String(option.value),
|
||||
label: option.label,
|
||||
}),
|
||||
);
|
||||
function getHandoffModeOptions(t: TFunction) {
|
||||
return [
|
||||
{ value: String(AIAgentHandoffMode.WaitPool), label: t("aiAgent.handoffWaitPool") },
|
||||
{ value: String(AIAgentHandoffMode.DefaultTeamPool), label: t("aiAgent.handoffDefaultTeamPool") },
|
||||
{ value: String(AIAgentHandoffMode.AIHoldAndNotify), label: t("aiAgent.handoffAiHoldAndNotify") },
|
||||
];
|
||||
}
|
||||
|
||||
const handoffModeOptions = getEnumOptions(AIAgentHandoffModeLabels).map(
|
||||
(option) => ({
|
||||
value: String(option.value),
|
||||
label: option.label,
|
||||
}),
|
||||
);
|
||||
|
||||
const fallbackModeOptions = getEnumOptions(AIAgentFallbackModeLabels).map(
|
||||
(option) => ({
|
||||
value: String(option.value),
|
||||
label: option.label,
|
||||
}),
|
||||
);
|
||||
function getFallbackModeOptions(t: TFunction) {
|
||||
return [
|
||||
{ value: String(AIAgentFallbackMode.NoAnswer), label: t("aiAgent.fallbackNoAnswer") },
|
||||
{ value: String(AIAgentFallbackMode.SuggestRetry), label: t("aiAgent.fallbackSuggestRetry") },
|
||||
];
|
||||
}
|
||||
|
||||
function buildForm(item: AIAgent | null): EditForm {
|
||||
if (!item) {
|
||||
@@ -220,12 +211,34 @@ function EditDialogBody({
|
||||
onSubmit,
|
||||
}: EditDialogProps) {
|
||||
const formId = "ai-agent-edit-form";
|
||||
const t = useI18n();
|
||||
const [loading, setLoading] = useState(false);
|
||||
const form = useForm<
|
||||
z.input<typeof schema>,
|
||||
undefined,
|
||||
z.output<typeof schema>
|
||||
>({
|
||||
const schema = useMemo(
|
||||
() =>
|
||||
z.object({
|
||||
name: z.string().trim().min(1, t("aiAgent.nameRequired")),
|
||||
description: z.string().trim(),
|
||||
aiConfigId: z.string().trim().regex(/^\d+$/, t("aiAgent.aiConfigRequired")),
|
||||
serviceMode: z.string().trim().min(1, t("aiAgent.serviceModeRequired")),
|
||||
systemPrompt: z.string().trim(),
|
||||
welcomeMessage: z.string().trim(),
|
||||
replyTimeoutSeconds: z
|
||||
.number()
|
||||
.min(0, t("aiAgent.replyTimeoutInvalid")),
|
||||
handoffMode: z.string().trim().min(1, t("aiAgent.handoffModeRequired")),
|
||||
fallbackMode: z.string().trim().min(1, t("aiAgent.fallbackModeRequired")),
|
||||
fallbackMessage: z.string().trim(),
|
||||
}),
|
||||
[t],
|
||||
);
|
||||
const resolver = useMemo(
|
||||
() => zodResolver(schema as never) as Resolver<EditForm>,
|
||||
[schema],
|
||||
);
|
||||
const serviceModeOptions = useMemo(() => getServiceModeOptions(t), [t]);
|
||||
const handoffModeOptions = useMemo(() => getHandoffModeOptions(t), [t]);
|
||||
const fallbackModeOptions = useMemo(() => getFallbackModeOptions(t), [t]);
|
||||
const form = useForm<EditForm>({
|
||||
resolver,
|
||||
defaultValues: buildForm(null),
|
||||
});
|
||||
@@ -296,14 +309,14 @@ function EditDialogBody({
|
||||
setGraphToolToAdd("");
|
||||
} catch (error) {
|
||||
toast.error(
|
||||
error instanceof Error ? error.message : "加载 AI Agent 详情失败",
|
||||
error instanceof Error ? error.message : t("aiAgent.loadDetailFailed"),
|
||||
);
|
||||
} finally {
|
||||
setLoading(false);
|
||||
}
|
||||
}
|
||||
void loadDetail();
|
||||
}, [itemId, reset]);
|
||||
}, [itemId, reset, t]);
|
||||
|
||||
useEffect(() => {
|
||||
async function loadAIConfigs() {
|
||||
@@ -314,12 +327,12 @@ function EditDialogBody({
|
||||
setAIConfigs(data);
|
||||
} catch (error) {
|
||||
toast.error(
|
||||
error instanceof Error ? error.message : "加载 AI 配置失败",
|
||||
error instanceof Error ? error.message : t("aiAgent.loadAiConfigFailed"),
|
||||
);
|
||||
}
|
||||
}
|
||||
void loadAIConfigs();
|
||||
}, []);
|
||||
}, [t]);
|
||||
|
||||
useEffect(() => {
|
||||
async function loadAgentTeams() {
|
||||
@@ -327,11 +340,11 @@ function EditDialogBody({
|
||||
const data = await fetchAgentTeamsAll();
|
||||
setAgentTeams(data);
|
||||
} catch (error) {
|
||||
toast.error(error instanceof Error ? error.message : "加载客服组失败");
|
||||
toast.error(error instanceof Error ? error.message : t("aiAgent.loadTeamsFailed"));
|
||||
}
|
||||
}
|
||||
void loadAgentTeams();
|
||||
}, []);
|
||||
}, [t]);
|
||||
|
||||
useEffect(() => {
|
||||
async function loadKnowledgeBases() {
|
||||
@@ -341,11 +354,11 @@ function EditDialogBody({
|
||||
});
|
||||
setKnowledgeBases(data);
|
||||
} catch (error) {
|
||||
toast.error(error instanceof Error ? error.message : "加载知识库失败");
|
||||
toast.error(error instanceof Error ? error.message : t("aiAgent.loadKnowledgeFailed"));
|
||||
}
|
||||
}
|
||||
void loadKnowledgeBases();
|
||||
}, []);
|
||||
}, [t]);
|
||||
|
||||
useEffect(() => {
|
||||
async function loadSkills() {
|
||||
@@ -355,11 +368,11 @@ function EditDialogBody({
|
||||
});
|
||||
setSkills(data);
|
||||
} catch (error) {
|
||||
toast.error(error instanceof Error ? error.message : "加载 Skills 失败");
|
||||
toast.error(error instanceof Error ? error.message : t("aiAgent.loadSkillsFailed"));
|
||||
}
|
||||
}
|
||||
void loadSkills();
|
||||
}, []);
|
||||
}, [t]);
|
||||
|
||||
useEffect(() => {
|
||||
async function loadDirectToolOptions() {
|
||||
@@ -376,7 +389,7 @@ function EditDialogBody({
|
||||
autoInjected: tool.autoInjected,
|
||||
groupLabel:
|
||||
tool.sourceType === "builtin"
|
||||
? "内置工具"
|
||||
? t("aiAgent.builtinTools")
|
||||
: tool.serverCode,
|
||||
meta: {
|
||||
toolCode: tool.toolCode,
|
||||
@@ -398,12 +411,12 @@ function EditDialogBody({
|
||||
);
|
||||
} catch (error) {
|
||||
toast.error(
|
||||
error instanceof Error ? error.message : "加载 Direct Tools 失败",
|
||||
error instanceof Error ? error.message : t("aiAgent.loadDirectToolsFailed"),
|
||||
);
|
||||
}
|
||||
}
|
||||
void loadDirectToolOptions();
|
||||
}, []);
|
||||
}, [t]);
|
||||
|
||||
const aiConfigOptions = useMemo(
|
||||
() =>
|
||||
@@ -508,13 +521,13 @@ function EditDialogBody({
|
||||
const directToolsGrouped = useMemo(() => {
|
||||
const groups = new Map<string, DirectToolItem[]>();
|
||||
for (const tool of directTools) {
|
||||
const groupLabel = tool.serverCode || "未分组";
|
||||
const groupLabel = tool.serverCode || t("aiAgent.ungrouped");
|
||||
const current = groups.get(groupLabel) ?? [];
|
||||
current.push(tool);
|
||||
groups.set(groupLabel, current);
|
||||
}
|
||||
return Array.from(groups.entries());
|
||||
}, [directTools]);
|
||||
}, [directTools, t]);
|
||||
|
||||
const addableGraphToolOptions = useMemo(
|
||||
() =>
|
||||
@@ -545,7 +558,7 @@ function EditDialogBody({
|
||||
const handoffMode = watch("handoffMode");
|
||||
const selectedHandoffModeLabel =
|
||||
handoffModeOptions.find((item) => item.value === handoffMode)?.label ??
|
||||
"未选择";
|
||||
t("aiAgent.notSelected");
|
||||
|
||||
async function onFormSubmit(values: EditForm) {
|
||||
await onSubmit(
|
||||
@@ -653,7 +666,7 @@ function EditDialogBody({
|
||||
<ProjectDialog
|
||||
open={open}
|
||||
onOpenChange={onOpenChange}
|
||||
title={itemId ? "编辑 AI Agent" : "新建 AI Agent"}
|
||||
title={itemId ? t("aiAgent.editTitle") : t("aiAgent.createTitle")}
|
||||
size="xl"
|
||||
defaultFullscreen
|
||||
footer={
|
||||
@@ -663,17 +676,17 @@ function EditDialogBody({
|
||||
variant="outline"
|
||||
onClick={() => onOpenChange(false)}
|
||||
>
|
||||
取消
|
||||
{t("aiAgent.cancel")}
|
||||
</Button>
|
||||
<Button type="submit" form={formId} disabled={saving || loading}>
|
||||
{saving ? "保存中..." : "保存"}
|
||||
{saving ? t("aiAgent.saving") : t("aiAgent.save")}
|
||||
</Button>
|
||||
</>
|
||||
}
|
||||
>
|
||||
{loading ? (
|
||||
<div className="flex items-center justify-center py-12">
|
||||
<div className="text-muted-foreground">加载中...</div>
|
||||
<div className="text-muted-foreground">{t("aiAgent.loading")}</div>
|
||||
</div>
|
||||
) : (
|
||||
<form
|
||||
@@ -682,11 +695,11 @@ function EditDialogBody({
|
||||
className="space-y-6"
|
||||
>
|
||||
<SectionCard
|
||||
title="基础信息"
|
||||
title={t("aiAgent.sectionBasic")}
|
||||
>
|
||||
<div className="grid grid-cols-1 gap-4 xl:grid-cols-3">
|
||||
<Field data-invalid={!!errors.name}>
|
||||
<FieldLabel htmlFor="ai-agent-name">名称</FieldLabel>
|
||||
<FieldLabel htmlFor="ai-agent-name">{t("aiAgent.name")}</FieldLabel>
|
||||
<FieldContent>
|
||||
<Input id="ai-agent-name" {...register("name")} />
|
||||
<FieldError errors={[errors.name]} />
|
||||
@@ -694,7 +707,7 @@ function EditDialogBody({
|
||||
</Field>
|
||||
|
||||
<Field data-invalid={!!errors.aiConfigId}>
|
||||
<FieldLabel>AI 配置</FieldLabel>
|
||||
<FieldLabel>{t("aiAgent.aiConfig")}</FieldLabel>
|
||||
<FieldContent>
|
||||
<Controller
|
||||
control={control}
|
||||
@@ -703,9 +716,9 @@ function EditDialogBody({
|
||||
<OptionCombobox
|
||||
value={field.value}
|
||||
options={aiConfigOptions}
|
||||
placeholder="请选择 AI 配置"
|
||||
searchPlaceholder="搜索 AI 配置"
|
||||
emptyText="未找到 AI 配置"
|
||||
placeholder={t("aiAgent.selectAiConfig")}
|
||||
searchPlaceholder={t("aiAgent.searchAiConfig")}
|
||||
emptyText={t("aiAgent.emptyAiConfig")}
|
||||
onChange={field.onChange}
|
||||
/>
|
||||
)}
|
||||
@@ -715,7 +728,7 @@ function EditDialogBody({
|
||||
</Field>
|
||||
|
||||
<Field data-invalid={!!errors.serviceMode}>
|
||||
<FieldLabel>服务模式</FieldLabel>
|
||||
<FieldLabel>{t("aiAgent.columnServiceMode")}</FieldLabel>
|
||||
<FieldContent>
|
||||
<Controller
|
||||
control={control}
|
||||
@@ -724,9 +737,9 @@ function EditDialogBody({
|
||||
<OptionCombobox
|
||||
value={field.value}
|
||||
options={serviceModeOptions}
|
||||
placeholder="请选择服务模式"
|
||||
searchPlaceholder="搜索服务模式"
|
||||
emptyText="未找到服务模式"
|
||||
placeholder={t("aiAgent.selectServiceMode")}
|
||||
searchPlaceholder={t("aiAgent.searchServiceMode")}
|
||||
emptyText={t("aiAgent.emptyServiceMode")}
|
||||
onChange={field.onChange}
|
||||
/>
|
||||
)}
|
||||
@@ -737,14 +750,14 @@ function EditDialogBody({
|
||||
</div>
|
||||
|
||||
<Field data-invalid={!!errors.description}>
|
||||
<FieldLabel htmlFor="ai-agent-description">描述</FieldLabel>
|
||||
<FieldLabel htmlFor="ai-agent-description">{t("aiAgent.description")}</FieldLabel>
|
||||
<FieldContent>
|
||||
<Textarea id="ai-agent-description" {...register("description")} />
|
||||
<FieldError errors={[errors.description]} />
|
||||
</FieldContent>
|
||||
</Field>
|
||||
<Field data-invalid={!!errors.welcomeMessage}>
|
||||
<FieldLabel htmlFor="ai-agent-welcome-message">欢迎语</FieldLabel>
|
||||
<FieldLabel htmlFor="ai-agent-welcome-message">{t("aiAgent.welcomeMessage")}</FieldLabel>
|
||||
<FieldContent>
|
||||
<Textarea
|
||||
id="ai-agent-welcome-message"
|
||||
@@ -757,7 +770,7 @@ function EditDialogBody({
|
||||
|
||||
<Field data-invalid={!!errors.systemPrompt}>
|
||||
<FieldLabel htmlFor="ai-agent-system-prompt">
|
||||
系统提示词
|
||||
{t("aiAgent.systemPrompt")}
|
||||
</FieldLabel>
|
||||
<FieldContent>
|
||||
<Textarea
|
||||
@@ -771,12 +784,12 @@ function EditDialogBody({
|
||||
</SectionCard>
|
||||
|
||||
<SectionCard
|
||||
title="服务策略"
|
||||
title={t("aiAgent.sectionStrategy")}
|
||||
>
|
||||
<div className="grid grid-cols-1 gap-4 xl:grid-cols-[minmax(0,1fr)_minmax(320px,1.15fr)]">
|
||||
<div className="space-y-4">
|
||||
<Field data-invalid={!!errors.handoffMode}>
|
||||
<FieldLabel>转人工模式</FieldLabel>
|
||||
<FieldLabel>{t("aiAgent.handoffMode")}</FieldLabel>
|
||||
<FieldContent>
|
||||
<Controller
|
||||
control={control}
|
||||
@@ -785,9 +798,9 @@ function EditDialogBody({
|
||||
<OptionCombobox
|
||||
value={field.value}
|
||||
options={handoffModeOptions}
|
||||
placeholder="请选择转人工模式"
|
||||
searchPlaceholder="搜索转人工模式"
|
||||
emptyText="未找到转人工模式"
|
||||
placeholder={t("aiAgent.selectHandoffMode")}
|
||||
searchPlaceholder={t("aiAgent.searchHandoffMode")}
|
||||
emptyText={t("aiAgent.emptyHandoffMode")}
|
||||
onChange={field.onChange}
|
||||
/>
|
||||
)}
|
||||
@@ -801,7 +814,7 @@ function EditDialogBody({
|
||||
htmlFor="ai-agent-reply-timeout-seconds"
|
||||
className="flex items-center gap-1"
|
||||
>
|
||||
回复超时秒数
|
||||
{t("aiAgent.replyTimeoutSeconds")}
|
||||
<Popover>
|
||||
<PopoverTrigger
|
||||
render={
|
||||
@@ -815,7 +828,7 @@ function EditDialogBody({
|
||||
/>
|
||||
<PopoverContent side="top" align="start" className="max-w-xs">
|
||||
<PopoverDescription>
|
||||
AI 自动回复的异步执行超时时间。填 0 时使用系统默认值 180 秒。
|
||||
{t("aiAgent.replyTimeoutHelp")}
|
||||
</PopoverDescription>
|
||||
</PopoverContent>
|
||||
</Popover>
|
||||
@@ -834,28 +847,28 @@ function EditDialogBody({
|
||||
</div>
|
||||
|
||||
<div className="rounded-lg border bg-muted/10 p-4">
|
||||
<div className="mb-1 text-sm font-medium">客服组</div>
|
||||
<div className="mb-1 text-sm font-medium">{t("aiAgent.teams")}</div>
|
||||
<div className="mb-4 text-xs text-muted-foreground">
|
||||
当前转人工模式:{selectedHandoffModeLabel}
|
||||
{t("aiAgent.currentHandoffMode", { mode: selectedHandoffModeLabel })}
|
||||
{handoffMode ===
|
||||
String(AIAgentHandoffMode.DefaultTeamPool)
|
||||
? "。该模式要求至少配置一个客服组。"
|
||||
: "。仅在涉及转人工时生效。"}
|
||||
? t("aiAgent.handoffNeedsTeam")
|
||||
: t("aiAgent.handoffOnlyWhenNeeded")}
|
||||
</div>
|
||||
<Field>
|
||||
<FieldContent className="space-y-3">
|
||||
<OptionCombobox
|
||||
value={teamToAdd}
|
||||
options={addableTeamOptions}
|
||||
placeholder="请选择客服组"
|
||||
searchPlaceholder="搜索客服组"
|
||||
emptyText="未找到客服组"
|
||||
placeholder={t("aiAgent.selectTeam")}
|
||||
searchPlaceholder={t("aiAgent.searchTeam")}
|
||||
emptyText={t("aiAgent.emptyTeam")}
|
||||
onChange={handleAddTeam}
|
||||
/>
|
||||
<div className="flex flex-wrap gap-2">
|
||||
{selectedTeamOptions.length === 0 ? (
|
||||
<span className="text-sm text-muted-foreground">
|
||||
未配置客服组
|
||||
{t("aiAgent.noTeams")}
|
||||
</span>
|
||||
) : (
|
||||
selectedTeamOptions.map((option) => (
|
||||
@@ -873,7 +886,7 @@ function EditDialogBody({
|
||||
onClick={() =>
|
||||
handleRemoveTeam(Number(option.value))
|
||||
}
|
||||
aria-label={`移除客服组 ${option.label}`}
|
||||
aria-label={t("aiAgent.removeTeam", { name: option.label })}
|
||||
>
|
||||
<Trash2Icon className="size-3" />
|
||||
</Button>
|
||||
@@ -888,19 +901,19 @@ function EditDialogBody({
|
||||
</SectionCard>
|
||||
|
||||
<SectionCard
|
||||
title="能力配置"
|
||||
title={t("aiAgent.sectionCapabilities")}
|
||||
>
|
||||
<Tabs defaultValue="knowledge" className="gap-4">
|
||||
<TabsList className="w-fit">
|
||||
<TabsTrigger value="knowledge">知识库</TabsTrigger>
|
||||
<TabsTrigger value="skills">Skills</TabsTrigger>
|
||||
<TabsTrigger value="direct-tools">Direct Tools</TabsTrigger>
|
||||
<TabsTrigger value="graph-tools">Graph Tools</TabsTrigger>
|
||||
<TabsTrigger value="knowledge">{t("aiAgent.knowledgeTab")}</TabsTrigger>
|
||||
<TabsTrigger value="skills">{t("aiAgent.skillsTab")}</TabsTrigger>
|
||||
<TabsTrigger value="direct-tools">{t("aiAgent.directToolsTab")}</TabsTrigger>
|
||||
<TabsTrigger value="graph-tools">{t("aiAgent.graphToolsTab")}</TabsTrigger>
|
||||
</TabsList>
|
||||
|
||||
<TabsContent value="knowledge" className="space-y-4">
|
||||
<div className="text-xs text-muted-foreground">
|
||||
至少选择一个知识库,可调整知识库优先级。
|
||||
{t("aiAgent.knowledgeHint")}
|
||||
</div>
|
||||
<Field data-invalid={selectedKnowledgeIds.length === 0}>
|
||||
<FieldContent className="space-y-3">
|
||||
@@ -909,9 +922,9 @@ function EditDialogBody({
|
||||
<OptionCombobox
|
||||
value={knowledgeToAdd}
|
||||
options={addableKnowledgeOptions}
|
||||
placeholder="选择并添加知识库"
|
||||
searchPlaceholder="搜索知识库"
|
||||
emptyText="没有可添加的知识库"
|
||||
placeholder={t("aiAgent.selectKnowledge")}
|
||||
searchPlaceholder={t("aiAgent.searchKnowledge")}
|
||||
emptyText={t("aiAgent.emptyKnowledge")}
|
||||
onChange={handleAddKnowledge}
|
||||
/>
|
||||
</div>
|
||||
@@ -922,12 +935,12 @@ function EditDialogBody({
|
||||
onClick={() => handleAddKnowledge(knowledgeToAdd)}
|
||||
>
|
||||
<PlusIcon />
|
||||
添加
|
||||
{t("aiAgent.add")}
|
||||
</Button>
|
||||
</div>
|
||||
{selectedKnowledgeIds.length === 0 ? (
|
||||
<div className="rounded-md border border-dashed px-3 py-4 text-sm text-muted-foreground">
|
||||
请至少选择一个知识库。
|
||||
{t("aiAgent.knowledgeRequired")}
|
||||
</div>
|
||||
) : (
|
||||
<div className="space-y-2 rounded-md border p-3">
|
||||
@@ -975,14 +988,14 @@ function EditDialogBody({
|
||||
</div>
|
||||
)}
|
||||
{selectedKnowledgeIds.length === 0 ? (
|
||||
<FieldError errors={[{ message: "请至少选择一个知识库" }]} />
|
||||
<FieldError errors={[{ message: t("aiAgent.knowledgeRequired") }]} />
|
||||
) : null}
|
||||
</FieldContent>
|
||||
</Field>
|
||||
|
||||
<div className="grid grid-cols-1 gap-4 xl:grid-cols-1">
|
||||
<Field data-invalid={!!errors.fallbackMode}>
|
||||
<FieldLabel>兜底策略</FieldLabel>
|
||||
<FieldLabel>{t("aiAgent.fallbackMode")}</FieldLabel>
|
||||
<FieldContent className="space-y-3">
|
||||
<Controller
|
||||
control={control}
|
||||
@@ -991,9 +1004,9 @@ function EditDialogBody({
|
||||
<OptionCombobox
|
||||
value={field.value}
|
||||
options={fallbackModeOptions}
|
||||
placeholder="请选择兜底策略"
|
||||
searchPlaceholder="搜索兜底策略"
|
||||
emptyText="未找到兜底策略"
|
||||
placeholder={t("aiAgent.selectFallbackMode")}
|
||||
searchPlaceholder={t("aiAgent.searchFallbackMode")}
|
||||
emptyText={t("aiAgent.emptyFallbackMode")}
|
||||
onChange={field.onChange}
|
||||
/>
|
||||
)}
|
||||
@@ -1004,11 +1017,11 @@ function EditDialogBody({
|
||||
|
||||
<Field data-invalid={!!errors.fallbackMessage}>
|
||||
<FieldLabel htmlFor="ai-agent-fallback-message">
|
||||
兜底文案
|
||||
{t("aiAgent.fallbackMessage")}
|
||||
</FieldLabel>
|
||||
<FieldContent>
|
||||
<div className="mb-1 text-xs text-muted-foreground">
|
||||
知识库未命中或命中证据不足时,会按这里的策略和文案进行兜底回复。
|
||||
{t("aiAgent.fallbackMessageHint")}
|
||||
</div>
|
||||
<Textarea
|
||||
id="ai-agent-fallback-message"
|
||||
@@ -1023,7 +1036,7 @@ function EditDialogBody({
|
||||
|
||||
<TabsContent value="skills" className="space-y-4">
|
||||
<div className="text-xs text-muted-foreground">
|
||||
用于固定业务流程和多步任务编排。
|
||||
{t("aiAgent.skillsHint")}
|
||||
</div>
|
||||
<Field>
|
||||
<FieldContent className="space-y-3">
|
||||
@@ -1032,9 +1045,9 @@ function EditDialogBody({
|
||||
<OptionCombobox
|
||||
value={skillToAdd}
|
||||
options={addableSkillOptions}
|
||||
placeholder="选择并添加 Skill"
|
||||
searchPlaceholder="搜索 Skill"
|
||||
emptyText="没有可添加的 Skill"
|
||||
placeholder={t("aiAgent.selectSkill")}
|
||||
searchPlaceholder={t("aiAgent.searchSkill")}
|
||||
emptyText={t("aiAgent.emptySkill")}
|
||||
onChange={handleAddSkill}
|
||||
/>
|
||||
</div>
|
||||
@@ -1045,13 +1058,13 @@ function EditDialogBody({
|
||||
onClick={() => handleAddSkill(skillToAdd)}
|
||||
>
|
||||
<PlusIcon />
|
||||
添加
|
||||
{t("aiAgent.add")}
|
||||
</Button>
|
||||
</div>
|
||||
<div className="flex flex-wrap gap-2">
|
||||
{selectedSkillOptions.length === 0 ? (
|
||||
<span className="text-sm text-muted-foreground">
|
||||
不绑定 Skill 时,自动路由只会走知识库或转人工。
|
||||
{t("aiAgent.noSkillsHint")}
|
||||
</span>
|
||||
) : (
|
||||
selectedSkillOptions.map((option) => (
|
||||
@@ -1069,7 +1082,7 @@ function EditDialogBody({
|
||||
onClick={() =>
|
||||
handleRemoveSkill(Number(option.value))
|
||||
}
|
||||
aria-label={`移除 Skill ${option.label}`}
|
||||
aria-label={t("aiAgent.removeSkill", { name: option.label })}
|
||||
>
|
||||
<Trash2Icon className="size-3" />
|
||||
</Button>
|
||||
@@ -1083,7 +1096,7 @@ function EditDialogBody({
|
||||
|
||||
<TabsContent value="direct-tools" className="space-y-4">
|
||||
<div className="text-xs text-muted-foreground">
|
||||
仅用于外部 MCP 工具的低风险、原子化查询。
|
||||
{t("aiAgent.directToolsHint")}
|
||||
</div>
|
||||
<Field>
|
||||
<FieldContent className="space-y-3">
|
||||
@@ -1092,9 +1105,9 @@ function EditDialogBody({
|
||||
<OptionCombobox
|
||||
value={directToolGroupToAdd}
|
||||
options={directToolGroupOptions}
|
||||
placeholder="选择工具分组"
|
||||
searchPlaceholder="搜索工具分组"
|
||||
emptyText="没有可用的工具分组"
|
||||
placeholder={t("aiAgent.selectToolGroup")}
|
||||
searchPlaceholder={t("aiAgent.searchToolGroup")}
|
||||
emptyText={t("aiAgent.emptyToolGroup")}
|
||||
onChange={(value) => {
|
||||
setDirectToolGroupToAdd(value);
|
||||
setDirectToolToAdd("");
|
||||
@@ -1105,9 +1118,9 @@ function EditDialogBody({
|
||||
<OptionCombobox
|
||||
value={directToolToAdd}
|
||||
options={addableDirectToolOptions}
|
||||
placeholder="选择 Direct Tool"
|
||||
searchPlaceholder="搜索 Direct Tool"
|
||||
emptyText="没有可添加的 Direct Tool"
|
||||
placeholder={t("aiAgent.selectDirectTool")}
|
||||
searchPlaceholder={t("aiAgent.searchDirectTool")}
|
||||
emptyText={t("aiAgent.emptyDirectTool")}
|
||||
onChange={handleAddDirectTool}
|
||||
/>
|
||||
</div>
|
||||
@@ -1118,13 +1131,13 @@ function EditDialogBody({
|
||||
onClick={() => handleAddDirectTool(directToolToAdd)}
|
||||
>
|
||||
<PlusIcon />
|
||||
添加
|
||||
{t("aiAgent.add")}
|
||||
</Button>
|
||||
</div>
|
||||
<div className="space-y-3">
|
||||
{directTools.length === 0 ? (
|
||||
<span className="text-sm text-muted-foreground">
|
||||
不配置 Direct Tool 时,Agent 不会直接调用外部或内置工具,只会依赖知识库、Skill 和普通回复。
|
||||
{t("aiAgent.noDirectToolsHint")}
|
||||
</span>
|
||||
) : (
|
||||
directToolsGrouped.map(([groupLabel, tools]) => (
|
||||
@@ -1156,7 +1169,7 @@ function EditDialogBody({
|
||||
onClick={() =>
|
||||
handleRemoveDirectTool(value)
|
||||
}
|
||||
aria-label={`移除 Direct Tool ${value}`}
|
||||
aria-label={t("aiAgent.removeDirectTool", { name: value })}
|
||||
>
|
||||
<Trash2Icon className="size-3" />
|
||||
</Button>
|
||||
@@ -1174,7 +1187,7 @@ function EditDialogBody({
|
||||
|
||||
<TabsContent value="graph-tools" className="space-y-4">
|
||||
<div className="text-xs text-muted-foreground">
|
||||
用于建单、转人工等系统内置流程,不再混放到 Direct Tools 中。
|
||||
{t("aiAgent.graphToolsHint")}
|
||||
</div>
|
||||
<Field>
|
||||
<FieldContent className="space-y-3">
|
||||
@@ -1183,9 +1196,9 @@ function EditDialogBody({
|
||||
<OptionCombobox
|
||||
value={graphToolToAdd}
|
||||
options={addableGraphToolOptions}
|
||||
placeholder="选择 Graph Tool"
|
||||
searchPlaceholder="搜索 Graph Tool"
|
||||
emptyText="没有可添加的 Graph Tool"
|
||||
placeholder={t("aiAgent.selectGraphTool")}
|
||||
searchPlaceholder={t("aiAgent.searchGraphTool")}
|
||||
emptyText={t("aiAgent.emptyGraphTool")}
|
||||
onChange={handleAddGraphTool}
|
||||
/>
|
||||
</div>
|
||||
@@ -1196,13 +1209,13 @@ function EditDialogBody({
|
||||
onClick={() => handleAddGraphTool(graphToolToAdd)}
|
||||
>
|
||||
<PlusIcon />
|
||||
添加
|
||||
{t("aiAgent.add")}
|
||||
</Button>
|
||||
</div>
|
||||
<div className="flex flex-wrap gap-2">
|
||||
{graphTools.length === 0 ? (
|
||||
<span className="text-sm text-muted-foreground">
|
||||
不配置 Graph Tool 时,Agent 不会暴露建单/转人工等内置流程工具。
|
||||
{t("aiAgent.noGraphToolsHint")}
|
||||
</span>
|
||||
) : (
|
||||
graphTools.map((toolCode) => {
|
||||
@@ -1225,7 +1238,7 @@ function EditDialogBody({
|
||||
size="icon"
|
||||
className="size-5"
|
||||
onClick={() => handleRemoveGraphTool(toolCode)}
|
||||
aria-label={`移除 Graph Tool ${toolCode}`}
|
||||
aria-label={t("aiAgent.removeGraphTool", { name: toolCode })}
|
||||
>
|
||||
<Trash2Icon className="size-3" />
|
||||
</Button>
|
||||
|
||||
@@ -73,34 +73,48 @@ import {
|
||||
type CreateAIAgentPayload,
|
||||
type PageResult,
|
||||
} from "@/lib/api/admin";
|
||||
import {
|
||||
IMConversationServiceModeLabels,
|
||||
Status,
|
||||
StatusLabels,
|
||||
} from "@/lib/generated/enums";
|
||||
import { getEnumLabel, getEnumOptions } from "@/lib/enums";
|
||||
import { IMConversationServiceMode, Status } from "@/lib/generated/enums";
|
||||
import { useI18n } from "@/i18n/provider";
|
||||
import { cn } from "@/lib/utils";
|
||||
import { EditDialog } from "./_components/edit";
|
||||
import { ButtonGroup } from "@/components/ui/button-group";
|
||||
|
||||
const statusOptions = [
|
||||
{ value: "all", label: "全部状态" },
|
||||
...getEnumOptions(StatusLabels).map((option) => ({
|
||||
value: String(option.value),
|
||||
label: option.label,
|
||||
})),
|
||||
];
|
||||
type TFunction = (key: string, values?: Record<string, string | number>) => string;
|
||||
|
||||
function getStatusLabel(value: string) {
|
||||
function getStatusOptions(t: TFunction) {
|
||||
return [
|
||||
{ value: "all", label: t("aiAgent.allStatuses") },
|
||||
{ value: String(Status.Ok), label: t("aiAgent.enabled") },
|
||||
{ value: String(Status.Disabled), label: t("aiAgent.disabled") },
|
||||
{ value: String(Status.Deleted), label: t("status.deleted") },
|
||||
];
|
||||
}
|
||||
|
||||
function getStatusLabel(value: string, t: TFunction) {
|
||||
return (
|
||||
statusOptions.find((item) => item.value === value)?.label ?? "全部状态"
|
||||
getStatusOptions(t).find((item) => item.value === value)?.label ??
|
||||
t("aiAgent.allStatuses")
|
||||
);
|
||||
}
|
||||
|
||||
function getServiceModeLabel(mode: number, t: TFunction) {
|
||||
switch (mode) {
|
||||
case IMConversationServiceMode.AIOnly:
|
||||
return t("aiAgent.serviceAiOnly");
|
||||
case IMConversationServiceMode.HumanOnly:
|
||||
return t("aiAgent.serviceHumanOnly");
|
||||
case IMConversationServiceMode.AIFirst:
|
||||
return t("aiAgent.serviceAiFirst");
|
||||
default:
|
||||
return "-";
|
||||
}
|
||||
}
|
||||
|
||||
type SortableAIAgentRowProps = {
|
||||
item: AIAgent;
|
||||
disabled: boolean;
|
||||
actionLoadingId: number | null;
|
||||
t: TFunction;
|
||||
openEditDialog: (item: AIAgent) => void;
|
||||
handleToggleStatus: (item: AIAgent) => void;
|
||||
handleDelete: (item: AIAgent) => void;
|
||||
@@ -110,6 +124,7 @@ function SortableAIAgentRow({
|
||||
item,
|
||||
disabled,
|
||||
actionLoadingId,
|
||||
t,
|
||||
openEditDialog,
|
||||
handleToggleStatus,
|
||||
handleDelete,
|
||||
@@ -154,7 +169,7 @@ function SortableAIAgentRow({
|
||||
size="icon"
|
||||
className="size-8 cursor-grab active:cursor-grabbing"
|
||||
disabled={disabled}
|
||||
aria-label={`拖拽排序 ${item.name}`}
|
||||
aria-label={t("aiAgent.dragSort", { name: item.name })}
|
||||
{...attributes}
|
||||
{...listeners}
|
||||
>
|
||||
@@ -175,15 +190,14 @@ function SortableAIAgentRow({
|
||||
{item.aiConfigName || "-"}
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
{getEnumLabel(
|
||||
IMConversationServiceModeLabels,
|
||||
item.serviceMode as keyof typeof IMConversationServiceModeLabels,
|
||||
)}
|
||||
{getServiceModeLabel(item.serviceMode, t)}
|
||||
</TableCell>
|
||||
<TableCell>
|
||||
<div className="flex flex-wrap gap-1">
|
||||
{knowledgeIds.length === 0 ? (
|
||||
<span className="text-sm text-muted-foreground">未配置</span>
|
||||
<span className="text-sm text-muted-foreground">
|
||||
{t("aiAgent.notConfigured")}
|
||||
</span>
|
||||
) : (
|
||||
knowledgeBaseNames.map((name, index) => (
|
||||
<Badge key={knowledgeIds[index] ?? `${item.id}-${index}`} variant="secondary">
|
||||
@@ -196,7 +210,7 @@ function SortableAIAgentRow({
|
||||
<TableCell>
|
||||
<div className="flex flex-wrap gap-1">
|
||||
{skills.length === 0 ? (
|
||||
<span className="text-sm text-muted-foreground">仅RAG</span>
|
||||
<span className="text-sm text-muted-foreground">{t("aiAgent.ragOnly")}</span>
|
||||
) : (
|
||||
skills.map((skill) => (
|
||||
<Badge key={skill.id} variant="outline">
|
||||
@@ -214,7 +228,9 @@ function SortableAIAgentRow({
|
||||
</div>
|
||||
<div className="flex flex-wrap gap-1">
|
||||
{directToolServerCodes.length === 0 ? (
|
||||
<span className="text-sm text-muted-foreground">未绑定 MCP Server</span>
|
||||
<span className="text-sm text-muted-foreground">
|
||||
{t("aiAgent.noMcpServer")}
|
||||
</span>
|
||||
) : (
|
||||
directToolServerCodes.map((serverCode) => (
|
||||
<Badge key={serverCode} variant="outline">
|
||||
@@ -231,12 +247,12 @@ function SortableAIAgentRow({
|
||||
checked={item.status === Status.Ok}
|
||||
disabled={actionLoadingId === item.id}
|
||||
onCheckedChange={() => void handleToggleStatus(item)}
|
||||
aria-label={`${item.name} 状态切换`}
|
||||
aria-label={t("aiAgent.toggleStatus", { name: item.name })}
|
||||
/>
|
||||
<Badge
|
||||
variant={item.status === Status.Ok ? "default" : "secondary"}
|
||||
>
|
||||
{getStatusLabel(String(item.status))}
|
||||
{getStatusLabel(String(item.status), t)}
|
||||
</Badge>
|
||||
</div>
|
||||
</TableCell>
|
||||
@@ -247,14 +263,14 @@ function SortableAIAgentRow({
|
||||
size="sm"
|
||||
onClick={() => openEditDialog(item)}
|
||||
>
|
||||
编辑
|
||||
{t("aiAgent.edit")}
|
||||
</Button>
|
||||
<DropdownMenu>
|
||||
<DropdownMenuTrigger
|
||||
render={
|
||||
<Button variant="outline" size="icon-sm" className="ml-auto" />
|
||||
}
|
||||
aria-label={`更多操作 ${item.name}`}
|
||||
aria-label={t("aiAgent.moreActions", { name: item.name })}
|
||||
>
|
||||
<MoreHorizontalIcon />
|
||||
</DropdownMenuTrigger>
|
||||
@@ -264,7 +280,7 @@ function SortableAIAgentRow({
|
||||
onClick={() => void handleToggleStatus(item)}
|
||||
>
|
||||
<PowerIcon className="size-4" />
|
||||
{item.status === Status.Ok ? "停用" : "启用"}
|
||||
{item.status === Status.Ok ? t("aiAgent.stop") : t("aiAgent.enabled")}
|
||||
</DropdownMenuItem>
|
||||
<DropdownMenuItem
|
||||
className="text-destructive"
|
||||
@@ -272,7 +288,7 @@ function SortableAIAgentRow({
|
||||
onClick={() => void handleDelete(item)}
|
||||
>
|
||||
<Trash2Icon className="size-4" />
|
||||
删除
|
||||
{t("aiAgent.delete")}
|
||||
</DropdownMenuItem>
|
||||
</DropdownMenuContent>
|
||||
</DropdownMenu>
|
||||
@@ -283,6 +299,8 @@ function SortableAIAgentRow({
|
||||
}
|
||||
|
||||
export default function DashboardAIAgentsPage() {
|
||||
const t = useI18n();
|
||||
const statusOptions = getStatusOptions(t);
|
||||
const [nameInput, setNameInput] = useState("");
|
||||
const [statusInput, setStatusInput] = useState("all");
|
||||
const [name, setName] = useState("");
|
||||
@@ -324,12 +342,12 @@ export default function DashboardAIAgentsPage() {
|
||||
setResult(data);
|
||||
} catch (error) {
|
||||
toast.error(
|
||||
error instanceof Error ? error.message : "加载 AI Agent 失败",
|
||||
error instanceof Error ? error.message : t("aiAgent.loadFailed"),
|
||||
);
|
||||
} finally {
|
||||
setLoading(false);
|
||||
}
|
||||
}, [limit, name, page, status]);
|
||||
}, [limit, name, page, status, t]);
|
||||
|
||||
useEffect(() => {
|
||||
void loadData();
|
||||
@@ -367,17 +385,17 @@ export default function DashboardAIAgentsPage() {
|
||||
try {
|
||||
if (editingItemId) {
|
||||
await updateAIAgent({ id: editingItemId, ...payload });
|
||||
toast.success(`已更新 AI Agent:${payload.name}`);
|
||||
toast.success(t("aiAgent.updated", { name: payload.name }));
|
||||
} else {
|
||||
const created = await createAIAgent(payload);
|
||||
toast.success(`已创建 AI Agent:${created.name}`);
|
||||
toast.success(t("aiAgent.created", { name: created.name }));
|
||||
}
|
||||
setDialogOpen(false);
|
||||
setEditingItemId(null);
|
||||
await loadData();
|
||||
} catch (error) {
|
||||
toast.error(
|
||||
error instanceof Error ? error.message : "保存 AI Agent 失败",
|
||||
error instanceof Error ? error.message : t("aiAgent.saveFailed"),
|
||||
);
|
||||
} finally {
|
||||
setSaving(false);
|
||||
@@ -391,12 +409,15 @@ export default function DashboardAIAgentsPage() {
|
||||
item.status === Status.Ok ? Status.Disabled : Status.Ok;
|
||||
await updateAIAgentStatus(item.id, nextStatus);
|
||||
toast.success(
|
||||
`已${nextStatus === Status.Ok ? "启用" : "停用"}:${item.name}`,
|
||||
t("aiAgent.statusChanged", {
|
||||
name: item.name,
|
||||
status: nextStatus === Status.Ok ? t("aiAgent.enabled") : t("aiAgent.stop"),
|
||||
}),
|
||||
);
|
||||
await loadData();
|
||||
} catch (error) {
|
||||
toast.error(
|
||||
error instanceof Error ? error.message : "更新 AI Agent 状态失败",
|
||||
error instanceof Error ? error.message : t("aiAgent.statusUpdateFailed"),
|
||||
);
|
||||
} finally {
|
||||
setActionLoadingId(null);
|
||||
@@ -407,11 +428,11 @@ export default function DashboardAIAgentsPage() {
|
||||
setActionLoadingId(item.id);
|
||||
try {
|
||||
await deleteAIAgent(item.id);
|
||||
toast.success(`已删除 AI Agent:${item.name}`);
|
||||
toast.success(t("aiAgent.deleted", { name: item.name }));
|
||||
await loadData();
|
||||
} catch (error) {
|
||||
toast.error(
|
||||
error instanceof Error ? error.message : "删除 AI Agent 失败",
|
||||
error instanceof Error ? error.message : t("aiAgent.deleteFailed"),
|
||||
);
|
||||
} finally {
|
||||
setActionLoadingId(null);
|
||||
@@ -440,14 +461,14 @@ export default function DashboardAIAgentsPage() {
|
||||
|
||||
try {
|
||||
await updateAIAgentSort(nextResults.map((item) => item.id));
|
||||
toast.success("AI Agent 排序已更新");
|
||||
toast.success(t("aiAgent.sortUpdated"));
|
||||
await loadData();
|
||||
} catch (error) {
|
||||
setResult((current) => ({
|
||||
...current,
|
||||
results: previousResults,
|
||||
}));
|
||||
toast.error(error instanceof Error ? error.message : "更新排序失败");
|
||||
toast.error(error instanceof Error ? error.message : t("aiAgent.sortUpdateFailed"));
|
||||
} finally {
|
||||
setSorting(false);
|
||||
}
|
||||
@@ -465,11 +486,11 @@ export default function DashboardAIAgentsPage() {
|
||||
disabled={loading}
|
||||
>
|
||||
<RefreshCwIcon className={loading ? "animate-spin" : ""} />
|
||||
刷新
|
||||
{t("aiAgent.refresh")}
|
||||
</Button>
|
||||
<Button onClick={openCreateDialog}>
|
||||
<PlusIcon />
|
||||
新建 AI Agent
|
||||
{t("aiAgent.new")}
|
||||
</Button>
|
||||
</>
|
||||
}
|
||||
@@ -478,22 +499,22 @@ export default function DashboardAIAgentsPage() {
|
||||
value={nameInput}
|
||||
onChange={(event) => setNameInput(event.target.value)}
|
||||
onKeyDown={handleFilterKeyDown}
|
||||
placeholder="按名称筛选"
|
||||
placeholder={t("aiAgent.filterName")}
|
||||
className="w-full sm:w-56"
|
||||
/>
|
||||
<div className="w-full sm:w-52">
|
||||
<OptionCombobox
|
||||
value={statusInput}
|
||||
options={statusOptions}
|
||||
placeholder="全部状态"
|
||||
searchPlaceholder="搜索状态"
|
||||
emptyText="未找到状态"
|
||||
placeholder={t("aiAgent.allStatuses")}
|
||||
searchPlaceholder={t("aiAgent.searchStatus")}
|
||||
emptyText={t("aiAgent.emptyStatus")}
|
||||
onChange={setStatusInput}
|
||||
/>
|
||||
</div>
|
||||
<Button variant="outline" onClick={applyFilters} disabled={loading}>
|
||||
<SearchIcon />
|
||||
查询
|
||||
{t("aiAgent.query")}
|
||||
</Button>
|
||||
</DashboardToolbar>
|
||||
|
||||
@@ -521,13 +542,15 @@ export default function DashboardAIAgentsPage() {
|
||||
<TableRow>
|
||||
<TableHead className="w-14"></TableHead>
|
||||
<TableHead>Agent</TableHead>
|
||||
<TableHead>AI配置</TableHead>
|
||||
<TableHead>服务模式</TableHead>
|
||||
<TableHead>知识库</TableHead>
|
||||
<TableHead>Skills</TableHead>
|
||||
<TableHead>能力概览</TableHead>
|
||||
<TableHead>状态</TableHead>
|
||||
<TableHead className="w-[88px] text-right">操作</TableHead>
|
||||
<TableHead>{t("aiAgent.columnAiConfig")}</TableHead>
|
||||
<TableHead>{t("aiAgent.columnServiceMode")}</TableHead>
|
||||
<TableHead>{t("aiAgent.columnKnowledge")}</TableHead>
|
||||
<TableHead>{t("aiAgent.columnSkills")}</TableHead>
|
||||
<TableHead>{t("aiAgent.columnCapabilities")}</TableHead>
|
||||
<TableHead>{t("aiAgent.columnStatus")}</TableHead>
|
||||
<TableHead className="w-[88px] text-right">
|
||||
{t("aiAgent.columnActions")}
|
||||
</TableHead>
|
||||
</TableRow>
|
||||
</TableHeader>
|
||||
<TableBody>
|
||||
@@ -535,8 +558,8 @@ export default function DashboardAIAgentsPage() {
|
||||
<DashboardTableStateRow
|
||||
colSpan={9}
|
||||
loading={loading}
|
||||
loadingText="正在加载 AI Agent..."
|
||||
emptyText="暂无 AI Agent"
|
||||
loadingText={t("aiAgent.loadingRows")}
|
||||
emptyText={t("aiAgent.emptyRows")}
|
||||
/>
|
||||
) : null}
|
||||
<SortableContext
|
||||
@@ -549,6 +572,7 @@ export default function DashboardAIAgentsPage() {
|
||||
item={item}
|
||||
disabled={sorting}
|
||||
actionLoadingId={actionLoadingId}
|
||||
t={t}
|
||||
openEditDialog={openEditDialog}
|
||||
handleToggleStatus={handleToggleStatus}
|
||||
handleDelete={handleDelete}
|
||||
|
||||
Reference in New Issue
Block a user