Commit
·
e230fb3
1
Parent(s):
1e05855
update: LE reasoning prompt
Browse files
app.py
CHANGED
@@ -489,12 +489,11 @@ CRITICAL: When analyzing timestamps, you must verify that in the duration specif
|
|
489 |
2. The speaker talks continuously for at least 20 seconds
|
490 |
3. The clip ends BEFORE any interruption or speaker change
|
491 |
"""
|
492 |
-
print(" , ".join(speaker_mapping.values()))
|
493 |
reasoning_prompt = f"""For each Speaker {" , ".join(speaker_mapping.values())}
|
494 |
in the transcript: {transcript}
|
495 |
|
496 |
Your job is to generate the thinking about the short social media clips for each speaker where they discuss. Think step by step and return a JSON at the end of the thinking.
|
497 |
-
You can skip a speaker if they don't have enough content to generate the clips.
|
498 |
Return Format:
|
499 |
- Name of the Speaker
|
500 |
- Detailed Step by Step Thinking for each speaker from thier content and the topic they are talking about
|
|
|
489 |
2. The speaker talks continuously for at least 20 seconds
|
490 |
3. The clip ends BEFORE any interruption or speaker change
|
491 |
"""
|
|
|
492 |
reasoning_prompt = f"""For each Speaker {" , ".join(speaker_mapping.values())}
|
493 |
in the transcript: {transcript}
|
494 |
|
495 |
Your job is to generate the thinking about the short social media clips for each speaker where they discuss. Think step by step and return a JSON at the end of the thinking.
|
496 |
+
You can skip a speaker if they don't have enough content to generate the clips. Goal of the reasoning is to find the sentence of a specific speaker where they talk about that topic Since I need to make seperate clips of each speaker. SO all the sentences between the start and end of the topic must be from the same speaker.
|
497 |
Return Format:
|
498 |
- Name of the Speaker
|
499 |
- Detailed Step by Step Thinking for each speaker from thier content and the topic they are talking about
|