Update legal_document_analysis.py
Browse files- legal_document_analysis.py +10 -20
legal_document_analysis.py
CHANGED
@@ -15,7 +15,6 @@ from fpdf import FPDF
|
|
15 |
import getpass
|
16 |
import pandas as pd
|
17 |
import seaborn as sns
|
18 |
-
import tempfile
|
19 |
|
20 |
# Load environment variables from .env file
|
21 |
load_dotenv()
|
@@ -338,13 +337,6 @@ def plot_risk_heatmap(detected_risks):
|
|
338 |
def base64_to_image(data):
|
339 |
return io.BytesIO(base64.b64decode(data))
|
340 |
|
341 |
-
# Function to save base64 images to temporary files
|
342 |
-
def save_base64_image(base64_data):
|
343 |
-
img_data = base64.b64decode(base64_data)
|
344 |
-
with tempfile.NamedTemporaryFile(delete=False, suffix=".png") as temp_file:
|
345 |
-
temp_file.write(img_data)
|
346 |
-
return temp_file.name
|
347 |
-
|
348 |
# Function to generate PDF document with improved aesthetics
|
349 |
def generate_pdf_analysis(document_text, summary, detected_clauses, hidden_obligations, detected_risks, risk_assessment_matrix, risk_level_distribution, risks_by_type, stacked_bar_chart, risk_heatmap):
|
350 |
pdf = FPDF()
|
@@ -379,15 +371,15 @@ def generate_pdf_analysis(document_text, summary, detected_clauses, hidden_oblig
|
|
379 |
pdf.ln(10)
|
380 |
|
381 |
# Add visualizations for risks
|
382 |
-
pdf.image(
|
383 |
-
pdf.image(
|
384 |
pdf.ln(60)
|
385 |
|
386 |
-
pdf.image(
|
387 |
-
pdf.image(
|
388 |
pdf.ln(60)
|
389 |
|
390 |
-
pdf.image(
|
391 |
pdf.ln(10)
|
392 |
|
393 |
# Footer
|
@@ -395,12 +387,7 @@ def generate_pdf_analysis(document_text, summary, detected_clauses, hidden_oblig
|
|
395 |
pdf.set_font("Arial", 'I', 8)
|
396 |
pdf.cell(0, 10, f'Page {pdf.page_no()}', 0, 0, 'C')
|
397 |
|
398 |
-
|
399 |
-
pdf_buffer = io.BytesIO()
|
400 |
-
pdf.output(pdf_buffer, 'F') # Save to BytesIO
|
401 |
-
pdf_buffer.seek(0)
|
402 |
-
|
403 |
-
return pdf_buffer
|
404 |
|
405 |
# Function to handle chatbot interaction
|
406 |
def chatbot_query(user_input):
|
@@ -603,7 +590,10 @@ def display_legal_analysis_page():
|
|
603 |
|
604 |
# Download PDF Analysis Button
|
605 |
st.subheader("Download Analysis as PDF")
|
606 |
-
pdf_buffer =
|
|
|
|
|
|
|
607 |
|
608 |
# Add download button for PDF
|
609 |
st.download_button(
|
|
|
15 |
import getpass
|
16 |
import pandas as pd
|
17 |
import seaborn as sns
|
|
|
18 |
|
19 |
# Load environment variables from .env file
|
20 |
load_dotenv()
|
|
|
337 |
def base64_to_image(data):
|
338 |
return io.BytesIO(base64.b64decode(data))
|
339 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
340 |
# Function to generate PDF document with improved aesthetics
|
341 |
def generate_pdf_analysis(document_text, summary, detected_clauses, hidden_obligations, detected_risks, risk_assessment_matrix, risk_level_distribution, risks_by_type, stacked_bar_chart, risk_heatmap):
|
342 |
pdf = FPDF()
|
|
|
371 |
pdf.ln(10)
|
372 |
|
373 |
# Add visualizations for risks
|
374 |
+
pdf.image(base64_to_image(risk_assessment_matrix), x=10, y=pdf.get_y(), w=90)
|
375 |
+
pdf.image(base64_to_image(risk_level_distribution), x=110, y=pdf.get_y()-50, w=90) # Position next to the first image
|
376 |
pdf.ln(60)
|
377 |
|
378 |
+
pdf.image(base64_to_image(risks_by_type), x=10, y=pdf.get_y(), w=90)
|
379 |
+
pdf.image(base64_to_image(stacked_bar_chart), x=110, y=pdf.get_y()-50, w=90) # Position next to the previous image
|
380 |
pdf.ln(60)
|
381 |
|
382 |
+
pdf.image(base64_to_image(risk_heatmap), x=10, y=pdf.get_y(), w=190) # Fit image to width
|
383 |
pdf.ln(10)
|
384 |
|
385 |
# Footer
|
|
|
387 |
pdf.set_font("Arial", 'I', 8)
|
388 |
pdf.cell(0, 10, f'Page {pdf.page_no()}', 0, 0, 'C')
|
389 |
|
390 |
+
return pdf
|
|
|
|
|
|
|
|
|
|
|
391 |
|
392 |
# Function to handle chatbot interaction
|
393 |
def chatbot_query(user_input):
|
|
|
590 |
|
591 |
# Download PDF Analysis Button
|
592 |
st.subheader("Download Analysis as PDF")
|
593 |
+
pdf_buffer = io.BytesIO()
|
594 |
+
pdf = generate_pdf_analysis(document_text, summary, detected_clauses, hidden_obligations, detected_risks, risk_assessment_matrix, risk_level_distribution, risks_by_type, stacked_bar_chart, risk_heatmap)
|
595 |
+
pdf.output(pdf_buffer, 'F')
|
596 |
+
pdf_buffer.seek(0)
|
597 |
|
598 |
# Add download button for PDF
|
599 |
st.download_button(
|