diff --git a/README.md b/README.md index 69b649926..a42cbd1d4 100644 --- a/README.md +++ b/README.md @@ -61,10 +61,11 @@ One-Click to get a well-designed cross-platform ChatGPT web UI, with GPT3, GPT4 ## What's New -- π v2.0 is released, now you can create prompt templates, turn your ideas into reality! Read this: [ChatGPT Prompt Engineering Tips: Zero, One and Few Shot Prompting](https://www.allabtai.com/prompt-engineering-tips-zero-one-and-few-shot-prompting/). -- π v2.7 let's share conversations as image, or share to ShareGPT! -- π v2.8 now we have a client that runs across all platforms! +- π v2.10.1 support Google Gemini Pro model. - π v2.9.11 you can use azure endpoint now. +- π v2.8 now we have a client that runs across all platforms! +- π v2.7 let's share conversations as image, or share to ShareGPT! +- π v2.0 is released, now you can create prompt templates, turn your ideas into reality! Read this: [ChatGPT Prompt Engineering Tips: Zero, One and Few Shot Prompting](https://www.allabtai.com/prompt-engineering-tips-zero-one-and-few-shot-prompting/). ## δΈ»θ¦εθ½ diff --git a/app/layout.tsx b/app/layout.tsx index b234051f9..be2162475 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -4,6 +4,10 @@ import "./styles/markdown.scss"; import "./styles/highlight.scss"; import { getClientConfig } from "./config/client"; import { type Metadata } from "next"; +import { SpeedInsights } from "@vercel/speed-insights/next"; +import { getServerSideConfig } from "./config/server"; + +const serverConfig = getServerSideConfig(); export const metadata: Metadata = { title: "NextChat", @@ -35,7 +39,14 @@ export default function RootLayout({ -
{children} + + {children} + {serverConfig?.isVercel && ( + <> +