Spaces:
Sleeping
Sleeping
Neopy
commited on
Update app.py
Browse files
app.py
CHANGED
|
@@ -13,6 +13,7 @@ with gr.Blocks(theme=gr.themes.Origin(primary_hue="red", secondary_hue="pink"),
|
|
| 13 |
"Enter a GitHub repository URL or ID (in the format `user/repo`) below. "
|
| 14 |
"This tool fetches repository details and uses the Groq API to generate documentation."
|
| 15 |
)
|
|
|
|
| 16 |
with gr.Row():
|
| 17 |
repo_id_input = gr.Textbox(
|
| 18 |
label="GitHub Repository URL or ID",
|
|
@@ -24,6 +25,7 @@ with gr.Blocks(theme=gr.themes.Origin(primary_hue="red", secondary_hue="pink"),
|
|
| 24 |
lines=20,
|
| 25 |
interactive=True,
|
| 26 |
)
|
|
|
|
| 27 |
|
| 28 |
# When the button is clicked, call the generate_docs function.
|
| 29 |
generate_button.click(fn=generate_docs, inputs=repo_id_input, outputs=output_box)
|
|
|
|
| 13 |
"Enter a GitHub repository URL or ID (in the format `user/repo`) below. "
|
| 14 |
"This tool fetches repository details and uses the Groq API to generate documentation."
|
| 15 |
)
|
| 16 |
+
gr.Markdown("liek this spaces if this spaces helpfull")
|
| 17 |
with gr.Row():
|
| 18 |
repo_id_input = gr.Textbox(
|
| 19 |
label="GitHub Repository URL or ID",
|
|
|
|
| 25 |
lines=20,
|
| 26 |
interactive=True,
|
| 27 |
)
|
| 28 |
+
gr.Markdown("<center>Made with ❤ by [NeoPy](https://huggingface.co/theNeofr)</center>")
|
| 29 |
|
| 30 |
# When the button is clicked, call the generate_docs function.
|
| 31 |
generate_button.click(fn=generate_docs, inputs=repo_id_input, outputs=output_box)
|