gpt4free/testing/sqlchat_test.py

7 lines
196 B
Python
Raw Normal View History

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