ldhldh commited on
Commit
1ba73e4
·
1 Parent(s): 98df8de

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -192,5 +192,12 @@ with gr.Blocks() as demo:
192
  outputs="text",
193
  description="get_coin, id로 잔여 코인(행동력) 반환. \n /run/predict_6",
194
  )
 
 
 
 
 
 
 
195
 
196
  demo.queue(max_size=32).launch(enable_queue=True)
 
192
  outputs="text",
193
  description="get_coin, id로 잔여 코인(행동력) 반환. \n /run/predict_6",
194
  )
195
+
196
+ gd = gr.Interface(
197
+ fn=get_data,
198
+ inputs=[],
199
+ outputs="text",
200
+ description="get_data, 시각화용 모든 데이터 반환. gpu기여 목록, total/used, chain \n /run/predict_6",
201
+ )
202
 
203
  demo.queue(max_size=32).launch(enable_queue=True)