Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -71,8 +71,8 @@ title = """
|
|
71 |
<div style="text-align: center;max-width: 700px;">
|
72 |
<h1>Chatbot for PDFs - GPT-4</h1>
|
73 |
<p style="text-align: center;">Upload a .PDF, click the "Load PDF to LangChain" button, <br />
|
74 |
-
|
75 |
-
The app is set to store chat
|
76 |
</div>
|
77 |
"""
|
78 |
|
@@ -86,7 +86,7 @@ with gr.Blocks(css=css) as demo:
|
|
86 |
pdf_doc = gr.File(label="Load a pdf", file_types=['.pdf'], type="file")
|
87 |
with gr.Row():
|
88 |
langchain_status = gr.Textbox(label="Status", placeholder="", interactive=False)
|
89 |
-
load_pdf = gr.Button("Load
|
90 |
|
91 |
chatbot = gr.Chatbot([], elem_id="chatbot").style(height=350)
|
92 |
question = gr.Textbox(label="Question", placeholder="Type your question and hit Enter ")
|
|
|
71 |
<div style="text-align: center;max-width: 700px;">
|
72 |
<h1>Chatbot for PDFs - GPT-4</h1>
|
73 |
<p style="text-align: center;">Upload a .PDF, click the "Load PDF to LangChain" button, <br />
|
74 |
+
Wait for the Status to show Ready, start typing your questions. <br />
|
75 |
+
The app is set to store chat-history and is built on GPT-4</p>
|
76 |
</div>
|
77 |
"""
|
78 |
|
|
|
86 |
pdf_doc = gr.File(label="Load a pdf", file_types=['.pdf'], type="file")
|
87 |
with gr.Row():
|
88 |
langchain_status = gr.Textbox(label="Status", placeholder="", interactive=False)
|
89 |
+
load_pdf = gr.Button("Load PDF to LangChain")
|
90 |
|
91 |
chatbot = gr.Chatbot([], elem_id="chatbot").style(height=350)
|
92 |
question = gr.Textbox(label="Question", placeholder="Type your question and hit Enter ")
|