gpt4free/testing/sqlchat_test.py

5 lines
181 B
Python
Raw Normal View History

2023-04-22 09:08:19 -04:00
import sqlchat
for response in sqlchat.StreamCompletion.create(prompt='write python code to reverse a string', messages=[]):
2023-04-27 10:43:59 -04:00
print(response.completion.choices[0].text, end='')