podcast-buddy 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/exe/podcast_buddy +1 -1
- data/lib/podcast_buddy/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9821fea9e037f8483457b4e8fc90e453a81f7ae90505b67b537683705eb57733
|
|
4
|
+
data.tar.gz: e0ef8feff9e801347a99beda8432ab46d92498aa9795408afaaf9167317cce83
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8b80d6502926859d82ed679ddcddf6dad8bdbfd6507e8936652861dac44f03b6a92d7fc06c06a93cc7886b0e2a9d5c126b72cd618c32015c3c61f77eee01819d
|
|
7
|
+
data.tar.gz: aa35a927a14fd5e48df5ec6a1d09bb5a262bfc06f60b3c75f9dfe3dcf7e672f4074d4d7bf77c96da09bcdfebd1dd608cf1245cd59cc7e605462a8a32ea716004
|
data/CHANGELOG.md
CHANGED
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
|
|
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
|