Spaces:
Running
Running
Update app.py
Browse files
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,
|