Stream
Simulating "Live" Typing with Streaming
from zerogpt import Client
client = Client()
for msg in client.send_message('Hello', stream=True):
print(msg, flush=True, end='')Last updated
from zerogpt import Client
client = Client()
for msg in client.send_message('Hello', stream=True):
print(msg, flush=True, end='')Last updated