Spaces:
Sleeping
Sleeping
ordinte tab giusto
Browse files
app.py
CHANGED
@@ -21,8 +21,9 @@ def main():
|
|
21 |
logging.info("Interfaccia Gradio inizializzata")
|
22 |
|
23 |
# Prima ottiene tutti i riferimenti
|
24 |
-
doc_refs = create_document_management_tab()
|
25 |
chat_refs = create_chatbot_tab()
|
|
|
|
|
26 |
|
27 |
# Crea dizionario completo dei riferimenti
|
28 |
dropdowns = {
|
@@ -31,10 +32,12 @@ def main():
|
|
31 |
}
|
32 |
|
33 |
# Crea i tab nell'ordine corretto
|
34 |
-
|
|
|
35 |
doc_refs # Tab 2: Document Management
|
|
|
36 |
create_new_features_tab() # Tab 3: Features
|
37 |
-
|
38 |
|
39 |
rag_chatbot.launch()
|
40 |
|
|
|
21 |
logging.info("Interfaccia Gradio inizializzata")
|
22 |
|
23 |
# Prima ottiene tutti i riferimenti
|
|
|
24 |
chat_refs = create_chatbot_tab()
|
25 |
+
doc_refs = create_document_management_tab()
|
26 |
+
|
27 |
|
28 |
# Crea dizionario completo dei riferimenti
|
29 |
dropdowns = {
|
|
|
32 |
}
|
33 |
|
34 |
# Crea i tab nell'ordine corretto
|
35 |
+
|
36 |
+
chat_refs # Tab 4: Chatbot (ultima tab)
|
37 |
doc_refs # Tab 2: Document Management
|
38 |
+
create_db_management_tab(dropdowns) # Tab 1: DB Management
|
39 |
create_new_features_tab() # Tab 3: Features
|
40 |
+
|
41 |
|
42 |
rag_chatbot.launch()
|
43 |
|