42 lines
1.6 KiB
TypeScript
42 lines
1.6 KiB
TypeScript
import { json } from "@remix-run/node";
|
|
import { type MetaFunction } from "@remix-run/node";
|
|
import Chat from "~/components/chat";
|
|
import chatIndexStyles from "~/styles/components/chat-with-llm/index.css?url";
|
|
import chatMessageStyles from "~/styles/components/chat-with-llm/chat-message.css?url";
|
|
import chatInputStyles from "~/styles/components/chat-with-llm/chat-input.css?url";
|
|
import chatSidebarStyles from "~/styles/components/chat-with-llm/sidebar.css?url";
|
|
import chatThoughtProcessStyles from "~/styles/components/chat-with-llm/thought-process.css?url";
|
|
import chatMarkdownStyles from "~/styles/components/chat-with-llm/markdown.css?url";
|
|
|
|
export function links() {
|
|
return [
|
|
{ rel: "stylesheet", href: chatIndexStyles },
|
|
{ rel: "stylesheet", href: chatMessageStyles },
|
|
{ rel: "stylesheet", href: chatInputStyles },
|
|
{ rel: "stylesheet", href: chatSidebarStyles },
|
|
{ rel: "stylesheet", href: chatThoughtProcessStyles },
|
|
{ rel: "stylesheet", href: chatMarkdownStyles }
|
|
];
|
|
}
|
|
|
|
export const meta: MetaFunction = () => {
|
|
return [
|
|
{ title: "AI对话 - 中国烟草AI合同及卷宗审核系统" },
|
|
{
|
|
name: "description",
|
|
content: "与AI助手进行智能对话,获取专业的法务建议和文档分析"
|
|
}
|
|
];
|
|
};
|
|
|
|
/**
|
|
* 聊天主页面
|
|
* 实现单页面应用模式,所有会话切换都在同一页面内完成
|
|
*/
|
|
export default function ChatWithLLMIndex() {
|
|
return (
|
|
<div className="h-full chat-container">
|
|
<Chat />
|
|
</div>
|
|
);
|
|
}
|