Ryan2219 commited on
Commit
557ce90
·
verified ·
1 Parent(s): 6481f5a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -3
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