Home Assistant Email Triage with Local LLM – Setup Guide
This text describes a system for summarizing incoming emails and categorizing them. Here’s a breakdown of the key information:
Trigger: The process begins when a new email is received, triggering an imapcontent event.
Processing: This event initiates a flow that uses a model (likely a language model) to summarize the email. The model is small and kept “alive” for 24 hours to speed up processing.
notification: Within seconds of receiving the email, the user receives a notification on their phone with the summarization.
Dashboard: The user can view a dashboard showing counts for each email category.
Counters: The system relies on pre-existing counters to track the number of emails in each category.These counters are:
counter.emailspersonal
counter.emailstransaction
counter.emailscalendar
counter.emailsnewsletter
counter.emailspromo
counter.emailsalert
counter.emailsreceipt
counter.emailssupport
counter.emailsunknown
In essence, this is an automated email summarization and categorization system. The user needs to ensure these counters are properly set up and maintained for the system to function correctly.
