Update app.py
Browse files
app.py
CHANGED
|
@@ -385,14 +385,16 @@ with st.sidebar:
|
|
| 385 |
"Upload a construction drawing PDF and ask compliance questions. "
|
| 386 |
"The system uses **agentic vision** + **NYC code database** to "
|
| 387 |
"verify code compliance."
|
| 388 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 389 |
"During Business Hours Gemini servers see high traffic."
|
| 390 |
"This may slow or crash the application, this is a Gemini issue,"
|
| 391 |
"if a response takes more than 1 minute try again later."
|
| 392 |
)
|
| 393 |
|
| 394 |
-
st.divider()
|
| 395 |
-
|
| 396 |
# PDF upload
|
| 397 |
uploaded_file = st.file_uploader("Upload Drawing PDF", type=["pdf"])
|
| 398 |
|
|
|
|
| 385 |
"Upload a construction drawing PDF and ask compliance questions. "
|
| 386 |
"The system uses **agentic vision** + **NYC code database** to "
|
| 387 |
"verify code compliance."
|
| 388 |
+
)
|
| 389 |
+
|
| 390 |
+
st.divider()
|
| 391 |
+
|
| 392 |
+
st.markdown(
|
| 393 |
"During Business Hours Gemini servers see high traffic."
|
| 394 |
"This may slow or crash the application, this is a Gemini issue,"
|
| 395 |
"if a response takes more than 1 minute try again later."
|
| 396 |
)
|
| 397 |
|
|
|
|
|
|
|
| 398 |
# PDF upload
|
| 399 |
uploaded_file = st.file_uploader("Upload Drawing PDF", type=["pdf"])
|
| 400 |
|