Configurazioni dell'app #27

Merged
Berack96 merged 16 commits from configs into main 2025-10-12 18:05:43 +02:00
4 changed files with 4 additions and 4 deletions
Showing only changes of commit b862af41fd - Show all commits

View File

@@ -2,7 +2,7 @@ import gradio as gr
from dotenv import load_dotenv from dotenv import load_dotenv
from agno.utils.log import log_info #type: ignore from agno.utils.log import log_info #type: ignore
from app.configs import AppConfig from app.configs import AppConfig
from app.utils import ChatManager from app.interface import ChatManager
from app.agents import Pipeline 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"]