You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gpt4free/testing/sqlchat_test.py

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