refactor: reorganize project structure and enhance model verbosity
This commit is contained in:
@@ -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())
|
||||
Reference in New Issue
Block a user