Skip to content

Latest commit

 

History

History
129 lines (83 loc) · 5.27 KB

File metadata and controls

129 lines (83 loc) · 5.27 KB

Authentication

Usage-based billing alternative: Use an OpenAI API key

If you prefer to pay-as-you-go, you can still authenticate with your OpenAI API key in one of two ways:

  • Direct argument, for scripted onboarding:
kay login --api-key <KEY>
  • stdin, for shell-safe use:
printenv OPENAI_API_KEY | kay login --with-api-key

If you are saving a provider-specific key, add --provider xiaomi, --provider minimax, --provider opencode-go, or --provider openrouter to either form, for example:

kay login --provider xiaomi --api-key <KEY>
kay login --provider minimax --api-key <KEY>
kay login --provider openrouter --api-key <KEY>

The direct argument form is convenient for scripts and one-off onboarding, but it will appear in shell history and process listings. Use the stdin form when you want to keep the secret out of both.

This key must, at minimum, have write access to the Responses API.

Migrating to ChatGPT login from API key

If you've used the Kay CLI before with usage-based billing via an API key and want to switch to using your ChatGPT plan, follow these steps:

  1. Update the CLI and ensure kay --version is 0.5.0 or later
  2. Delete ~/.kay/auth.json if you want to reset Kay locally. On Windows this lives under C:\\Users\\USERNAME\\.kay\\auth.json
  3. Run kay login again

Forcing a specific auth method (advanced)

You can explicitly choose which authentication Kay should prefer when both are available.

  • To always use your API key (even when ChatGPT auth exists), set:
# ~/.kay/config.toml
preferred_auth_method = "apikey"

Or override ad-hoc via CLI:

kay --config preferred_auth_method="apikey"
  • To prefer ChatGPT auth (default), set:
# ~/.kay/config.toml
preferred_auth_method = "chatgpt"

Notes:

  • When preferred_auth_method = "apikey" and an API key is available, the login screen is skipped.
  • When preferred_auth_method = "chatgpt" (default), Kay prefers ChatGPT auth if present; if only an API key is present, it will use the API key. Certain account types may also require API-key mode.
  • To check which auth method is being used during a session, use the /status command in the TUI.

Project .env safety (OPENAI_API_KEY)

By default, Kay will no longer read OPENAI_API_KEY or AZURE_OPENAI_API_KEY from a project’s local .env file.

Why: many repos include an API key in .env for unrelated tooling, which could cause Kay to silently use the API key instead of your ChatGPT plan in that folder.

What still works:

  • ~/.kay/.env is loaded first for Kay-local state.
  • A shell-exported OPENAI_API_KEY is honored.

Project .env provider keys are always ignored — there is no opt‑in.

Provider-specific environment variables such as OPENCODE_GO_API_KEY, MINIMAX_API_KEY, and XIAOMI_API_KEY override stored auth.json provider_credentials entries when set in the process environment.

UI clarity:

  • When Kay is using an API key, the chat footer shows a bold “Auth: API key” badge so it’s obvious which mode you’re in.

Connecting on a "Headless" Machine

Today, the login process entails running a server on localhost:1455. If you are on a "headless" server, such as a Docker container or are ssh'd into a remote machine, loading localhost:1455 in the browser on your local machine will not automatically connect to the webserver running on the headless machine, so you must use one of the following workarounds:

Authenticate locally and copy your credentials to the "headless" machine

The easiest solution is likely to run through the kay login process on your local machine such that localhost:1455 is accessible in your web browser. When you complete the authentication process, an auth.json file should be available at $KAY_HOME/auth.json (defaults to ~/.kay/auth.json).

Because the auth.json file is not tied to a specific host, once you complete the authentication flow locally, you can copy the $KAY_HOME/auth.json file to the headless machine and then kay should "just work" on that machine. Note to copy a file to a Docker container, you can do:

# substitute MY_CONTAINER with the name or id of your Docker container:
CONTAINER_HOME=$(docker exec MY_CONTAINER printenv HOME)
docker exec MY_CONTAINER mkdir -p "$CONTAINER_HOME/.kay"
docker cp auth.json MY_CONTAINER:"$CONTAINER_HOME/.kay/auth.json"

whereas if you are ssh'd into a remote machine, you likely want to use scp:

ssh user@remote 'mkdir -p ~/.kay'
scp ~/.kay/auth.json user@remote:~/.kay/auth.json

or try this one-liner:

ssh user@remote 'mkdir -p ~/.kay && cat > ~/.kay/auth.json' < ~/.kay/auth.json

Connecting through VPS or remote

If you run Kay on a remote machine (VPS/server) without a local browser, the login helper starts a server on localhost:1455 on the remote host. To complete login in your local browser, forward that port to your machine before starting the login flow:

# From your local machine
ssh -L 1455:localhost:1455 <user>@<remote-host>

Then, in that SSH session, run kay and select "Sign in with ChatGPT". When prompted, open the printed URL (it will be http://localhost:1455/...) in your local browser. The traffic will be tunneled to the remote server.