Spaces:
Sleeping
Sleeping
File size: 9,840 Bytes
56a3465 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 |
import streamlit as st
import pymupdf as fitz
import pyperclip
import clipboard
from utils.audit.audit_doc import audit_descriptif_pdf,audit_text
from utils.audit.rag import setup_rag
import dotenv
from utils.audit.audit_audio import evaluate_audio_quality
from PIL import Image
from io import BytesIO
import st_copy_to_clipboard
import os
# Function to classify file type
def classify_file(file):
if file.type.startswith("image/"):
return "image"
elif file.type == "application/pdf":
return "pdf"
elif file.type == "application/vnd.openxmlformats-officedocument.wordprocessingml.document":
return "word"
elif file.type.startswith("audio/"):
return "audio"
elif file.type.startswith("text/"):
return "text"
else:
return "unknown"
#display content
def display_content_doc(content:dict,col:st):
number_of_pages = len(content)
col.info("Note : Si vous choisissez 0, vous verrez le contenu de toutes les pages")
number = col.number_input("Numéro de page", min_value=0, max_value=number_of_pages, value=0,key="number_page_content")
#0 means all pages
if number > 0:
page : dict = content[f"page_{number-1}"]
option = col.radio("Type de contenu",list(content[f"page_0"].keys()), index=0,horizontal=True)
if option == "images":
if number == 0:
images = [img for page in content.values() for img in page["images"]]
else:
images = page["images"]
col1,col2,col3 = col.columns(3)
for i, (img_bytes, img_width, img_height) in enumerate(images):
try:
if i%3 == 0:
col1.image(Image.open(BytesIO(img_bytes)), caption=f'', width=img_width)
elif i%3 == 1:
col2.image(Image.open(BytesIO(img_bytes)), caption=f'', width=img_width)
else:
col3.image(Image.open(BytesIO(img_bytes)), caption=f'', width=img_width)
except:
pass
elif option == "texte":
if number == 0:
text = "-------------------\n".join([page["texte"] for page in content.values()])
else:
text = page["texte"]
col.code(text,language="text")
elif option == "liens":
if number == 0:
links = [link for page in content.values() for link in page["liens"]]
else:
links = page["liens"]
for i, link in enumerate(links):
col.markdown(f"- {i+1}: [{link['uri']}]({link['uri']}) (page {link['page']})")
elif option == "tableaux":
if number == 0:
tables = [table for page in content.values() for table in page["tableaux"]]
else:
tables = page["tableaux"]
for i, table in enumerate(tables):
col.write(f"Tableau {i+1}")
col.write(table)
def display_content_audio(content:dict,col:st):
st.write("##### Transcription")
st.write(content["transcription"])
# if st.button("📋",key="copy_transcription"):
st_copy_to_clipboard(content["transcription"])
# st.success("Transcription copiée dans le presse-papier")
st.audio(content["audio_data"],sample_rate=content["frame_rate"]*2)
def display_content_text(content,col:st):
st.text_area("Texte",content,height=200)
def handle_display_content(col:st):
audit = st.session_state.audit
type = st.session_state.audit_simplified["type de fichier"]
if type == "pdf":
with col.expander("Contenu"):
display_content_doc(audit["content"],st)
elif type == "audio":
with col.expander("Contenu"):
display_content_audio(audit["content"],col)
elif type == "text":
with col.expander("Contenu"):
display_content_text(audit["content"],col)
def handle_audit(uploaded_file,type:str):
if type == "pdf":
if st.session_state.name_file != uploaded_file.name:
st.session_state.name_file = uploaded_file.name
with st.spinner("Analyse du document..."):
st.session_state.audit = {}
st.session_state.audit = audit_descriptif_pdf(uploaded_file,100)
with st.spinner("Préparation de la DB..."):
vectorstore = setup_rag(type,st.session_state.audit["content"])
st.session_state.vectorstore = vectorstore
st.session_state.graph = None
st.session_state.cr = ""
audit = st.session_state.audit["audit"]
#global audit
audit_simplified = {
"type de fichier": type,
"Nombre de pages": audit["number_of_pages"],
"Nombre d'images": audit["number_of_images"],
"Nombre de liens": audit["number_of_links"],
"Nombre de tableaux": audit["number_of_tables"],
"Nombre de tokens": audit["number_of_tokens"],
"Nombre de mots": audit["number_of_words"],
"Mots clés": audit["key_words"]
}
st.session_state.audit_simplified = audit_simplified
elif type == "audio":
if st.session_state.name_file != uploaded_file.name:
st.session_state.name_file = uploaded_file.name
with st.spinner("Analyse de l'audio..."):
st.session_state.audit = {}
st.session_state.audit = evaluate_audio_quality(uploaded_file)
with st.spinner("Préparation de la DB..."):
vectorstore = setup_rag(type,st.session_state.audit["content"])
st.session_state.vectorstore = vectorstore
st.session_state.graph = None
st.session_state.cr = ""
audit = st.session_state.audit["audit"]
#audit global simplifié
audit_simplified = {
"type de fichier": type,
"Durée": f"{audit['duration']:0.2f} minutes",
"Nombre de mots": audit["number_of_words"],
"Nombre de tokens": audit["number_of_tokens"],
"Volume": f"{audit['volume']:0.2f} dBFS (déciBels Full Scale)",
"SNR": f"{max(audit['SNR'],0):0.2f} dB (Ratio Signal / Bruit)",
}
st.session_state.audit_simplified = audit_simplified
elif type == "text":
text = uploaded_file.read().decode("utf-8")
if st.session_state.name_file != uploaded_file.name:
st.session_state.name_file = uploaded_file.name
with st.spinner("Analyse du texte..."):
st.session_state.audit = {}
st.session_state.audit = audit_text(text)
audit = st.session_state.audit["audit"]
#audit global simplifié
audit_simplified = {
"type de fichier": type,
"Nombre de tokens": audit["number_of_tokens"],
"Nombre de mots": audit["number_of_words"],
"Mots clés": audit["key_words"]
}
st.session_state.audit_simplified = audit_simplified
def display_audit(col:st):
#audit global simplifié
audit_simplified = st.session_state.audit_simplified
audit = st.session_state.audit["audit"]
well_formatted_audit = "Contenus audités\n"
for key, value in audit_simplified.items():
well_formatted_audit += f"- {key}: {value}\n"
col.code(well_formatted_audit)
if audit_simplified["type de fichier"] == "pdf": #cad un type qui contient des pages
#audit par page
with col.expander("Audit par page"):
number = st.number_input("Numéro de page", min_value=1, max_value=audit["number_of_pages"], value=1,key="number_page_audit")
audit_page = audit[f"page_{number-1}"]
audit_page = {
"Nombre d'images": audit_page["number_of_images"],
"Nombre de liens": audit_page["number_of_links"],
"Nombre de tableaux": audit_page["number_of_tables"],
"Nombre de tokens": audit_page["number_of_tokens"],
"Nombre de mots": audit_page["number_of_words"],
}
well_formatted_audit_page = "Audit descriptif\n"
for key, value in audit_page.items():
well_formatted_audit_page += f"- {key}: {value}\n"
st.code(well_formatted_audit_page)
def audit_main():
#st.set_page_config(page_title="Audit des documents", page_icon=":page_with_curl:", layout="wide")
# Streamlit app
st.title("Audit des documents")
notice = "Les formats autorisés sont les suivants :\n- **format texte** : txt, word, pdf\n- **format image** : png, jpg\n- **format audio** : wav, MP3"
col1, col2 = st.columns([4, 3])
col1.markdown(notice)
if "audit" not in st.session_state:
st.session_state.audit = {}
if "name_file" not in st.session_state:
st.session_state.name_file = ""
if "audit_simplified" not in st.session_state:
st.session_state.audit_simplified = {}
if "vectorstore" not in st.session_state:
st.session_state.vectorstore = None
if "cr" not in st.session_state:
st.session_state.cr = ""
if "graph" not in st.session_state:
st.session_state.graph = None
# File uploader
uploaded_file = col1.file_uploader("Télécharger un ou plusieurs documents")
if uploaded_file is not None:
type = classify_file(uploaded_file)
handle_audit(uploaded_file,type)
col1.write(f"Type de fichier: {type}")
col1.write("### Synthèse audit de(s) document(s) téléchargé(s)")
if "audit" in st.session_state and st.session_state.audit != {}:
display_audit(col1)
handle_display_content(col2)
#init graph and cr
audit_main()
|