From 4c4e7b92a7ffb7ae90a13619d737d5daae073a26 Mon Sep 17 00:00:00 2001 From: AI Station Server Date: Tue, 30 Dec 2025 07:37:39 +0100 Subject: [PATCH] Finalize v2.8.3 --- app.py | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/app.py b/app.py index 0375ffb4..230d6b51 100644 --- a/app.py +++ b/app.py @@ -57,11 +57,25 @@ USER_PROFILES = { "capabilities": ["debug", "system_prompts", "user_management", "all_models"], "show_code": True }, - # Aggiungi qui gli altri utenti... + "riccardob545@gmail.com": { + "role": "engineering", + "name": "Riccardo", + "workspace": "engineering_workspace", + "rag_collection": "engineering_docs", + "capabilities": ["code_execution", "data_viz", "advanced_chat"], + "show_code": True + }, + "giuliadefranceschi05@gmail.com": { + "role": "architecture", + "name": "Giulia", + "workspace": "architecture_workspace", + "rag_collection": "architecture_manuals", + "capabilities": ["visual_chat", "pdf_upload", "image_gen"], + "show_code": False + } } -# === CUSTOM LOCAL STORAGE CLIENT (FIXED) === -# Questa classe ora implementa tutti i metodi astratti richiesti da Chainlit 2.8.3 +# === CUSTOM LOCAL STORAGE CLIENT (FIXED) ===# Questa classe ora implementa tutti i metodi astratti richiesti da Chainlit 2.8.3 class LocalStorageClient(BaseStorageClient): """Storage locale su filesystem per file/elementi"""