Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
leurez
/
Adam
like
0
Build error
App
Files
Files
Community
d8ec09c
Adam
/
testing
/
sqlchat_test.py
t.me/xtekky
sqlchat
85a1961
over 1 year ago
raw
Copy download link
history
blame
Safe
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=
''
)