Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
|
@@ -6,9 +6,9 @@ PARQUET_PATH = "v3_repos.parquet"
|
|
| 6 |
|
| 7 |
con = duckdb.connect()
|
| 8 |
|
| 9 |
-
|
| 10 |
-
<img src="https://huggingface.co/spaces/HuggingFaceCode/in-the-stack/resolve/main/huggy.png" style="width: 256px;">
|
| 11 |
|
|
|
|
| 12 |
# Am I in The Stack?
|
| 13 |
|
| 14 |
[The Stack v3](https://huggingface.co/datasets/HuggingFaceCode/stack-v3-train) is \
|
|
@@ -84,6 +84,7 @@ with gr.Blocks() as demo:
|
|
| 84 |
with gr.Row():
|
| 85 |
_, col, _ = gr.Column(scale=1), gr.Column(scale=6), gr.Column(scale=1)
|
| 86 |
with col:
|
|
|
|
| 87 |
gr.Markdown(text)
|
| 88 |
username = gr.Text("", label="Your GitHub username:")
|
| 89 |
check_button = gr.Button("Check!")
|
|
|
|
| 6 |
|
| 7 |
con = duckdb.connect()
|
| 8 |
|
| 9 |
+
huggy_html = '<img src="https://huggingface.co/spaces/HuggingFaceCode/in-the-stack/resolve/main/huggy.png" style="width: 20%;">'
|
|
|
|
| 10 |
|
| 11 |
+
text = """\
|
| 12 |
# Am I in The Stack?
|
| 13 |
|
| 14 |
[The Stack v3](https://huggingface.co/datasets/HuggingFaceCode/stack-v3-train) is \
|
|
|
|
| 84 |
with gr.Row():
|
| 85 |
_, col, _ = gr.Column(scale=1), gr.Column(scale=6), gr.Column(scale=1)
|
| 86 |
with col:
|
| 87 |
+
gr.HTML(huggy_html)
|
| 88 |
gr.Markdown(text)
|
| 89 |
username = gr.Text("", label="Your GitHub username:")
|
| 90 |
check_button = gr.Button("Check!")
|