From d844ea7ae77374751077f0b795a68dfd8d32e975 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Thu, 14 Sep 2023 09:34:49 -0700 Subject: [PATCH] docs --- docs/my-website/docs/tutorials/azure_openai.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/my-website/docs/tutorials/azure_openai.md b/docs/my-website/docs/tutorials/azure_openai.md index 43cf20960b..f80544e27a 100644 --- a/docs/my-website/docs/tutorials/azure_openai.md +++ b/docs/my-website/docs/tutorials/azure_openai.md @@ -50,7 +50,7 @@ os.environ["AZURE_API_VERSION"] = "2023-05-15" # openai call response = completion( model = "gpt-3.5-turbo", - messages= = [{ "content": "Hello, how are you?","role": "user"}], + messages = [{ "content": "Hello, how are you?","role": "user"}], stream=True ) @@ -81,7 +81,7 @@ os.environ["AZURE_API_VERSION"] = "2023-05-15" # openai call response = acompletion( model = "gpt-3.5-turbo", - messages= = [{ "content": "Hello, how are you?","role": "user"}], + messages = [{ "content": "Hello, how are you?","role": "user"}], stream=True )