fomext commited on
Commit
25b5e4c
·
verified ·
1 Parent(s): e72d1aa

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -12
app.py CHANGED
@@ -76,18 +76,12 @@ def respond(message, history):
76
  t.join()
77
 
78
 
79
- with gr.Blocks() as demo:
80
- # Sign-in is required so ZeroGPU can recognize *your* Pro account from
81
- # inside the embedded iframe and apply your 40-min daily quota instead
82
- # of the anonymous-visitor quota (~3 min).
83
- gr.LoginButton()
84
-
85
- gr.ChatInterface(
86
- fn=respond,
87
- type="messages",
88
- title="Qwen3-30B-A3B",
89
- description="ZeroGPU-backed Qwen3-30B-A3B chat",
90
- )
91
 
92
  if __name__ == "__main__":
93
  demo.launch()
 
76
  t.join()
77
 
78
 
79
+ demo = gr.ChatInterface(
80
+ fn=respond,
81
+ type="messages",
82
+ title="Qwen3-30B-A3B",
83
+ description="ZeroGPU-backed Qwen3-30B-A3B chat",
84
+ )
 
 
 
 
 
 
85
 
86
  if __name__ == "__main__":
87
  demo.launch()