Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
acclass
/
gpt_demo
like
0
Running
App
Files
Files
Community
50ee399
gpt_demo
/
g4f
/
.v1
/
testing
/
sqlchat_test.py
starsaround
Upload 183 files
f4b4235
over 1 year ago
raw
Copy download link
history
blame
Safe
181 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=
''
)