Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
MrDonStuff
/
GPT4Free
like
3
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
MrDonStuff
commited on
Feb 19, 2024
Commit
f32b215
·
verified
·
1 Parent(s):
c889e78
Update app.py
Browse files
Files changed (1)
hide
show
app.py
+3
-0
app.py
CHANGED
Viewed
@@ -1,2 +1,5 @@
1
from g4f.gui import run_gui
2
run_gui(port=7860)
1
+
from subprocess import run
2
from g4f.gui import run_gui
3
+
run('python3 -m pip install -U g4f[all]').stdout
4
+
5
run_gui(port=7860)