Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
justest
/
gpt4free
like
28
Runtime error
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
96e2d26
gpt4free
/
g4f
/
.v1
/
testing
/
sqlchat_test.py
justest
update
96e2d26
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=
''
)