#[derive(Debug)]
pub enum EmotionState {
Calm,
Reflective,
Unknown,
}
impl EmotionState {
pub fn new(tone: &str, _intent: &str, _reem: &str) -> Self {
match tone.to_lowercase().as_str() {
"calm" => EmotionState::Calm,
"reflect" => EmotionState::Reflective,
_ => EmotionState::Unknown,
}
}
}