Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ZackBradshaw
/
omni_bot
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
omni_bot
/
swarms
/
agents
/
stream_response.py
WAWAA
Upload folder using huggingface_hub
4962437
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
156 Bytes
def
stream
(
response
):
"""
Yield the response token by token (word by word) from llm
"""
for
token
in
response.split():
yield
token