Files
leaudit-platform-frontend/app/routes/chat-with-llm.tsx
T
2025-06-04 11:18:52 +08:00

23 lines
541 B
TypeScript

import { Outlet } from "@remix-run/react";
import { type MetaFunction } from "@remix-run/node";
export const meta: MetaFunction = () => {
return [
{ title: "AI对话 - 中国烟草AI合同及卷宗审核系统" },
{
name: "chat-with-llm",
content: "AI对话模块,包括AI对话功能"
}
];
};
export const handle = {
breadcrumb: "AI对话"
};
/**
* 配置列表路由布局
*/
export default function ContractSearchLayout() {
return <Outlet />;
}