djamel-esi commited on
Commit
cbc6922
·
verified ·
1 Parent(s): 2090273

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py CHANGED
@@ -6,6 +6,15 @@ For more information on `huggingface_hub` Inference API support, please check th
6
  """
7
  client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
8
 
 
 
 
 
 
 
 
 
 
9
 
10
  def respond(
11
  message,
 
6
  """
7
  client = InferenceClient("HuggingFaceH4/zephyr-7b-beta")
8
 
9
+ import os
10
+ os.system("git clone https://github.com/TencentARC/InstantMesh")
11
+ command = "mv InstantMesh/* ."
12
+
13
+ result = subprocess.run(command, shell=True, check=True)
14
+ if result:
15
+ print('files moved')
16
+ else:
17
+ print('files not moved')
18
 
19
  def respond(
20
  message,