Spaces:
Sleeping
Sleeping
made the status box bigger
Browse files- app.py +3 -1
- requirements.txt +1 -1
app.py
CHANGED
|
@@ -168,7 +168,9 @@ with gr.Blocks(title="PDF RAG Chatbot") as demo:
|
|
| 168 |
status_text = gr.Textbox(
|
| 169 |
label="Status",
|
| 170 |
value="Upload a PDF to get started.",
|
| 171 |
-
interactive=False
|
|
|
|
|
|
|
| 172 |
)
|
| 173 |
|
| 174 |
clear_btn = gr.Button("Reset Chat", variant="stop")
|
|
|
|
| 168 |
status_text = gr.Textbox(
|
| 169 |
label="Status",
|
| 170 |
value="Upload a PDF to get started.",
|
| 171 |
+
interactive=False,
|
| 172 |
+
lines=3,
|
| 173 |
+
max_lines=5
|
| 174 |
)
|
| 175 |
|
| 176 |
clear_btn = gr.Button("Reset Chat", variant="stop")
|
requirements.txt
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
gradio
|
| 2 |
langchain==0.3.7
|
| 3 |
langchain-groq==0.2.1
|
| 4 |
langchain-community==0.3.5
|
|
|
|
| 1 |
+
gradio
|
| 2 |
langchain==0.3.7
|
| 3 |
langchain-groq==0.2.1
|
| 4 |
langchain-community==0.3.5
|