Update app.py
Browse files
app.py
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
import subprocess
|
|
|
|
| 2 |
|
| 3 |
def clone_github_repo(repo_url, destination_folder=None):
|
| 4 |
"""
|
|
@@ -21,3 +22,4 @@ def clone_github_repo(repo_url, destination_folder=None):
|
|
| 21 |
# 使用例
|
| 22 |
repo_url = "https://github.com/NebulaServices/Nebula"
|
| 23 |
clone_github_repo(repo_url)
|
|
|
|
|
|
| 1 |
import subprocess
|
| 2 |
+
import gradio
|
| 3 |
|
| 4 |
def clone_github_repo(repo_url, destination_folder=None):
|
| 5 |
"""
|
|
|
|
| 22 |
# 使用例
|
| 23 |
repo_url = "https://github.com/NebulaServices/Nebula"
|
| 24 |
clone_github_repo(repo_url)
|
| 25 |
+
gradio.load()
|