diff options
Diffstat (limited to 'g4f/.v1/testing/sqlchat_test.py')
-rw-r--r-- | g4f/.v1/testing/sqlchat_test.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/g4f/.v1/testing/sqlchat_test.py b/g4f/.v1/testing/sqlchat_test.py new file mode 100644 index 00000000..1db71be2 --- /dev/null +++ b/g4f/.v1/testing/sqlchat_test.py @@ -0,0 +1,4 @@ +import sqlchat + +for response in sqlchat.StreamCompletion.create(prompt='write python code to reverse a string', messages=[]): + print(response.completion.choices[0].text, end='') |