refactor: reorganize project structure and enhance model verbosity

This commit is contained in:
2025-08-06 21:57:10 +02:00
parent ad8db43748
commit d7aa24a935
23 changed files with 1209 additions and 1416 deletions
+12
View File
@@ -0,0 +1,12 @@
import streamlit as st
class Configuration:
"""Handles configuration display and management"""
def __init__(self, config):
self.config = config
def index(self):
st.header("Current Configuration")
st.json(self.config.model_dump())