From ef34cf3ce42c41d9d7d58caa452d3cb02f64724f Mon Sep 17 00:00:00 2001 From: Krish Dholakia Date: Sat, 21 Oct 2023 14:45:51 -0700 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ad88e41c83..e19720044d 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ print(response) ``` ## Streaming ([Docs](https://docs.litellm.ai/docs/completion/stream)) -liteLLM supports streaming the model response back, pass `stream=True` to get a streaming iterator in response. +liteLLM supports streaming the model response back, pass `stream=True` to get a streaming iterator in response. Streaming is supported for all models (Bedrock, Huggingface, TogetherAI, Azure, OpenAI, etc.) ```python response = completion(model="gpt-3.5-turbo", messages=messages, stream=True)