Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
avfranco
/
ea4all_gpt
like
0
Runtime error
App
Files
Files
Community
1
refs/pr/1
ea4all_gpt
/
app.py
avfranco
Update app.py
93b8a91
verified
9 months ago
raw
Copy download link
history
blame
Safe
189 Bytes
import
gradio
as
gr
import
os
token = os.getenv(
'HF_TOKEN'
)
demo = gr.load(name=
"avfranco/ArchitectGPT"
, hf_token=token, src=
'spaces'
)
demo.launch(debug=
True
, share=
True
, inbrowser=
True
)