Skip to content

Commit

Permalink
docs: update domain from gptme.gptengineer.run to chat.gptme.org
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikBjare committed Jan 30, 2025
1 parent 2f3a95e commit 48ea02a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down
4 changes: 2 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@

<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://gptme.gptengineer.run/" />
<meta property="og:url" content="https://chat.gptme.org/" />
<meta property="og:title" content="gptme" />
<meta property="og:description" content="A fancy web UI for gptme, a local-first AI chat interface" />
<meta property="og:image" content="https://gptme.org/media/logo.png" />

<!-- Twitter -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:url" content="https://gptme.gptengineer.run/" />
<meta name="twitter:url" content="https://chat.gptme.org/" />
<meta name="twitter:title" content="gptme" />
<meta name="twitter:description" content="A fancy web UI for gptme, a local-first AI chat interface" />
<meta name="twitter:image" content="https://gptme.org/media/logo.png" />
Expand Down
2 changes: 1 addition & 1 deletion src/democonversations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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='<origin>' # Replace <origin> 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='<origin>' # Replace <origin> 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(),
}
],
Expand Down

0 comments on commit 48ea02a

Please sign in to comment.