Refactor code structure for improved readability and maintainability

This commit is contained in:
2025-03-26 12:14:58 +00:00
parent a4683023ad
commit bd56cc839d
5 changed files with 1386 additions and 3 deletions

View File

@@ -1,13 +1,12 @@
import atexit
import configparser
import json # For handling potential error JSON in stream
import json
import logging
import streamlit as st
# Updated imports
from llm_client import LLMClient
from src.custom_mcp.manager import SyncMCPManager # Updated import path
from src.custom_mcp.manager import SyncMCPManager
# Configure logging for the app
logging.basicConfig(level=logging.INFO, format="%(asctime)s - %(name)s - %(levelname)s - %(message)s")