Update README.md

This commit is contained in:
Krish Dholakia 2023-08-15 09:49:44 -07:00 committed by GitHub
parent 326a4ea5bc
commit 7256fcc2be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -46,7 +46,7 @@ pip install litellm==0.1.345
## Streaming Queries
liteLLM supports streaming the model response back, pass `stream=True` to get a streaming iterator in response.
Streaming is supported for OpenAI, Azure, Anthropic models
Streaming is supported for OpenAI, Azure, Anthropic, Huggingface models
```python
response = completion(model="gpt-3.5-turbo", messages=messages, stream=True)
for chunk in response: