39 lines
604 B
Ruby
39 lines
604 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module DiscourseAi
|
||
|
module Sentiment
|
||
|
class Emotions
|
||
|
LIST = %w[
|
||
|
admiration
|
||
|
amusement
|
||
|
anger
|
||
|
annoyance
|
||
|
approval
|
||
|
caring
|
||
|
confusion
|
||
|
curiosity
|
||
|
desire
|
||
|
disappointment
|
||
|
disapproval
|
||
|
disgust
|
||
|
embarrassment
|
||
|
excitement
|
||
|
fear
|
||
|
gratitude
|
||
|
grief
|
||
|
joy
|
||
|
love
|
||
|
nervousness
|
||
|
neutral
|
||
|
optimism
|
||
|
pride
|
||
|
realization
|
||
|
relief
|
||
|
remorse
|
||
|
sadness
|
||
|
surprise
|
||
|
]
|
||
|
end
|
||
|
end
|
||
|
end
|