Update app.py
Browse files
app.py
CHANGED
@@ -50,8 +50,8 @@ with gr.Blocks(theme="gradio/soft", title="repo2txt") as demo:
|
|
50 |
|
51 |
with gr.Row():
|
52 |
txt_output = gr.File(label="Download txt file")
|
53 |
-
|
54 |
-
|
55 |
|
56 |
process_button.click(process_repository, inputs=repo_url_input, outputs=[result_output, txt_output])
|
57 |
|
|
|
50 |
|
51 |
with gr.Row():
|
52 |
txt_output = gr.File(label="Download txt file")
|
53 |
+
with gr.Row():
|
54 |
+
result_output = gr.Textbox(label="Result",lines=1,placeholder="Processing result will be shown here")
|
55 |
|
56 |
process_button.click(process_repository, inputs=repo_url_input, outputs=[result_output, txt_output])
|
57 |
|