Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
leurez
/
Adam
like
0
Build error
App
Files
Files
Community
011d0ba
Adam
/
testing
/
sqlchat_test.py
Aymane Hrouch
Reformat code using PyCharm
f1594cf
over 1 year ago
raw
Copy download link
history
blame
198 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=
''
)