From e0f4615b559c89557c24f90dcac4df1afa0bb599 Mon Sep 17 00:00:00 2001 From: DirkSchlossmacher <62424946+DirkSchlossmacher@users.noreply.github.com> Date: Thu, 15 Jun 2023 10:48:23 +0200 Subject: [PATCH 01/10] Update config.ts gpt-4 + 8000 tokens --- app/store/config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/store/config.ts b/app/store/config.ts index e837011a9..cb415a044 100644 --- a/app/store/config.ts +++ b/app/store/config.ts @@ -30,9 +30,9 @@ export const DEFAULT_CONFIG = { dontShowMaskSplashScreen: false, // dont show splash screen when create chat modelConfig: { - model: "gpt-3.5-turbo" as ModelType, + model: "gpt-4" as ModelType, temperature: 0.5, - max_tokens: 2000, + max_tokens: 8000, presence_penalty: 0, sendMemory: true, historyMessageCount: 4, From 76ab2451d4b95ef1ce8925a837ebbef211958361 Mon Sep 17 00:00:00 2001 From: DirkSchlossmacher <62424946+DirkSchlossmacher@users.noreply.github.com> Date: Wed, 21 Jun 2023 12:25:41 +0200 Subject: [PATCH 02/10] Update layout.tsx --- app/layout.tsx | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/app/layout.tsx b/app/layout.tsx index e7c14e307..96e8fd893 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -6,8 +6,8 @@ import { getBuildConfig } from "./config/build"; import { getClientConfig } from "./config/client"; export const metadata = { - title: "ChatGPT Next Web", - description: "Your personal ChatGPT Chat Bot.", + title: "AdExGPT Web", + description: "Our AdExGPT assistant - powered by Gen AI.", viewport: { width: "device-width", initialScale: 1, @@ -18,7 +18,7 @@ export const metadata = { { media: "(prefers-color-scheme: dark)", color: "#151515" }, ], appleWebApp: { - title: "ChatGPT Next Web", + title: "AdExGPT Mobile", statusBarStyle: "default", }, }; @@ -34,6 +34,13 @@ export default function RootLayout({ + {children} From cffbac48199bf1c02878a7821adcdcf854aab16c Mon Sep 17 00:00:00 2001 From: DirkSchlossmacher <62424946+DirkSchlossmacher@users.noreply.github.com> Date: Wed, 21 Jun 2023 12:30:44 +0200 Subject: [PATCH 03/10] Update layout.tsx --- app/layout.tsx | 7 ------- 1 file changed, 7 deletions(-) diff --git a/app/layout.tsx b/app/layout.tsx index 96e8fd893..5cb02a84a 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -34,13 +34,6 @@ export default function RootLayout({ - {children} From 6fbd60e62b2f9b7b38dd287e43ec39e391e6a5e5 Mon Sep 17 00:00:00 2001 From: DirkSchlossmacher <62424946+DirkSchlossmacher@users.noreply.github.com> Date: Wed, 21 Jun 2023 12:32:11 +0200 Subject: [PATCH 04/10] Create redirect.js --- public/redirect.js | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 public/redirect.js diff --git a/public/redirect.js b/public/redirect.js new file mode 100644 index 000000000..4df3baba1 --- /dev/null +++ b/public/redirect.js @@ -0,0 +1,5 @@ +if (window.location.hostname === "adexgpt.vercel.app") { + var currentPath = window.location.pathname + window.location.search + window.location.hash; + var newUrl = "https://adexgpt.adexpartners.com" + currentPath; + window.location.href = newUrl; +} From 5e090d96ade0ff1e271f0e27e1522745da6241c9 Mon Sep 17 00:00:00 2001 From: DirkSchlossmacher <62424946+DirkSchlossmacher@users.noreply.github.com> Date: Wed, 21 Jun 2023 12:35:18 +0200 Subject: [PATCH 05/10] Update layout.tsx --- app/layout.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/app/layout.tsx b/app/layout.tsx index 5cb02a84a..7d1aef0b9 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -34,6 +34,7 @@ export default function RootLayout({ + {children} From 3b4367a4cb9caf471e64f4a509738e2a5608dbc5 Mon Sep 17 00:00:00 2001 From: DirkSchlossmacher <62424946+DirkSchlossmacher@users.noreply.github.com> Date: Wed, 21 Jun 2023 12:43:59 +0200 Subject: [PATCH 06/10] Update layout.tsx --- app/layout.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/layout.tsx b/app/layout.tsx index 7d1aef0b9..52f82fade 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -34,7 +34,7 @@ export default function RootLayout({ - + {children} From 22e1364beda2595ea527ba78cc1e2481b57c3c35 Mon Sep 17 00:00:00 2001 From: DirkSchlossmacher <62424946+DirkSchlossmacher@users.noreply.github.com> Date: Wed, 21 Jun 2023 13:20:09 +0200 Subject: [PATCH 07/10] Update redirect.js --- public/redirect.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/redirect.js b/public/redirect.js index 4df3baba1..966217809 100644 --- a/public/redirect.js +++ b/public/redirect.js @@ -1,5 +1,5 @@ if (window.location.hostname === "adexgpt.vercel.app") { var currentPath = window.location.pathname + window.location.search + window.location.hash; var newUrl = "https://adexgpt.adexpartners.com" + currentPath; - window.location.href = newUrl; +// window.location.href = newUrl; } From 221728ebd641cff7d8b80679a974d835217a005c Mon Sep 17 00:00:00 2001 From: DirkSchlossmacher <62424946+DirkSchlossmacher@users.noreply.github.com> Date: Thu, 22 Jun 2023 14:31:10 +0200 Subject: [PATCH 08/10] Update redirect.js --- public/redirect.js | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/public/redirect.js b/public/redirect.js index 966217809..768cb22ca 100644 --- a/public/redirect.js +++ b/public/redirect.js @@ -1,5 +1,13 @@ +if (window.location.hostname === "adexgpt.adexpartners.com") { + var currentPath = window.location.pathname + window.location.search + window.location.hash; + var newUrl = "https://adexgpt.vercel.app" + currentPath; + window.location.href = newUrl; +} + +/* if (window.location.hostname === "adexgpt.vercel.app") { var currentPath = window.location.pathname + window.location.search + window.location.hash; var newUrl = "https://adexgpt.adexpartners.com" + currentPath; -// window.location.href = newUrl; + window.location.href = newUrl; } +*/ From c6855dc52ecb91bae0dce140c7a296ac64e3a9e1 Mon Sep 17 00:00:00 2001 From: DirkSchlossmacher <62424946+DirkSchlossmacher@users.noreply.github.com> Date: Thu, 22 Jun 2023 15:49:19 +0200 Subject: [PATCH 09/10] Update de.ts --- app/locales/de.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/locales/de.ts b/app/locales/de.ts index 7b0ca5cca..2725ad405 100644 --- a/app/locales/de.ts +++ b/app/locales/de.ts @@ -166,12 +166,12 @@ const de: LocaleType = { "Etwas ist schief gelaufen, bitte versuchen Sie es später noch einmal.", Prompt: { History: (content: string) => - "Dies ist eine Zusammenfassung des Chatverlaufs zwischen dem KI und dem Benutzer als Rückblick: " + + "Summary of the past dialogue, to support contextual continuity for the dialogue: " + content, Topic: "Bitte erstellen Sie einen vier- bis fünfwörtigen Titel, der unser Gespräch zusammenfasst, ohne Einleitung, Zeichensetzung, Anführungszeichen, Punkte, Symbole oder zusätzlichen Text. Entfernen Sie Anführungszeichen.", Summarize: - "Fassen Sie unsere Diskussion kurz in 200 Wörtern oder weniger zusammen, um sie als Pronpt für zukünftige Gespräche zu verwenden.", + "Create a short summary of the dialogue (300 words or less) to support contextual continuity for the dialogue to come.", }, }, Copy: { From ebf8d6683c56ecebf507ccd48d2448847fe7d843 Mon Sep 17 00:00:00 2001 From: DirkSchlossmacher <62424946+DirkSchlossmacher@users.noreply.github.com> Date: Mon, 26 Jun 2023 10:58:30 +0200 Subject: [PATCH 10/10] Update site.webmanifest --- public/site.webmanifest | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/public/site.webmanifest b/public/site.webmanifest index 117f33b86..acc799a8c 100644 --- a/public/site.webmanifest +++ b/public/site.webmanifest @@ -1,6 +1,6 @@ { - "name": "ChatGPT Next Web", - "short_name": "ChatGPT", + "name": "AdExGPT Web", + "short_name": "AdExGPT", "icons": [ { "src": "/android-chrome-192x192.png", @@ -18,4 +18,4 @@ "background_color": "#ffffff", "display": "standalone" } - \ No newline at end of file +