JoeyWangTW / youtube-addiction-rehab-chrome-extension

LLM powered chrome extension for content level blocking and filtering
https://youtubeaddiction.rehab/
MIT License
68 stars 8 forks source link

Use unique id to mark and filter videos #49

Closed JoeyWangTW closed 4 months ago

JoeyWangTW commented 4 months ago

With the previous approach, we are using a list of titles. Any item got mistaken or item order shift will break the filtering. This approach is pretty fragile. Switched to marking every video with a unique id, and passing these ids to the llm. It makes sure in every step, the video id and title are connected. This increased the accuracy of the filter and made it much more reliable.