Spostato ChatManager in app.interface

This commit is contained in:
2025-10-12 15:59:28 +02:00
parent 86277fdbdc
commit b862af41fd
4 changed files with 4 additions and 4 deletions

View File

@@ -2,7 +2,7 @@ import gradio as gr
from dotenv import load_dotenv
from agno.utils.log import log_info #type: ignore
from app.configs import AppConfig
from app.utils import ChatManager
from app.interface import ChatManager
from app.agents import Pipeline

View File

@@ -0,0 +1,3 @@
from app.interface.chat import ChatManager
__all__ = ["ChatManager"]

View File

@@ -1,3 +0,0 @@
from app.utils.chat_manager import ChatManager
__all__ = ["ChatManager"]