seawolf2357 commited on
Commit
4c4fe7b
ยท
verified ยท
1 Parent(s): ae58a57

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -1
app.py CHANGED
@@ -225,7 +225,18 @@ with gr.Blocks(css_paths="app.css") as demo:
225
  inputs=[],
226
  outputs=[input]
227
  )
228
-
 
 
 
 
 
 
 
 
 
 
 
229
 
230
  # Drawer ์ปดํฌ๋„ŒํŠธ๋“ค
231
  with antd.Drawer(open=False, title="code", placement="left", width="750px") as code_drawer:
 
225
  inputs=[],
226
  outputs=[input]
227
  )
228
+
229
+ example_btn5 = antd.Button(
230
+ "ํ…์ŠคํŠธ๋กœ ์Œ์„ฑ ์ƒ์„ฑ ๋ฐ ์กฐ์ •์ •",
231
+ type="default",
232
+ block=True,
233
+ size="large"
234
+ )
235
+ example_btn5.click(
236
+ fn=lambda: "ํ…์ŠคํŠธ๋ฅผ ์Œ์„ฑ์œผ๋กœ ๋ณ€ํ™˜ํ•˜๊ณ , ์Œ์„ฑ ํŒŒ๋ผ๋ฏธํ„ฐ๋ฅผ ์‹ค์‹œ๊ฐ„์œผ๋กœ ์กฐ์ •ํ•  ์ˆ˜ ์žˆ๋Š” ์ธํ„ฐํŽ˜์ด์Šค๋ฅผ ์ œ๊ณตํ•˜์„ธ์š”.",
237
+ inputs=[],
238
+ outputs=[input]
239
+ )
240
 
241
  # Drawer ์ปดํฌ๋„ŒํŠธ๋“ค
242
  with antd.Drawer(open=False, title="code", placement="left", width="750px") as code_drawer: