mirror of
https://github.com/discourse/discourse-ai.git
synced 2025-06-30 11:32:18 +00:00
10 lines
140 B
Ruby
10 lines
140 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module DiscourseAi
|
||
|
module Sentiment
|
||
|
module Constants
|
||
|
SENTIMENT_THRESHOLD = 0.6
|
||
|
end
|
||
|
end
|
||
|
end
|