Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Tony369
/
deepsite-clone
like
0
Running
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
55fada1
deepsite-clone
/
app.py
Tony369
Update app.py
55fada1
verified
5 months ago
raw
Copy download link
history
blame
Safe
230 Bytes
import
gradio
as
gr
def
generate_website
(
prompt
):
# DeepSite's logic (calls DeepSeek V3 API)
return
html_code
interface = gr.Interface(
fn=generate_website,
inputs=
"text"
,
outputs=
"html"
)
interface.launch()