I love the look of this, though I’m not sure I follow the functionality fully. It looks like this is producing something similar to the Digest. I quite like this new format for that information.
What I couldn’t see from the response, is whether or not this can provide a customised summary. Did I miss that somewhere? Is it possible for this to be generated per user, based on the user’s individual interests?
To make these thoughts more concrete, this is roughly what I had in mind:
- Identify main interests of user: (Run once) Scan All topics and replies user has interacted with(like, reply, create) for keywords
- Identify recent interests of user: Scan topics and replies the user has read this month for keywords
- Identify key concepts of recent topics: scan all new topics this week
pseudocode
user_interests = main_interests + recent_interests
Recommended_list = Match(recent_topics with user_interests)
Recommended_list = Recommended_list.sort_by_match_strength()