|
|
|
|
|
by kolleraa
602 days ago
|
|
I'm working on a unique discovery app / recommender for books, tv, movies, video games, songs, youtube channels, newsletters and podcasts - and more categories soon! Since my last update here, I've added more detailed personalized descriptions of recommendations (hit Describe to request), including a rating out of 10 for how well the item meets your preferences. I've also added the ability to replace individual recommendations (this was the most requested new feature!). If you update your preferences, your replacements will use your updated preferences - pretty nice for fine tuning your results! Try it: https://www.yogurrt.com/ |
|
I was surprised to learn that each recommendation for preferences costs nearly 1 cent. From what I can tell, you don’t seem to be caching preferences. For example, each "Let's Go!" click on a show like say "Succession" generates some variation in the preference recommendations. My hunch is that if we ask LLMs to "over recommend" preferences based on the content you’re using (my guess is a mix of MovieLens, IMDb, TMDB, and Wikipedia) and do so in an ordered fashion (preference1 is a solid, but preference7 is a so-so), you could cache these results and strategically display them. For instance, when users choose to "fix" certain categories and get new recommendations for others, these "over recommendations" could help create variations without additional LLM calls. This could be repeated like N times until new categories require further LLM calls.
I am not sure if this would work with the personalized descriptions of recommendations part. I kind of love how they’re tuned based on my selected preferences.
I am curious about the design of the whole system. Fun project! Thanks.