diff --git a/README.md b/README.md index 6db5a0e..cf26d8d 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,7 @@ Azure, featuring streaming capabilities and extensive configuration options. - [macOS Intel chips](#macos-intel-chips) - [Linux (amd64)](#linux-amd64) - [Linux (arm64)](#linux-arm64) + - [Linux (386)](#linux-386) - [Windows (amd64)](#windows-amd64) - [Getting Started](#getting-started) - [Configuration](#configuration) @@ -93,6 +94,12 @@ curl -L -o chatgpt https://github.com/kardolus/chatgpt-cli/releases/latest/downl curl -L -o chatgpt https://github.com/kardolus/chatgpt-cli/releases/latest/download/chatgpt-linux-arm64 && chmod +x chatgpt && sudo mv chatgpt /usr/local/bin/ ``` +#### Linux (386) + +```shell +curl -L -o chatgpt https://github.com/kardolus/chatgpt-cli/releases/latest/download/chatgpt-linux-386 && chmod +x chatgpt && sudo mv chatgpt /usr/local/bin/ +``` + #### Windows (amd64) Download the binary @@ -272,6 +279,7 @@ completions_path: /openai/deployments//chat/completions?api-ver models_path: /v1/models auth_header: api-key auth_token_prefix: " " +command_prompt: '[%datetime] [Q%counter]' ``` You can set the API key either in the `config.yaml` file as shown above or export it as an environment variable: diff --git a/scripts/binaries.sh b/scripts/binaries.sh index ceb41e1..38837f2 100755 --- a/scripts/binaries.sh +++ b/scripts/binaries.sh @@ -13,6 +13,7 @@ TARGETS=( "darwin:arm64" "linux:amd64" "linux:arm64" + "linux:386" "windows:amd64" )