Spaces:
Runtime error
Runtime error
File size: 14,394 Bytes
9bc9c3c |
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 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 |
import gradio as gr
import os
import shutil
import uuid
import urllib.parse
import base64
import requests
from langfuse.callback import CallbackHandler
from langchain_core.messages import HumanMessage
from nodes.core import graph
# --- Configuration & Setup ---
LANGFUSE_SECRET_KEY = os.getenv("LANGFUSE_SECRET_KEY")
LANGFUSE_PUBLIC_KEY = os.getenv("LANGFUSE_PUBLIC_KEY")
LANGFUSE_HOST = os.getenv("LANGFUSE_HOST", "http://localhost:3000")
BASE_DIR = os.path.dirname(os.path.abspath(__file__))
FILES_DIR = os.path.join(BASE_DIR, "files")
OUTPUT_LLM_DIR = os.path.join(BASE_DIR, "output_llm")
os.makedirs(FILES_DIR, exist_ok=True)
os.makedirs(OUTPUT_LLM_DIR, exist_ok=True)
# Initialize Langfuse CallbackHandler
langfuse_handler = None
if LANGFUSE_PUBLIC_KEY and LANGFUSE_SECRET_KEY:
try:
langfuse_handler = CallbackHandler(
public_key=LANGFUSE_PUBLIC_KEY,
secret_key=LANGFUSE_SECRET_KEY,
host=LANGFUSE_HOST
)
print("β
Langfuse Tracing ENABLED.")
except Exception as e:
print(f"β Failed to initialize Langfuse Handler: {e}. Tracing will be disabled.")
else:
print("β οΈ Langfuse Tracing DISABLED (API keys or host not fully configured).")
# CSS semplificato
custom_css = """
.gradio-container {
font-family: 'Segoe UI', system-ui, sans-serif;
}
.main-title {
text-align: center;
color: #1f2937;
margin-bottom: 2rem;
}
.section-header {
color: #374151;
font-weight: 600;
margin: 1rem 0 0.5rem 0;
border-bottom: 2px solid #e5e7eb;
padding-bottom: 0.5rem;
}
.status-success { color: #059669; font-weight: 500; }
.status-error { color: #dc2626; font-weight: 500; }
.status-processing { color: #2563eb; font-weight: 500; }
.drawio-preview {
border: 2px solid #d1d5db;
border-radius: 8px;
background: #f9fafb;
padding: 1rem;
text-align: center;
}
.xml-container {
background: #f8fafc;
border: 1px solid #e2e8f0;
border-radius: 6px;
font-family: 'Courier New', monospace;
font-size: 0.9rem;
}
"""
def xml_to_svg_image(xml_content):
"""Converte XML draw.io in immagine SVG usando l'API di diagrams.net"""
if not xml_content or xml_content.startswith("Error"):
return None
try:
# Usa l'API pubblica di diagrams.net per convertire XML in SVG
url = "https://convert.diagrams.net/convert"
data = {
'format': 'svg',
'xml': xml_content,
'bg': 'white'
}
response = requests.post(url, data=data, timeout=30)
if response.status_code == 200:
# CORREZIONE: Usa un nome file unico per evitare conflitti
svg_filename = f"diagram_{uuid.uuid4().hex[:8]}.svg"
svg_path = os.path.join(OUTPUT_LLM_DIR, svg_filename)
with open(svg_path, 'w', encoding='utf-8') as f:
f.write(response.text)
return svg_path
else:
print(f"β οΈ Errore API conversione: {response.status_code}")
return None
except Exception as e:
print(f"β Errore conversione SVG: {str(e)}")
return None
def create_drawio_preview(xml_content):
"""Crea un'anteprima del diagramma e restituisce HTML + path SVG"""
if not xml_content or xml_content.startswith("Error"):
preview_html = """
<div class="drawio-preview">
<div style="font-size: 2rem; margin-bottom: 1rem;">π</div>
<h3 style="color: #6b7280;">Nessun diagramma generato</h3>
<p style="color: #9ca3af;">Carica un'immagine e genera il diagramma per visualizzarlo qui.</p>
</div>
"""
return preview_html, None
# Prova a convertire in immagine
svg_path = xml_to_svg_image(xml_content)
if svg_path and os.path.exists(svg_path):
# CORREZIONE: Restituisci sia l'HTML che il path del file SVG
preview_html = f"""
<div class="drawio-preview">
<h3 style="color: #059669; margin-bottom: 1rem;">β
Diagramma Generato con Successo!</h3>
<p style="color: #6b7280; margin-bottom: 1rem;">
Il diagramma Γ¨ stato convertito e puΓ² essere scaricato come file .drawio
</p>
<p style="color: #374151; font-size: 0.9rem;">
π‘ <strong>Suggerimento:</strong> Scarica il file .drawio e aprilo in
<a href="https://app.diagrams.net/" target="_blank" style="color: #2563eb;">diagrams.net</a>
per modificarlo
</p>
</div>
"""
return preview_html, svg_path
else:
preview_html = f"""
<div class="drawio-preview">
<h3 style="color: #059669; margin-bottom: 1rem;">β
XML Draw.io Generato!</h3>
<p style="color: #6b7280;">
Il diagramma Γ¨ stato generato come codice XML.
Puoi copiare il codice qui sotto o scaricare il file .drawio.
</p>
<div style="margin: 1rem 0; padding: 1rem; background: #fef3c7; border-radius: 6px; border-left: 4px solid #f59e0b;">
<strong>π Come utilizzarlo:</strong><br>
1. Scarica il file .drawio qui sotto<br>
2. Vai su <a href="https://app.diagrams.net/" target="_blank" style="color: #2563eb;">diagrams.net</a><br>
3. Carica il file per visualizzare e modificare il diagramma
</div>
</div>
"""
return preview_html, None
def process_image_to_drawio(uploaded_image_temp_path, progress=gr.Progress()):
"""Esegue il processo di conversione dell'immagine in un diagramma Draw.io.
Arguments:
uploaded_image_temp_path (str): Percorso dell'immagine caricata
Returns:
tuple: Contiene il percorso dell'immagine, messaggio di stato, contenuto XML Draw.io."""
if uploaded_image_temp_path is None:
preview_html, svg_path = create_drawio_preview(None)
return (
None,
"β Per favore carica un'immagine.",
None,
None,
preview_html,
None # SVG file per visualizzazione
)
progress(0.1, desc="Inizializzazione...")
agent_input_image_path = None
fixed_tool_output_filename = "drawio_output.drawio"
generated_drawio_path = os.path.join(OUTPUT_LLM_DIR, fixed_tool_output_filename)
status_message = "π Inizializzazione..."
drawio_xml_content = None
downloadable_file_path = None
try:
progress(0.2, desc="Preparazione immagine...")
original_extension = os.path.splitext(os.path.basename(uploaded_image_temp_path))[1]
if not original_extension:
original_extension = ".png"
unique_filename = f"{uuid.uuid4()}{original_extension}"
agent_input_image_path = os.path.join(FILES_DIR, unique_filename)
shutil.copy(uploaded_image_temp_path, agent_input_image_path)
status_message = "π Immagine preparata per l'elaborazione"
print(f"β
Copied uploaded image to: {agent_input_image_path}")
progress(0.3, desc="Configurazione agente...")
message_file_path_component = os.path.join("files", unique_filename)
question_text = "Generate the drawio diagram for the provided image."
messages = [HumanMessage(content=f"{question_text} Path: {message_file_path_component}")]
if os.path.exists(generated_drawio_path):
os.remove(generated_drawio_path)
progress(0.5, desc="Elaborazione AI in corso...")
status_message = "π€ Elaborazione AI in corso... Attendere prego"
print(f"π Invoking agent with message: {messages[0].content}")
invoke_config = {}
if langfuse_handler:
invoke_config["callbacks"] = [langfuse_handler]
progress(0.7, desc="Generazione diagramma...")
agent_response = graph.invoke(input={"messages": messages}, config=invoke_config)
progress(0.9, desc="Finalizzazione...")
agent_final_text_response = "Elaborazione completata"
if agent_response and "messages" in agent_response and agent_response["messages"]:
content = agent_response["messages"][-1].content
if isinstance(content, list):
agent_final_text_response = content[-1] if content and isinstance(content[-1], str) else "Elaborazione completata"
elif isinstance(content, str):
agent_final_text_response = content
if os.path.exists(generated_drawio_path):
with open(generated_drawio_path, "r", encoding="utf-8") as f:
drawio_xml_content = f.read()
status_message = f"β
{agent_final_text_response}\nπ Diagramma Draw.io generato con successo!"
downloadable_file_path = generated_drawio_path
print(f"β
Successfully read Draw.io XML from: {generated_drawio_path}")
else:
error_detail = "File di output non trovato"
drawio_xml_content = f"Error: {error_detail}"
status_message = f"β Errore: {error_detail}"
print(f"β Error: Draw.io output file NOT FOUND at: {generated_drawio_path}")
progress(1.0, desc="Completato!")
except Exception as e:
error_msg = f"Si Γ¨ verificato un errore: {str(e)}"
print(f"π₯ {error_msg}")
status_message = f"β {error_msg}"
drawio_xml_content = f"Errore: {str(e)}"
finally:
if agent_input_image_path and os.path.exists(agent_input_image_path):
try:
os.remove(agent_input_image_path)
print(f"π§Ή Cleaned up input image: {agent_input_image_path}")
except OSError as e_remove:
print(f"β οΈ Warning: Could not remove temp input file {agent_input_image_path}: {e_remove}")
# CORREZIONE: Ottieni sia HTML che SVG path
preview_html, svg_file_path = create_drawio_preview(drawio_xml_content)
return (
uploaded_image_temp_path,
status_message,
drawio_xml_content,
downloadable_file_path,
preview_html,
svg_file_path # NUOVO: path del file SVG per visualizzazione
)
# --- Gradio Interface Definition ---
with gr.Blocks(
theme=gr.themes.Default(),
css=custom_css,
title="Image to Draw.io Converter"
) as demo:
gr.HTML('<h1 class="main-title">πΌοΈ β‘οΈ π Image to Draw.io Converter</h1>')
gr.Markdown("Carica un'immagine e genera automaticamente un diagramma Draw.io utilizzando l'intelligenza artificiale.")
with gr.Row():
# Colonna sinistra - Input
with gr.Column(scale=1):
gr.Markdown('<div class="section-header">π€ Carica Immagine</div>')
input_image = gr.Image(
type="filepath",
label="Seleziona un'immagine",
height=250
)
generate_button = gr.Button(
"π Genera Diagramma",
variant="primary",
size="lg"
)
gr.Markdown('<div class="section-header">π Stato</div>')
status_output = gr.Textbox(
value="In attesa di un'immagine...",
label="",
interactive=False,
lines=3,
show_label=False
)
# Colonna destra - Preview immagine
with gr.Column(scale=1):
gr.Markdown('<div class="section-header">πΌοΈ Anteprima</div>')
output_image_display = gr.Image(
label="",
interactive=False,
height=250,
show_label=False
)
# Sezione risultati
gr.Markdown('<div class="section-header">π― Risultato</div>')
# CORREZIONE: Layout migliorato per visualizzare SVG
with gr.Row():
with gr.Column(scale=2):
drawio_preview = gr.HTML(
value=create_drawio_preview(None)[0], # Solo l'HTML
show_label=False
)
with gr.Column(scale=1):
# NUOVO: Componente per visualizzare l'SVG generato
svg_display = gr.Image(
label="Anteprima Diagramma",
interactive=False,
height=300
)
with gr.Row():
with gr.Column(scale=1):
gr.Markdown("**πΎ Download**")
download_drawio_file = gr.File(
label="File .drawio",
interactive=False
)
with gr.Column(scale=2):
gr.Markdown("**π Codice XML**")
output_xml = gr.Textbox(
label="",
lines=6,
interactive=False,
show_copy_button=True,
placeholder="Il codice XML apparirΓ qui dopo la generazione...",
show_label=False,
elem_classes=["xml-container"]
)
# CORREZIONE: Event handler aggiornato con nuovo output
generate_button.click(
fn=process_image_to_drawio,
inputs=[input_image],
outputs=[
output_image_display,
status_output,
output_xml,
download_drawio_file,
drawio_preview,
svg_display # NUOVO output per visualizzare l'SVG
]
)
# Footer semplice
gr.Markdown("""
---
**βΉοΈ Istruzioni:**
1. Carica un'immagine (diagramma, schema, grafico)
2. Clicca "Genera Diagramma"
3. Scarica il file .drawio o copia l'XML
4. Apri il file su [diagrams.net](https://app.diagrams.net/) per modificarlo
""")
if __name__ == "__main__":
print("π Starting Gradio App for Image to Draw.io conversion...")
if not os.path.exists(FILES_DIR):
os.makedirs(FILES_DIR)
if not os.path.exists(OUTPUT_LLM_DIR):
os.makedirs(OUTPUT_LLM_DIR)
print(f"π Script base directory: {BASE_DIR}")
print(f"π€ Directory for uploaded files: {FILES_DIR}")
print(f"π₯ Directory for agent outputs: {OUTPUT_LLM_DIR}")
demo.launch(
debug=True,
share=False,
show_api=True,
mcp_server=True
) |