forked from phoenix/litellm-mirror
docs - add instructions on LITELLM_SALT_KEY
This commit is contained in:
parent
df4aab8be9
commit
972eec2b3f
1 changed files with 7 additions and 1 deletions
|
@ -17,8 +17,14 @@ git clone https://github.com/BerriAI/litellm
|
||||||
# Go to folder
|
# Go to folder
|
||||||
cd litellm
|
cd litellm
|
||||||
|
|
||||||
# Add the master key
|
# Add the master key - you can change this after setup
|
||||||
echo 'LITELLM_MASTER_KEY="sk-1234"' > .env
|
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
|
source .env
|
||||||
|
|
||||||
# Start
|
# Start
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue