Spaces:
Sleeping
Sleeping
File size: 391 Bytes
48bf0b3 | 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)
""") |