From 7f7d2e15915598baf19b553608ef186c2a38b0ce Mon Sep 17 00:00:00 2001 From: Niek van der Maas Date: Thu, 2 Mar 2023 23:03:57 +0400 Subject: [PATCH] Added some more info on start page --- src/App.svelte | 18 ++++++++++++++++++ src/main.ts | 1 + 2 files changed, 19 insertions(+) diff --git a/src/App.svelte b/src/App.svelte index 089e09b..c3b4d5a 100644 --- a/src/App.svelte +++ b/src/App.svelte @@ -67,6 +67,24 @@ {#if activeChatId} {:else} +
+
+ ChatGPT-web + is a simple one-page web interface to the OpenAI ChatGPT API. To + use it, you need to register for + an OpenAI API key + first. All messages are stored in your browser's local storage, so + everything is private. You can also close the + browser tab and come back later to continue the conversation. +
+
Set your OpenAI API key below: diff --git a/src/main.ts b/src/main.ts index 1ef5cbc..97c6a4d 100644 --- a/src/main.ts +++ b/src/main.ts @@ -1,6 +1,7 @@ import "./app.scss"; import App from "./App.svelte"; +// @ts-ignore const app = new App({ target: document.getElementById("app"), });