Spaces:
Running
Running
Neodpy
commited on
Update app.py
Browse files
app.py
CHANGED
|
@@ -127,7 +127,11 @@ with gr.Blocks() as demo:
|
|
| 127 |
label="GitHub Repository URL or ID",
|
| 128 |
placeholder="https://github.com/octocat/Hello-World or octocat/Hello-World",
|
| 129 |
)
|
| 130 |
-
output_box = gr.Textbox(
|
|
|
|
|
|
|
|
|
|
|
|
|
| 131 |
generate_button = gr.Button("Generate Documentation")
|
| 132 |
|
| 133 |
# When the button is clicked, call the generate_docs function.
|
|
|
|
| 127 |
label="GitHub Repository URL or ID",
|
| 128 |
placeholder="https://github.com/octocat/Hello-World or octocat/Hello-World",
|
| 129 |
)
|
| 130 |
+
output_box = gr.Textbox(
|
| 131 |
+
label="Generated Documentation",
|
| 132 |
+
lines=20,
|
| 133 |
+
interactive=True,
|
| 134 |
+
)
|
| 135 |
generate_button = gr.Button("Generate Documentation")
|
| 136 |
|
| 137 |
# When the button is clicked, call the generate_docs function.
|