AnaGPT / models /gpt4free /testing /sqlchat_test.py
‘xiarui’
init
25d0227
raw
history blame contribute delete
196 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='')