Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -373,6 +373,7 @@ with st.container():
|
|
| 373 |
<p><strong>Evidence Inference Time:</strong> {res['evidence_time']:.2f} seconds</p>
|
| 374 |
<p><strong>Verdict Inference Time:</strong> {res['verdict_time']:.2f} seconds</p>
|
| 375 |
<p><strong>Total Execution Time:</strong> {res['total_time']:.2f} seconds</p>
|
|
|
|
| 376 |
</div>
|
| 377 |
""", unsafe_allow_html=True)
|
| 378 |
|
|
|
|
| 373 |
<p><strong>Evidence Inference Time:</strong> {res['evidence_time']:.2f} seconds</p>
|
| 374 |
<p><strong>Verdict Inference Time:</strong> {res['verdict_time']:.2f} seconds</p>
|
| 375 |
<p><strong>Total Execution Time:</strong> {res['total_time']:.2f} seconds</p>
|
| 376 |
+
{f"<p><strong>Details:</strong> {res['details']}</p>" if show_details else ""}
|
| 377 |
</div>
|
| 378 |
""", unsafe_allow_html=True)
|
| 379 |
|