podcast-buddy 0.2.0 → 0.2.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 +5 -0
- data/README.md +11 -3
- 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: 6ebed9ffec7e1ce399ed7b64d332087e433b8348e84b1af2fc8a13a959163802
|
|
4
|
+
data.tar.gz: b3d9fe281bf8259bcc9b65ef466fe517885e3855fd95da0672ab93f7a08f80f0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b53e802df3a99224404789e1c9acb061b2d4dcc2ef57927ba0b2a0cf3a0aaf62fa8e115d148c27a62407c44851853b39fc2955d2e4748a2ecf869fa4cb926c43
|
|
7
|
+
data.tar.gz: 230641523d5daf007ac70ea44d41d2dad49a12c28741c26b78e348b1e573e5ffe24c707fd76c505ba64dee25e783c9c51722cb8bf4272410aaab41cef4c54fae
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -44,9 +44,17 @@ Once you're done, simply `ctrl-c` to wrap things up.
|
|
|
44
44
|
|
|
45
45
|
### Helpful files logged during your session with Buddy
|
|
46
46
|
|
|
47
|
-
1. Your full transcript is stored in `tmp/
|
|
48
|
-
2. A summarization of the discussion
|
|
49
|
-
3.
|
|
47
|
+
1. Your full transcript is stored in `tmp/transcripti-%Y-%m-%d.log`.
|
|
48
|
+
2. A summarization of the discussion is stored in `tmp/summary-%Y-%m-%d.log`.
|
|
49
|
+
3. A list of topics extracted from the discussion is stored in `tmp/topics-%Y-%m-%d.log`.
|
|
50
|
+
4. The Show Notes are stored in `tmp/show-notes-%Y-%m-%d.log`.
|
|
51
|
+
5. The raw whisper logs are stored in `tmp/whisper.log`.
|
|
52
|
+
|
|
53
|
+
### Options
|
|
54
|
+
|
|
55
|
+
**debug mode**: `podcast_buddy --debug` – shows verbose logging
|
|
56
|
+
**custom whisper model**: `podcast_buddy --whisper base.en` – use any of [these available models](https://github.com/ggerganov/whisper.cpp/blob/master/models/download-ggml-model.sh#L28-L49).
|
|
57
|
+
**custom session**: `podcast_buddy --name "Ruby Rogues 08-15-2024"` – saves files to a new `tmp/Ruby Rogues 08-15-2024/` directory.
|
|
50
58
|
|
|
51
59
|
## Development
|
|
52
60
|
|
data/exe/podcast_buddy
CHANGED