diff --git a/eveai_chat_workers/specialists/traicie/TRAICIE_SELECTION_SPECIALIST/1_5.py b/eveai_chat_workers/specialists/traicie/TRAICIE_SELECTION_SPECIALIST/1_5.py index ce79598..9c0dcd9 100644 --- a/eveai_chat_workers/specialists/traicie/TRAICIE_SELECTION_SPECIALIST/1_5.py +++ b/eveai_chat_workers/specialists/traicie/TRAICIE_SELECTION_SPECIALIST/1_5.py @@ -368,7 +368,7 @@ class SpecialistExecutor(CrewAIBaseSpecialistExecutor): if evaluation == "negative": answer = TranslationServices.translate(self.tenant_id, - random.choices(KO_CRITERIA_NOT_MET_MESSAGES), + random.choice(KO_CRITERIA_NOT_MET_MESSAGES), self.arguments.language) self.flow.state.answer = answer diff --git a/eveai_workers/processors/__init__.py b/eveai_workers/processors/__init__.py index 93e51d7..64fb808 100644 --- a/eveai_workers/processors/__init__.py +++ b/eveai_workers/processors/__init__.py @@ -1,5 +1,5 @@ # Import all processor implementations to ensure registration -from . import audio_processor, html_processor, pdf_processor, markdown_processor, docx_processor, automagic_html_processor +from . import html_processor, pdf_processor, markdown_processor, docx_processor, automagic_html_processor # List of all available processor implementations -__all__ = ['audio_processor', 'html_processor', 'pdf_processor', 'markdown_processor', 'docx_processor', 'automagic_html_processor'] \ No newline at end of file +__all__ = ['html_processor', 'pdf_processor', 'markdown_processor', 'docx_processor', 'automagic_html_processor'] \ No newline at end of file