mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-10-26 20:18:39 +00:00
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
|