mirror of
https://github.com/bytedance/deer-flow.git
synced 2026-08-15 01:08:53 +00:00
* fix(frontend): improve chat math rendering * fix(frontend): refine math rendering stability * fix(frontend): address review feedback on math preprocessing - Fix escaped-backslash blind spot: consume \\\\ as a unit so \\( and \\[ are not mis-interpreted as math delimiters when the backslash itself is escaped. - Thread inInlineCode state across lines so multi-line backtick code spans are protected from delimiter conversion. - Remove double math normalization: preprocessStreamdownMarkdown now only handles Mermaid; math normalization lives solely in ClipboardSafeStreamdown, preventing non-idempotent double passes. - Wire parseIncompleteMarkdown to isLoading in MarkdownContent so Streamdown's streaming-incomplete-math handling is actually active during streaming. * fix(frontend): address streamdown math review issues * refactor(frontend): move streamdown preprocessing out of ai elements
29 lines
874 B
TypeScript
29 lines
874 B
TypeScript
import "katex/dist/katex.min.css";
|
|
import "@/styles/globals.css";
|
|
|
|
import { type Metadata } from "next";
|
|
|
|
import { ThemeProvider } from "@/components/theme-provider";
|
|
import { I18nProvider } from "@/core/i18n/context";
|
|
import { detectLocaleServer } from "@/core/i18n/server";
|
|
|
|
export const metadata: Metadata = {
|
|
title: "DeerFlow",
|
|
description: "A LangChain-based framework for building super agents.",
|
|
};
|
|
|
|
export default async function RootLayout({
|
|
children,
|
|
}: Readonly<{ children: React.ReactNode }>) {
|
|
const locale = await detectLocaleServer();
|
|
return (
|
|
<html lang={locale} suppressContentEditableWarning suppressHydrationWarning>
|
|
<body>
|
|
<ThemeProvider attribute="class" enableSystem disableTransitionOnChange>
|
|
<I18nProvider initialLocale={locale}>{children}</I18nProvider>
|
|
</ThemeProvider>
|
|
</body>
|
|
</html>
|
|
);
|
|
}
|