From 972eec2b3f14191d6f228fe8469236a927fd607e Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Thu, 18 Jul 2024 13:07:02 -0700 Subject: [PATCH] docs - add instructions on LITELLM_SALT_KEY --- docs/my-website/docs/proxy/deploy.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/my-website/docs/proxy/deploy.md b/docs/my-website/docs/proxy/deploy.md index 47d089ab4..dd11f7072 100644 --- a/docs/my-website/docs/proxy/deploy.md +++ b/docs/my-website/docs/proxy/deploy.md @@ -17,8 +17,14 @@ git clone https://github.com/BerriAI/litellm # Go to folder cd litellm -# Add the master key +# Add the master key - you can change this after setup echo 'LITELLM_MASTER_KEY="sk-1234"' > .env + +# Add the litellm salt key - you cannot change this after adding a model +# We recommned - https://1password.com/password-generator/ password generator to get a random hash for litellm salt key +# It is used to encrypt / decrypt your LLM API Key credentials +echo 'LITELLM_SALT_KEY="sk-1234"' > .env + source .env # Start