mirror of
https://github.com/xtekky/gpt4free.git
synced 2026-01-01 23:03:24 -08:00
6 lines
198 B
Python
6 lines
198 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='')
|