File size: 391 Bytes
e47de87
e182e5c
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import streamlit as st
from utils import get_device

st.set_page_config("Upcycling AI", "♻️", layout="wide")
device = get_device()
st.sidebar.success(f"Device attivo: **{device}**")

st.title("♻️ Upcycling AI")
st.markdown("""
Benvenuto!  
Usa il **menu laterale** per esplorare i moduli:
- **OR1 – Riconoscimento visivo e classificazione funzionale**
- (In arrivo: OR2, OR3)
""")