I just came across the bitcoin.pub and saw that big topics have this summarize button. Is this a default feature or plugin (the reading time especially) like the way he has this? And exactly when is this available, what are the requirements?
I figured there should be an algorithm, totally makes sense.
What took my interest is the read time, has there been thoughts of enabling this on a per-topic basis? It seems very convenient for users to actually see the read time of a certain topic. That way they can decide if they read now or read later - or even maybe get a reminder if they somehow can mark the post as “read later” for example. I’d be happy to post this in feature if it’s non existent.
I found a setting “summary score threshold” with a description: “The minimum score required for a post to be included in ‘Summarize This Topic’”. Does anybody know how is this value counted? By default 15 is set.
The button still exists, you can see it in this topic : Events Plugin 📆
If you changed some settings recently, you probably need to wait a few days. If you have a custom theme, it may hides this button, you can try yourforum.com/safe-mode to deactivate your theme and check if it appears
You can activate the summary locally on every topic, it may help to check what posts meet the criteria : https://meta.discourse.org/t/summarize-this-topic-button/132790/?filter=summary
Are there any plans to allow users to specify a timeframe for the topic summary? For example, an end user could possibly want to view the topic summary from the last month’s posts.
In Discourse, the scores for posts are calculated using a class called ScoreCalculator, which assigns weights to various engagement metrics. By default, these weights are set to prioritize actions such as replies (5 points), likes (15 points), incoming links (5 points), bookmarks (2 points), and reads (0.2 points). The weighted components are summed up to compute a final score for each post. This calculation is performed through a SQL query that multiplies each metric by its respective weight and updates the post’s score in the database.
The summary_score_threshold setting in Discourse defines the minimum score a post must achieve to be included in the “Top Replies” feature. This score is essentially a threshold that helps filter out less significant posts, ensuring that only the most relevant and high-quality contributions are summarized.
The default threshold is set at 15.
So, basically it removes posts with 0 engagement (or close to 0) from the “top replies” list…