From 2f408655837090ab81d14b0694e2158a0c8465a9 Mon Sep 17 00:00:00 2001 From: cyai <83634399+cyai@users.noreply.github.com> Date: Fri, 19 Jul 2024 22:16:57 +0530 Subject: [PATCH] re: remove redundant new line char for the tip --- interpreter/terminal_interface/validate_llm_settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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` ---"""