Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -100,9 +100,9 @@ with gr.Blocks() as demo:
|
|
| 100 |
# File uploader
|
| 101 |
file_input = gr.File(label="Upload your PDF", file_types=[".pdf"])
|
| 102 |
# Status text
|
| 103 |
-
status = gr.
|
| 104 |
|
| 105 |
-
chatbot = gr.
|
| 106 |
msg=gr.Textbox(label="Ask anything related to pdf...")
|
| 107 |
clear = gr.Button("Clear chat")
|
| 108 |
|
|
|
|
| 100 |
# File uploader
|
| 101 |
file_input = gr.File(label="Upload your PDF", file_types=[".pdf"])
|
| 102 |
# Status text
|
| 103 |
+
status = gr.Textbox(label="Status", interactive=False)
|
| 104 |
|
| 105 |
+
chatbot = gr.Chatbot(label="Chat history!!!")
|
| 106 |
msg=gr.Textbox(label="Ask anything related to pdf...")
|
| 107 |
clear = gr.Button("Clear chat")
|
| 108 |
|