Now

What Am I Doing Right now

(This is a now page. You should make one, too.)


April 20th, 2024

Setting up support for a wiki.

April 10th, 2024

Trying to figure out how to filter out “pages” from the list of posts on the homepage.

I should probably learn how Hugo templates work.

February 1st, 2024

Trying to write some Python code to summarize podcasts by:

  1. Getting the RSS feed for a podcast
  2. Grab the audio file
  3. Send it to Deepgram for transcription
  4. Pass the transcription to an Anthropic Claude 3 Opus model on OpenRouter for summarization.

I’ve got it working but it needs test code and better error handling when credits run out or a hit some rate limit.

So far the tracking of summarized podcasts is stored in a JSON file. Need to convert it SQLite.

Initially, I wanted to use LangChain so I could get some experience using it, but it doesn’t have Deepgreem or OpenRouter as supported providers or models. I’m using OpenRouter for Claude 3 since it’s easier to futz around with different models. Maybe I’ll create a custom LLM in LangChain for bothm of them, but it depends on how much I use the summarizer.