docs: typo fix (#961)

This commit is contained in:
Angie Jones
2025-01-30 16:23:49 -06:00
committed by GitHub
parent 3b758725a4
commit 940d618ae2

View File

@@ -141,14 +141,14 @@ Goose works with a set of [supported LLM providers][providers], and youll nee
On initial run, you may encounter errors about keyrings when setting your API Keys. Set the needed environment variables manually, e.g.:
```bash
export OPENAI_API_KEY={your_google_api_key}
export OPENAI_API_KEY={your_api_key}
```
To make the changes persist in WSL across sessions, add the goose path and export commands to your `.bashrc` or `.bash_profile` file so you can load it later.
```bash
echo 'export PATH="$HOME/.local/bin:$PATH"' >> ~/.bashrc
echo 'export OPENAI_API_KEY=your_google_api_key' >> ~/.bashrc
echo 'export OPENAI_API_KEY=your_api_key' >> ~/.bashrc
source ~/.bashrc
```
:::