Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -140,29 +140,31 @@ def process_and_query(state, question):
|
|
140 |
|
141 |
# Initialize an empty state variable to store conversation history
|
142 |
state = []
|
|
|
143 |
# Create Gradio interface
|
144 |
-
with gr.
|
145 |
gr.Markdown("## Document Upload and Query System")
|
146 |
|
147 |
with gr.Tab("Upload Files"):
|
148 |
upload = gr.File(file_count="multiple", label="Upload PDF or DOCX files")
|
149 |
upload_button = gr.Button("Upload")
|
150 |
upload_output = gr.Textbox()
|
151 |
-
upload_button.click(
|
152 |
|
153 |
with gr.Tab("Query"):
|
154 |
query_input = gr.Textbox(label="Enter your query")
|
155 |
-
query_button = gr.Button("Search")
|
156 |
query_output = gr.Textbox()
|
157 |
|
158 |
-
# Define function to handle query
|
159 |
-
def
|
160 |
-
|
|
|
|
|
|
|
161 |
|
162 |
# Setup the click event with correct inputs and outputs
|
163 |
-
query_button.
|
164 |
-
|
165 |
-
demo.launch()
|
166 |
|
167 |
|
168 |
|
|
|
140 |
|
141 |
# Initialize an empty state variable to store conversation history
|
142 |
state = []
|
143 |
+
|
144 |
# Create Gradio interface
|
145 |
+
with gr.Interface(fn=None, live=True, capture_session=True) as demo:
|
146 |
gr.Markdown("## Document Upload and Query System")
|
147 |
|
148 |
with gr.Tab("Upload Files"):
|
149 |
upload = gr.File(file_count="multiple", label="Upload PDF or DOCX files")
|
150 |
upload_button = gr.Button("Upload")
|
151 |
upload_output = gr.Textbox()
|
152 |
+
upload_button.click(upload_files, inputs=upload, outputs=upload_output)
|
153 |
|
154 |
with gr.Tab("Query"):
|
155 |
query_input = gr.Textbox(label="Enter your query")
|
|
|
156 |
query_output = gr.Textbox()
|
157 |
|
158 |
+
# Define function to handle query and update state
|
159 |
+
def query_handler():
|
160 |
+
question = query_input.value # Get user's question from the input box
|
161 |
+
state = [] # Initialize or update state as needed
|
162 |
+
response = process_and_query(state, question) # Process query and retrieve response
|
163 |
+
query_output.value = response.get("message", "Error: No response") # Update output textbox
|
164 |
|
165 |
# Setup the click event with correct inputs and outputs
|
166 |
+
query_button = gr.Button("Search", click=query_handler)
|
167 |
+
demo.Interface(layout="vertical").launch()
|
|
|
168 |
|
169 |
|
170 |
|