基于 shiy-temp分支修改

This commit is contained in:
pingchuan
2025-06-04 11:18:52 +08:00
parent 87ad3376fe
commit af33de09db
36 changed files with 6293 additions and 105 deletions
+23
View File
@@ -0,0 +1,23 @@
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 />;
}