1
0
Fork 0
GPT4FREE/testing/sqlchat_test.py
t.me/xtekky 85a1961b64 sqlchat
2023-04-22 14:08:19 +01:00

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='')