@tacone/prosey 0.7.0 → 0.7.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.
- package/bin/prosey +1 -1
- package/package.json +1 -1
- package/src/default-config.toml +37 -6
package/bin/prosey
CHANGED
|
@@ -103263,7 +103263,7 @@ function openInBrowser(htmlPath) {
|
|
|
103263
103263
|
// package.json
|
|
103264
103264
|
var package_default = {
|
|
103265
103265
|
name: "@tacone/prosey",
|
|
103266
|
-
version: "0.7.
|
|
103266
|
+
version: "0.7.1",
|
|
103267
103267
|
description: "Download YouTube video transcripts from the CLI",
|
|
103268
103268
|
module: "src/index.ts",
|
|
103269
103269
|
type: "module",
|
package/package.json
CHANGED
package/src/default-config.toml
CHANGED
|
@@ -58,19 +58,50 @@ Only output the summary text without adding anything.
|
|
|
58
58
|
# Prompt sent to the command via stdin.
|
|
59
59
|
# Customize this to change how transcripts are formatted as markdown.
|
|
60
60
|
|
|
61
|
-
prompt = """
|
|
62
|
-
Format the following text using markdown. Do not rephrase.
|
|
61
|
+
# prompt = """
|
|
62
|
+
# Format the following text using markdown. Do not rephrase.
|
|
63
|
+
|
|
64
|
+
# - use headers
|
|
65
|
+
# - use the INFO section to correct spellings in the text (e.g. Pi vs Pie)
|
|
66
|
+
# - use the INFO Title field as the main title
|
|
67
|
+
# - use timestamps (if available) as second level headers (just text, no time value)
|
|
68
|
+
# - format the text appropriately adding paragraphs, blockquote where it applies
|
|
69
|
+
# - aim for max 3-5 sentences (or 350-400 chars) for paragraph on average
|
|
70
|
+
# - consider using bold for technical term/proper noun repeated multiple times
|
|
71
|
+
# - don't overthink
|
|
72
|
+
|
|
73
|
+
# Only output the formatted text without adding anything.
|
|
74
|
+
# """
|
|
63
75
|
|
|
64
|
-
|
|
76
|
+
prompt = """
|
|
77
|
+
You are tasked with acting as a scribe. Your role is to accurately and clearly transcribe spoken or written content, capturing all essential details while maintaining clarity and coherence. When given content, focus on precise documentation without adding personal opinions or altering the original meaning. If the content is dialogue or conversation, differentiate speakers clearly. If the content includes complex terms or jargon, ensure correct spelling and formatting.
|
|
78
|
+
|
|
79
|
+
Steps:
|
|
80
|
+
- Listen to or read the provided content carefully.
|
|
81
|
+
- Transcribe the content exactly, preserving original intent and tone.
|
|
82
|
+
- Organize the transcription logically for ease of understanding.
|
|
83
|
+
- Use proper grammar, punctuation, and formatting.
|
|
84
|
+
- Identify and label different speakers if applicable.
|
|
85
|
+
|
|
86
|
+
Output Format:
|
|
87
|
+
- Provide the transcription as a clean, well-formatted text document.
|
|
88
|
+
- Use speaker labels when needed (e.g., Speaker 1:, Speaker 2:).
|
|
89
|
+
- Maintain paragraphs and line breaks as appropriate to the original content.
|
|
90
|
+
- use headers (h1 for the main title, h2 for sections, ...)
|
|
65
91
|
- use the INFO section to correct spellings in the text (e.g. Pi vs Pie)
|
|
66
92
|
- use the INFO Title field as the main title
|
|
67
93
|
- use timestamps (if available) as second level headers (just text, no time value)
|
|
68
94
|
- format the text appropriately adding paragraphs, blockquote where it applies
|
|
69
|
-
- aim for max 3-5 sentences (or 350-400 chars) for paragraph on average
|
|
70
95
|
- consider using bold for technical term/proper noun repeated multiple times
|
|
71
|
-
- don't overthink
|
|
72
96
|
|
|
73
|
-
|
|
97
|
+
|
|
98
|
+
Examples:
|
|
99
|
+
- Transcribing a meeting dialogue with clear speaker identification.
|
|
100
|
+
- Documenting lecture notes verbatim.
|
|
101
|
+
|
|
102
|
+
Notes:
|
|
103
|
+
- Do not summarize or interpret; transcribe faithfully.
|
|
104
|
+
- Handle specialized vocabulary carefully to ensure accuracy.
|
|
74
105
|
"""
|
|
75
106
|
|
|
76
107
|
# Command override for transcribe. Uncomment to use a different command
|