Spaces:
Running
Running
Karthikeyan
commited on
Commit
·
8009537
1
Parent(s):
0ff6f53
Update app.py
Browse files
app.py
CHANGED
@@ -103,14 +103,14 @@ with gr.Blocks(css="style.css",theme=gr.themes.Soft()) as demo:
|
|
103 |
|
104 |
gr.Markdown("**Upload your file**")
|
105 |
with gr.Row(elem_id="row-flex"):
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
with gr.Column(scale=0.90, min_width=160):
|
115 |
file_output = gr.File(elem_classes="filenameshow")
|
116 |
with gr.Column(scale=0.10, min_width=160):
|
@@ -124,7 +124,7 @@ with gr.Blocks(css="style.css",theme=gr.themes.Soft()) as demo:
|
|
124 |
with gr.Column(scale=1, min_width=0):
|
125 |
answer = gr.Textbox(value="",label='Answer Box :',show_label=True, placeholder="",lines=5)
|
126 |
|
127 |
-
|
128 |
upload_button.upload(upload_file, upload_button, [file_output,state])
|
129 |
user_question.submit(answer_question, [user_question, state], [answer])
|
130 |
|
|
|
103 |
|
104 |
gr.Markdown("**Upload your file**")
|
105 |
with gr.Row(elem_id="row-flex"):
|
106 |
+
with gr.Column(scale=0.85):
|
107 |
+
file_url = gr.Textbox(
|
108 |
+
value="",
|
109 |
+
label="Upload your file",
|
110 |
+
placeholder="Enter a url",
|
111 |
+
show_label=False,
|
112 |
+
visible=False
|
113 |
+
)
|
114 |
with gr.Column(scale=0.90, min_width=160):
|
115 |
file_output = gr.File(elem_classes="filenameshow")
|
116 |
with gr.Column(scale=0.10, min_width=160):
|
|
|
124 |
with gr.Column(scale=1, min_width=0):
|
125 |
answer = gr.Textbox(value="",label='Answer Box :',show_label=True, placeholder="",lines=5)
|
126 |
|
127 |
+
file_url.submit(upload_via_url, file_url, [file_output, state])
|
128 |
upload_button.upload(upload_file, upload_button, [file_output,state])
|
129 |
user_question.submit(answer_question, [user_question, state], [answer])
|
130 |
|