feat : cleaner import arrangement

This commit is contained in:
martin legrand
2025-04-01 13:10:06 +02:00
parent b3efd09fb3
commit 1b5a55ccf2
8 changed files with 30 additions and 19 deletions
+3 -1
View File
@@ -1,3 +1,4 @@
from typing import List, Tuple, Type, Dict, Tuple
from sources.text_to_speech import Speech
from sources.utility import pretty_print, animate_thinking
@@ -11,7 +12,8 @@ class Interaction:
def __init__(self, agents,
tts_enabled: bool = True,
stt_enabled: bool = True,
recover_last_session: bool = False):
recover_last_session: bool = False,
):
self.is_active = True
self.current_agent = None
self.last_query = None