iisadia commited on
Commit
9e4f7fc
Β·
verified Β·
1 Parent(s): 2861eea

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -4
app.py CHANGED
@@ -263,22 +263,20 @@ def main():
263
  with col2:
264
  if st.button("πŸ“„ Generate PDF Report", type="secondary", use_container_width=True):
265
  with st.spinner("Generating PDF..."):
266
- pdf_report = generate_pdf_report(st.session_state.results)
267
  with open(pdf_report, "rb") as f:
268
  st.download_button(
269
  label="⬇️ Download Full Report",
270
  data=f,
271
  file_name="Requirement_Analysis_Report.pdf",
272
  mime="application/pdf",
273
- use_container_width=True,
274
- type="primary"
275
  )
276
 
277
  # Footer
278
  st.markdown("---")
279
  st.markdown("""
280
  <div style="text-align: center; color: #666; margin-top: 3rem;">
281
- <p>AI-Powered Requirement Analysis System β€’ Final Year Project β€’ Computer Science Department</p>
282
  <p>πŸš€ Powered by Mistral AI & Groq β€’ πŸ› οΈ Developed by Team Four</p>
283
  </div>
284
  """, unsafe_allow_html=True)
 
263
  with col2:
264
  if st.button("πŸ“„ Generate PDF Report", type="secondary", use_container_width=True):
265
  with st.spinner("Generating PDF..."):
266
+ pdf_report = generate_pdf_report(results)
267
  with open(pdf_report, "rb") as f:
268
  st.download_button(
269
  label="⬇️ Download Full Report",
270
  data=f,
271
  file_name="Requirement_Analysis_Report.pdf",
272
  mime="application/pdf",
 
 
273
  )
274
 
275
  # Footer
276
  st.markdown("---")
277
  st.markdown("""
278
  <div style="text-align: center; color: #666; margin-top: 3rem;">
279
+ <p>AI-Powered Requirement Analysis System</p>
280
  <p>πŸš€ Powered by Mistral AI & Groq β€’ πŸ› οΈ Developed by Team Four</p>
281
  </div>
282
  """, unsafe_allow_html=True)