Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -88,14 +88,12 @@ def analyze_github_repo(repo_input, github_token=None):
|
|
88 |
traceback.print_exc()
|
89 |
yield progress_md + error_message, gr.update(visible=True), gr.update(visible=False)
|
90 |
|
91 |
-
html = """
|
92 |
-
<p>Build and run your identified workflows with <a href="https://patched.codes">patched</a></p>
|
93 |
-
<iframe src="https://ghbtns.com/github-btn.html?user=patched-codes&repo=patchwork&type=star&count=true&size=large" frameborder="0" scrolling="0" width="170" height="30" title="GitHub"></iframe>
|
94 |
"""
|
95 |
# Define the Gradio interface
|
96 |
with gr.Blocks() as app:
|
97 |
gr.Markdown("# Patched GitHub Repo Analyzer")
|
98 |
-
|
99 |
gr.HTML(html)
|
100 |
|
101 |
repo_input = gr.Textbox(label="Enter GitHub Repository Slug or URL")
|
|
|
88 |
traceback.print_exc()
|
89 |
yield progress_md + error_message, gr.update(visible=True), gr.update(visible=False)
|
90 |
|
91 |
+
html = """<iframe src="https://ghbtns.com/github-btn.html?user=patched-codes&repo=patchwork&type=star&count=true&size=large" frameborder="0" scrolling="0" width="170" height="30" title="GitHub"></iframe>
|
|
|
|
|
92 |
"""
|
93 |
# Define the Gradio interface
|
94 |
with gr.Blocks() as app:
|
95 |
gr.Markdown("# Patched GitHub Repo Analyzer")
|
96 |
+
gr.Markdown("## Build and run your identified workflows with [patched](https://patched.codes)")
|
97 |
gr.HTML(html)
|
98 |
|
99 |
repo_input = gr.Textbox(label="Enter GitHub Repository Slug or URL")
|