From 48ea02adc781300a643c83f961f11b8e6bd0cc84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Bj=C3=A4reholt?= Date: Thu, 30 Jan 2025 13:22:15 +0100 Subject: [PATCH] docs: update domain from gptme.gptengineer.run to chat.gptme.org --- README.md | 4 ++-- index.html | 4 ++-- src/democonversations.ts | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 4934051..fac9e18 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ An alternative to the minimal UI currently provided by `gptme`. ## Usage -You can use the web UI hosted at [gptme.gptengineer.run](https://gptme.gptengineer.run/), or run it locally: +You can use the web UI hosted at [chat.gptme.org](https://chat.gptme.org/), or run it locally: ```sh git clone https://github.com/ErikBjare/gptme-webui @@ -24,7 +24,7 @@ npm i npm run dev ``` -To connect to a local `gptme-server` instance, you need to start one with `gptme-server --cors-origin='https://gptme.gptengineer.run'` (or whatever the origin of your web UI is). +To connect to a local `gptme-server` instance, you need to start one with `gptme-server --cors-origin='https://chat.gptme.org'` (or whatever the origin of your web UI is). ## Tech stack diff --git a/index.html b/index.html index f0b0b1c..b0fad03 100644 --- a/index.html +++ b/index.html @@ -11,14 +11,14 @@ - + - + diff --git a/src/democonversations.ts b/src/democonversations.ts index b6292ad..dd0d3ab 100644 --- a/src/democonversations.ts +++ b/src/democonversations.ts @@ -131,7 +131,7 @@ export const demoConversations: DemoConversation[] = [ }, { role: "assistant", - content: "To use the gptme web UI, you'll need to run gptme-server locally first:\n\n```shell\ngptme-server --cors-origin='' # Replace with the web UI URL\n```\n\nThen you have two options for accessing the web UI:\n\n1. **Use the hosted version** at [gptme.gptengineer.run](https://gptme.gptengineer.run):\n - Use `--cors-origin='https://gptme.gptengineer.run'` when starting the server\n - Click the 'Connect' button in the top-right corner\n - Enter the server URL (default: http://127.0.0.1:5000)\n\n2. **Run the web UI locally**:\n ```shell\n git clone https://github.com/ErikBjare/gptme-webui\n cd gptme-webui\n npm install\n npm run dev\n ```\n Then:\n - Use `--cors-origin='http://localhost:5173'` when starting the server\n - Open http://localhost:5173 in your browser\n - Click 'Connect' and enter the server URL\n\nBoth options provide the same features, just choose what works best for you!", + content: "To use the gptme web UI, you'll need to run gptme-server locally first:\n\n```shell\ngptme-server --cors-origin='' # Replace with the web UI URL\n```\n\nThen you have two options for accessing the web UI:\n\n1. **Use the hosted version** at [chat.gptme.org](https://chat.gptme.org):\n - Use `--cors-origin='https://chat.gptme.org'` when starting the server\n - Click the 'Connect' button in the top-right corner\n - Enter the server URL (default: http://127.0.0.1:5000)\n\n2. **Run the web UI locally**:\n ```shell\n git clone https://github.com/ErikBjare/gptme-webui\n cd gptme-webui\n npm install\n npm run dev\n ```\n Then:\n - Use `--cors-origin='http://localhost:5173'` when starting the server\n - Open http://localhost:5173 in your browser\n - Click 'Connect' and enter the server URL\n\nBoth options provide the same features, just choose what works best for you!", timestamp: now.toISOString(), } ],