openfox-chatgpt
v0.1.1
Published
ChatGPT account provider plugin for OpenFox
Readme
openfox-chatgpt
Use your ChatGPT Plus or Pro account as an LLM provider in OpenFox.
The plugin adds ChatGPT account authentication, model discovery, and the transport required to run ChatGPT models from OpenFox. No OpenAI API key is required.
This plugin uses private, undocumented ChatGPT endpoints that may change without notice.
Install
Install the package directly into the OpenFox plugin directory, install its runtime dependencies, then restart OpenFox.
macOS
PLUGIN_DIR="$HOME/Library/Application Support/openfox/plugins/openfox-chatgpt" && mkdir -p "$PLUGIN_DIR" && npx --yes pacote extract openfox-chatgpt "$PLUGIN_DIR" && npm install --omit=dev --prefix "$PLUGIN_DIR"Plugin directory:
~/Library/Application Support/openfox/plugins/openfox-chatgptLinux
PLUGIN_DIR="${XDG_CONFIG_HOME:-$HOME/.config}/openfox/plugins/openfox-chatgpt" && mkdir -p "$PLUGIN_DIR" && npx --yes pacote extract openfox-chatgpt "$PLUGIN_DIR" && npm install --omit=dev --prefix "$PLUGIN_DIR"Plugin directory:
${XDG_CONFIG_HOME:-~/.config}/openfox/plugins/openfox-chatgptWindows PowerShell
$dir = Join-Path $env:APPDATA 'openfox\plugins\openfox-chatgpt'; New-Item -ItemType Directory -Force $dir | Out-Null; npx --yes pacote extract openfox-chatgpt $dir; npm install --omit=dev --prefix $dirPlugin directory:
%APPDATA%\openfox\plugins\openfox-chatgptDevelopment mode
When OpenFox runs with OPENFOX_DEV=true, replace openfox with openfox-dev in the paths above.
For local plugin development, a symlink is enough:
mkdir -p "$HOME/Library/Application Support/openfox-dev/plugins" && ln -sfn /path/to/openfox-chatgpt "$HOME/Library/Application Support/openfox-dev/plugins/openfox-chatgpt"Build the plugin before starting OpenFox:
npm install && npm run buildUse
Restart OpenFox, open the onboarding page, select ChatGPT Plus / Pro, and connect your account.
OpenFox can then keep the provider configuration minimal:
The plugin resolves the endpoint, backend, authentication adapter, transport adapter, and available models.
License
MIT
