Spaces:
Running
Running
from docs import generate_docs | |
import gradio as gr | |
# Define the Gradio Blocks interface. | |
with gr.Blocks(theme=gr.themes.Origin(primary_hue="red", secondary_hue="pink"), title="GitHub Repo Documentation Generator") as demo: | |
gr.Markdown("# GitHub Repo Documentation Generator") | |
gr.Markdown( | |
"Enter a GitHub repository URL or ID (in the format `user/repo`) below. " | |
"This tool fetches repository details and uses the Groq API to generate documentation." | |
) | |
repo_id_input = gr.Textbox( | |
label="GitHub Repository URL or ID", | |
placeholder="https://github.com/octocat/Hello-World or octocat/Hello-World", | |
) | |
output_box = gr.Textbox( | |
label="Generated Documentation", | |
lines=20, | |
interactive=True, | |
) | |
generate_button = gr.Button("Generate Documentation") | |
# When the button is clicked, call the generate_docs function. | |
generate_button.click(fn=generate_docs, inputs=repo_id_input, outputs=output_box) | |
# Launch the Gradio app. | |
demo.launch(debug=True) |