freegpt4-duplicated / testing /sqlchat_test.py
pruth23's picture
Duplicate from pruth23/freegpt4
2f013d1
raw
history blame contribute delete
181 Bytes
import sqlchat
for response in sqlchat.StreamCompletion.create(prompt='write python code to reverse a string', messages=[]):
print(response.completion.choices[0].text, end='')