relmio 0.2.3 → 0.2.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/README.md +26 -0
- package/docs/images/examples/hosted-chat-connected.png +0 -0
- package/docs/troubleshooting.md +19 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,24 @@ checks the registry separately after publication.
|
|
|
7
7
|
|
|
8
8
|
## Unreleased
|
|
9
9
|
|
|
10
|
+
## [0.2.5] - 2026-07-31
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Add a sanitized successful hosted-chat screenshot and a visible guide to the
|
|
15
|
+
required Sign in with ChatGPT browser extension across the website, GitHub
|
|
16
|
+
README, npm README, and troubleshooting documentation.
|
|
17
|
+
- Explain that the hosted extension requirement is separate from the local
|
|
18
|
+
npm wizard callback, where a callback-capturing extension may need to be
|
|
19
|
+
disabled temporarily during sign-in.
|
|
20
|
+
|
|
21
|
+
## [0.2.4] - 2026-07-31
|
|
22
|
+
|
|
23
|
+
### Changed
|
|
24
|
+
|
|
25
|
+
- Add explicit foundation and attribution language for Evan Zhou Dev's
|
|
26
|
+
`openai-oauth` project to the GitHub and npm README explanations.
|
|
27
|
+
|
|
10
28
|
## [0.2.3] - 2026-07-31
|
|
11
29
|
|
|
12
30
|
### Added
|
package/README.md
CHANGED
|
@@ -54,6 +54,23 @@ Try the hosted browser demo at
|
|
|
54
54
|
request-bound ChatGPT experience; the npm package remains the local wizard for
|
|
55
55
|
installing the private n8n sidecar.
|
|
56
56
|
|
|
57
|
+
> **Warning — Hosted chat requires the browser extension.** Install the
|
|
58
|
+
> open-source [Sign in with ChatGPT extension for
|
|
59
|
+
> Chrome](https://chromewebstore.google.com/detail/sign-in-with-chatgpt/odbgboachaefbbbdiffcefhpkekhfcna)
|
|
60
|
+
> or [Firefox](https://addons.mozilla.org/firefox/addon/sign-in-with-chatgpt/)
|
|
61
|
+
> before connecting. If the hosted chat stays disconnected, confirm the
|
|
62
|
+
> extension is installed and enabled, reload the page, and select **Connect
|
|
63
|
+
> ChatGPT** again.
|
|
64
|
+
|
|
65
|
+
> The local npm wizard uses its own `localhost:1455` callback instead. If an
|
|
66
|
+
> OAuth extension captures that callback, temporarily disable it during local sign-in,
|
|
67
|
+
> complete the wizard sign-in, and then re-enable it.
|
|
68
|
+
|
|
69
|
+
<figure>
|
|
70
|
+
<img src="https://cdn.jsdelivr.net/npm/relmio@latest/docs/images/examples/hosted-chat-connected.png" alt="Relmio hosted chat showing a connected ChatGPT session and a ready prompt field" width="720">
|
|
71
|
+
<figcaption>Successful hosted-chat state: the browser extension completed the OAuth handoff and Relmio shows the ChatGPT session as connected.</figcaption>
|
|
72
|
+
</figure>
|
|
73
|
+
|
|
57
74
|
Use the site's [Install wizard](https://relmio.vercel.app/install) page for a
|
|
58
75
|
copyable command tailored to the current self-hosted n8n and Hostinger VPS
|
|
59
76
|
setup path.
|
|
@@ -157,6 +174,15 @@ an OpenAI-compatible path without creating an OpenAI Platform API key or
|
|
|
157
174
|
requiring separate API credits. The upstream service and its access rules may
|
|
158
175
|
change.
|
|
159
176
|
|
|
177
|
+
### Foundation and attribution
|
|
178
|
+
|
|
179
|
+
Relmio is built on [`openai-oauth`](https://github.com/EvanZhouDev/openai-oauth)
|
|
180
|
+
by Evan Zhou Dev. That upstream SDK/helper provides the foundation for ChatGPT
|
|
181
|
+
login in local apps and Sign in with ChatGPT flows; Relmio wraps it with n8n
|
|
182
|
+
discovery, verified SSH/SFTP deployment, Docker networking, and
|
|
183
|
+
OpenAI-compatible configuration. Review the upstream project for its own
|
|
184
|
+
license, notices, and supported behavior.
|
|
185
|
+
|
|
160
186
|
## Known limitations
|
|
161
187
|
|
|
162
188
|
- Only models supported by Codex are available. The list changes over time and
|
|
Binary file
|
package/docs/troubleshooting.md
CHANGED
|
@@ -9,6 +9,25 @@ wizard or any manual VPS command. The documented commands are sidecar-only and
|
|
|
9
9
|
do not delete, restart, or rebuild n8n, but they still access your VPS and write
|
|
10
10
|
files there.
|
|
11
11
|
|
|
12
|
+
## Hosted chat browser extension
|
|
13
|
+
|
|
14
|
+
The hosted demo at [relmio.vercel.app](https://relmio.vercel.app/) needs the
|
|
15
|
+
open-source **Sign in with ChatGPT** extension to complete the OAuth handoff:
|
|
16
|
+
|
|
17
|
+
- [Install for Chrome](https://chromewebstore.google.com/detail/sign-in-with-chatgpt/odbgboachaefbbbdiffcefhpkekhfcna)
|
|
18
|
+
- [Install for Firefox](https://addons.mozilla.org/firefox/addon/sign-in-with-chatgpt/)
|
|
19
|
+
|
|
20
|
+
After installation, reload Relmio and select **Connect ChatGPT** again. If the
|
|
21
|
+
chat still shows **Not connected**, confirm the extension is enabled, close
|
|
22
|
+
stale ChatGPT authorization tabs, and start one fresh connection from Relmio.
|
|
23
|
+
The hosted sign-in component also displays its extension install screen when
|
|
24
|
+
it detects that the extension is missing.
|
|
25
|
+
|
|
26
|
+
This requirement applies to the hosted chat, not the local npm wizard. The
|
|
27
|
+
wizard listens directly on `localhost:1455`; if an OAuth extension captures
|
|
28
|
+
that local callback, temporarily disable it during local sign-in and re-enable
|
|
29
|
+
it after the wizard saves the credential.
|
|
30
|
+
|
|
12
31
|
## Confirm the local package first
|
|
13
32
|
|
|
14
33
|
Run these commands on your own computer, not on the VPS:
|