From bb50729a180c1d7a2a983dc60bb6a94d6ac6ee0d Mon Sep 17 00:00:00 2001 From: Krish Dholakia Date: Fri, 29 Sep 2023 11:20:38 -0700 Subject: [PATCH] Update README.md --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 70cb8acaa..b3cfea0f0 100644 --- a/README.md +++ b/README.md @@ -44,10 +44,9 @@ pip install litellm from litellm import completion import os -## We provide a free $10 key to try all providers supported on LiteLLM. ## set ENV variables -os.environ["OPENAI_API_KEY"] = "sk-litellm-5b46387675a944d2" # [OPTIONAL] replace with your openai key -os.environ["COHERE_API_KEY"] = "sk-litellm-5b46387675a944d2" # [OPTIONAL] replace with your cohere key +os.environ["OPENAI_API_KEY"] = "your-openai-key" +os.environ["COHERE_API_KEY"] = "your-cohere-key" messages = [{ "content": "Hello, how are you?","role": "user"}]