dwarkesh commited on
Commit
0a59a93
·
verified ·
1 Parent(s): d53f5d0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +17 -1
app.py CHANGED
@@ -32,20 +32,36 @@ Please:
32
  3. Format the output consistently:
33
  - Keep the "Speaker X 00:00:00" format (no brackets, no other formatting)
34
  - DO NOT change the timestamps. You're only seeing a chunk of the full transcript, which is why your 0:00:00 is not the true beginning. Keep the timestamps as they are.
35
- - Add TWO line breaks between speaker/timestamp and the text
36
  - Use proper punctuation and capitalization
37
  - Add paragraph breaks for topic changes
38
  - When you add paragraph breaks between the same speaker's remarks, no need to restate the speaker attribution
39
  - Don't go more than four sentences without adding a paragraph break. Be liberal with your paragraph breaks.
40
  - Preserve distinct speaker turns
41
  Example input:
 
42
  Speaker A 00:01:15
 
43
  Um, yeah, so like, I've been working on this new project at work, you know? And uh, what's really interesting is that, uh, we're seeing these amazing results with the new approach we're taking. Like, it's just, you know, it's really transforming how we do things.
 
44
  And then, I mean, the thing is, uh, when we showed it to the client last week, they were just, you know, completely blown away by what we achieved. Like, they couldn't even believe it was the same system they had before.
 
 
 
 
 
45
  Example output:
 
46
  Speaker A 00:01:15
 
47
  I've been working on this new project at work, and we're seeing amazing results with our new approach. It's really transforming how we do things.
 
48
  When we showed it to the client last week, they were completely blown away by what we achieved. They couldn't believe it was the same system they had before.
 
 
 
 
 
49
  Enhance the following transcript, starting directly with the speaker format:
50
  '''
51
 
 
32
  3. Format the output consistently:
33
  - Keep the "Speaker X 00:00:00" format (no brackets, no other formatting)
34
  - DO NOT change the timestamps. You're only seeing a chunk of the full transcript, which is why your 0:00:00 is not the true beginning. Keep the timestamps as they are.
35
+ - Add TWO line breaks between speaker/timestamp and the text, and also between paragraphs.
36
  - Use proper punctuation and capitalization
37
  - Add paragraph breaks for topic changes
38
  - When you add paragraph breaks between the same speaker's remarks, no need to restate the speaker attribution
39
  - Don't go more than four sentences without adding a paragraph break. Be liberal with your paragraph breaks.
40
  - Preserve distinct speaker turns
41
  Example input:
42
+
43
  Speaker A 00:01:15
44
+
45
  Um, yeah, so like, I've been working on this new project at work, you know? And uh, what's really interesting is that, uh, we're seeing these amazing results with the new approach we're taking. Like, it's just, you know, it's really transforming how we do things.
46
+
47
  And then, I mean, the thing is, uh, when we showed it to the client last week, they were just, you know, completely blown away by what we achieved. Like, they couldn't even believe it was the same system they had before.
48
+
49
+ Speaker B 00:02:23
50
+
51
+ ...
52
+
53
  Example output:
54
+
55
  Speaker A 00:01:15
56
+
57
  I've been working on this new project at work, and we're seeing amazing results with our new approach. It's really transforming how we do things.
58
+
59
  When we showed it to the client last week, they were completely blown away by what we achieved. They couldn't believe it was the same system they had before.
60
+
61
+ Speaker B 00:02:23
62
+
63
+ ...
64
+
65
  Enhance the following transcript, starting directly with the speaker format:
66
  '''
67