from enum import Enum class TypeMood(str, Enum): POSITIVE = "Positive" NEGATIVE = "Negative" NEUTRAL = "Neutral" class TypeModel(str, Enum): LSTM = "LSTM" GRU = "GRU" CNN = "CNN" GIGACHAD = "GigaChad"