This commit is contained in:
t.me/xtekky
2023-04-22 14:08:19 +01:00
parent 121976b3b7
commit 85a1961b64
5 changed files with 166 additions and 32 deletions

7
testing/sqlchat_test.py Normal file
View File

@@ -0,0 +1,7 @@
import sqlchat
for response in sqlchat.StreamCompletion.create(
prompt = 'write python code to reverse a string',
messages = []):
print(response.completion.choices[0].text, end='')