AhmadMustafa commited on
Commit
b27021c
·
1 Parent(s): 0f83e13

update: live event prompt

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -397,7 +397,8 @@ Requirements:
397
  - Topic titles should be in normal case (i.e first word of Sentence capital rest small)
398
  - Use timestamp and duration format: HH:MM (Xs) where X is seconds
399
  - Each line should be a clickable link including timestamp and title
400
- - When selecting timestamps, strictly limit the start and end times to contain only the current speaker's continuous dialogue. The timestamp should begin exactly when the current speaker starts talking about that specific topic and end when they finish their point or another speaker begins. Do not include any portions of previous or subsequent speakers' dialogue in the selected time range.
 
401
  - Convert display timestamps to seconds for URL parameters
402
  Example: 21s at 10:13 in URL would be st=613&et=634
403
 
@@ -416,6 +417,7 @@ Rank topics based on their potential virality and engagement for social media cl
416
  {"role": "user", "content": prompt},
417
  ],
418
  stream=True,
 
419
  )
420
 
421
  collected_messages = []
 
397
  - Topic titles should be in normal case (i.e first word of Sentence capital rest small)
398
  - Use timestamp and duration format: HH:MM (Xs) where X is seconds
399
  - Each line should be a clickable link including timestamp and title
400
+ - When selecting timestamps, STRICTLY limit the start and end times to contain only the current speaker's continuous dialogue. The timestamp should begin exactly when the current speaker starts talking about that specific topic and end when they finish their point or another speaker begins. Do not include any portions of previous or subsequent speakers' dialogue in the selected time range.
401
+ - IN NO CASE should the duration include any overlapping dialogue from other speakers. i.e if you chose 1m 10s at 16:20, 16:20 till 17:30 should only contain the current speaker's dialogue. THIS IS IMPORTANT.
402
  - Convert display timestamps to seconds for URL parameters
403
  Example: 21s at 10:13 in URL would be st=613&et=634
404
 
 
417
  {"role": "user", "content": prompt},
418
  ],
419
  stream=True,
420
+ temperature=0.5,
421
  )
422
 
423
  collected_messages = []