Parsing Event Details from Seminar Announcement Emails
I receive a lot of seminar announcements, and getting that info into my calendar manually is tedious. So, I tried making a little GPT3 app to do it for me.
Given a copy-pasted email that contains all the necessary information, use OpenAI's fine-tunable GPT3 service to convert that to a JSON representation of a calendar event. Additionally, provide a download link for a generated ICS file to get this into Google Calendar or something else
Usually, when it fails, it does so because
- The JSON generation wasn't right, often because of extra quotes in the text.
- It got the wrong time zone, maybe because of overfitting to US-East.
A good solution to the first would be to not generate JSON at all--ICS is a much simpler/less-general format, and probably more tolerant of quotation shenanigans.
This is basically just a quick rewrite of the sample app provided by OpenAI, plus about $20 worth of fine-tuning on (so far) 35 emails. It costs me about half a cent per email to use it.
.