Update app.py
Browse files
app.py
CHANGED
@@ -112,18 +112,12 @@ with gr.Blocks(theme="Nymbo/Alyx_Theme") as demo:
|
|
112 |
with gr.Tab("Indexing"):
|
113 |
pdf_input = gr.File(label="Upload PDF", file_types=[".pdf"])
|
114 |
index_button = gr.Button("Index PDF")
|
115 |
-
load_sample = gr.Button("
|
116 |
index_output = gr.Textbox(label="Indexing Status")
|
117 |
index_button.click(index_pdf, inputs=pdf_input, outputs=index_output)
|
118 |
load_sample.click(load_sample_pdf, inputs=None, outputs=index_output)
|
119 |
|
120 |
with gr.Tab("Chatbot"):
|
121 |
-
# query_input = gr.Textbox(label="Enter your question")
|
122 |
-
# query_button = gr.Button("Submit")
|
123 |
-
# query_output = gr.Textbox(label="Response")
|
124 |
-
|
125 |
-
# query_button.click(chatbot_query, inputs=query_input, outputs=query_output)
|
126 |
-
|
127 |
gr.ChatInterface(
|
128 |
fn=generate_response,
|
129 |
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
|
|
|
112 |
with gr.Tab("Indexing"):
|
113 |
pdf_input = gr.File(label="Upload PDF", file_types=[".pdf"])
|
114 |
index_button = gr.Button("Index PDF")
|
115 |
+
load_sample = gr.Button("Alternatively, Load and Index [Attention Is All You Need.pdf] as a Sample")
|
116 |
index_output = gr.Textbox(label="Indexing Status")
|
117 |
index_button.click(index_pdf, inputs=pdf_input, outputs=index_output)
|
118 |
load_sample.click(load_sample_pdf, inputs=None, outputs=index_output)
|
119 |
|
120 |
with gr.Tab("Chatbot"):
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
gr.ChatInterface(
|
122 |
fn=generate_response,
|
123 |
chatbot=gr.Chatbot(show_label=False, show_share_button=False, show_copy_button=True, likeable=True, layout="panel"),
|