mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-12-28 05:33:23 +03:00
4 lines
198 B
Python
4 lines
198 B
Python
from gpt4free import italygpt2
|
|
account_data=italygpt2.Account.create()
|
|
for chunk in italygpt2.Completion.create(account_data=account_data,prompt="Who are you?"):
|
|
print(chunk, end="", flush=True) |