From ee1d99ab3caeda97ba2a3a2d4d913fcd2d3c0ecc Mon Sep 17 00:00:00 2001 From: Ilaria <108286953+TheStingerX@users.noreply.github.com> Date: Thu, 18 Jan 2024 01:36:11 +0100 Subject: [PATCH] Fixed i18n error Line 27 of webui.py contains an import from i18n.i18n but there was no module in the requirements. I added the module i18n. Line for context: "from i18n.i18n import I18nAuto" --- requirements.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/requirements.txt b/requirements.txt index 7c613b3..d4b6303 100644 --- a/requirements.txt +++ b/requirements.txt @@ -19,3 +19,4 @@ sentencepiece transformers chardet PyYAML +i18n