podcast-buddy 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 55e233781e7481f2c6de2040e8ca2960b4f08738c8e02cdd0a6e498dd8bcf716
4
- data.tar.gz: bdfdc5291f075099ec16e9eaace611c48187de9d31932fe067feb39f88ac596f
3
+ metadata.gz: 9821fea9e037f8483457b4e8fc90e453a81f7ae90505b67b537683705eb57733
4
+ data.tar.gz: e0ef8feff9e801347a99beda8432ab46d92498aa9795408afaaf9167317cce83
5
5
  SHA512:
6
- metadata.gz: 75beed9ca8c328e426ca85b8d5f894a0497e4a663c072a4d5d640dde623392e4796b381616a8f03978a687835b455fabe238ed87fed0f3c5a1e5d6c1ba37e8b4
7
- data.tar.gz: 5a727fb531e7b5c21285bd2c29957181a52daac060ce70e2d547e1b734743941dbb1d0608a80b3fe5f06b800267b9aac3d273897726b7b13393d1146167f9215
6
+ metadata.gz: 8b80d6502926859d82ed679ddcddf6dad8bdbfd6507e8936652861dac44f03b6a92d7fc06c06a93cc7886b0e2a9d5c126b72cd618c32015c3c61f77eee01819d
7
+ data.tar.gz: aa35a927a14fd5e48df5ec6a1d09bb5a262bfc06f60b3c75f9dfe3dcf7e672f4074d4d7bf77c96da09bcdfebd1dd608cf1245cd59cc7e605462a8a32ea716004
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.1] - 2024-08-09
4
+
5
+ - Fixes typo in topic extraction prompt ([7e07e](https://github.com/codenamev/podcast-buddy/commit/7e07e307135c95cb4bb68dadc354f0b2519c7721))
6
+
3
7
  ## [0.1.0] - 2024-08-09
4
8
 
5
9
  - Initial release
data/exe/podcast_buddy CHANGED
@@ -56,7 +56,7 @@ def extract_topics_and_summarize(client, text)
56
56
  messages = []
57
57
  if current_discussion.length > 1
58
58
  messages << {role: "user", content: "Given the prior summary and topics:\n---\n#{current_discussion}\n---"}
59
- messages << {role: "user", content: "Continue the running summary and list of topcs using the following discussion:\n---#{text}\n---"}
59
+ messages << {role: "user", content: "Continue the running summary and list of topics using the following discussion:\n---#{text}\n---"}
60
60
  else
61
61
  messages << {role: "user", content: "Extract topics and summarize the following discussion:\n---#{text}\n---"}
62
62
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module PodcastBuddy
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: podcast-buddy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Valentino Stoll