ce05573 55fada1 ce05573 55fada1
1
2
3
4
5
6
7
8
9
10
11
12
13
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()