redael commited on
Commit
44092df
·
verified ·
1 Parent(s): a061e77

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -1,9 +1,14 @@
 
 
1
  import gradio as gr
2
  from huggingface_hub import InferenceClient
3
 
4
  """
5
  For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
6
  """
 
 
 
7
  client = InferenceClient("redael/model_udc")
8
 
9
 
 
1
+ import os
2
+ os.system('sh setup.sh')
3
  import gradio as gr
4
  from huggingface_hub import InferenceClient
5
 
6
  """
7
  For more information on `huggingface_hub` Inference API support, please check the docs: https://huggingface.co/docs/huggingface_hub/v0.22.2/en/guides/inference
8
  """
9
+ import os
10
+ os.system('sh setup.sh')
11
+
12
  client = InferenceClient("redael/model_udc")
13
 
14