diff --git a/interpreter/terminal_interface/validate_llm_settings.py b/interpreter/terminal_interface/validate_llm_settings.py index b9a4260fcf..bce537c05d 100644 --- a/interpreter/terminal_interface/validate_llm_settings.py +++ b/interpreter/terminal_interface/validate_llm_settings.py @@ -72,8 +72,8 @@ def validate_llm_settings(interpreter): """ **Tip:** To save this key for later, run one of the following and then restart your terminal. - MacOS: `echo '\\nexport OPENAI_API_KEY=your_api_key' >> ~/.zshrc` - Linux: `echo '\\nexport OPENAI_API_KEY=your_api_key' >> ~/.bashrc` + MacOS: `echo 'export OPENAI_API_KEY=your_api_key' >> ~/.zshrc` + Linux: `echo 'export OPENAI_API_KEY=your_api_key' >> ~/.bashrc` Windows: `setx OPENAI_API_KEY your_api_key` ---"""