mirror of
https://github.com/xtekky/gpt4free.git
synced 2024-11-27 13:42:19 +03:00
7 lines
196 B
Python
7 lines
196 B
Python
|
import sqlchat
|
||
|
|
||
|
for response in sqlchat.StreamCompletion.create(
|
||
|
prompt = 'write python code to reverse a string',
|
||
|
messages = []):
|
||
|
|
||
|
print(response.completion.choices[0].text, end='')
|