Fix typo in huggingface_textgen_inference.ipynb (#9313)

Replaced incorrect `stream` parameter by `streaming` on Integrations
docs.
This commit is contained in:
Angel Luis 2023-08-17 01:22:21 +02:00 committed by GitHub
parent b04e472acf
commit 2e8733cf54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -74,7 +74,7 @@
" typical_p=0.95,\n", " typical_p=0.95,\n",
" temperature=0.01,\n", " temperature=0.01,\n",
" repetition_penalty=1.03,\n", " repetition_penalty=1.03,\n",
" stream=True\n", " streaming=True\n",
")\n", ")\n",
"llm(\"What did foo say about bar?\", callbacks=[StreamingStdOutCallbackHandler()])" "llm(\"What did foo say about bar?\", callbacks=[StreamingStdOutCallbackHandler()])"
] ]