From 340a15c3332f196c4dc1f760e9ec78d749136d88 Mon Sep 17 00:00:00 2001 From: Krish Dholakia Date: Tue, 19 Sep 2023 16:40:13 -0700 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a29adc359..531c8a58f 100644 --- a/README.md +++ b/README.md @@ -62,8 +62,8 @@ pip install litellm from litellm import completion import os ## set ENV variables -os.environ["OPENAI_API_KEY"] = "openai key" -os.environ["COHERE_API_KEY"] = "cohere key" +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 messages = [{ "content": "Hello, how are you?","role": "user"}]