←back to thread

242 points alphabetting | 4 comments | | HN request time: 0s | source
1. gigel82 ◴[] No.41872791[source]
Is there an open source tool that copies NotebookLM yet, or did anyone dig a bit into how the prompting is done to generate output in this dialogue format?
replies(1): >>41873232 #
2. rahimnathwani ◴[] No.41873232[source]
Check out this prompt: https://github.com/souzatharsis/podcastfy/blob/6ad5734c3ffb5...
replies(2): >>41873925 #>>41875107 #
3. KaoruAoiShiho ◴[] No.41873925[source]
Looks good, I wonder if F5 could replace 11labs?
4. gpm ◴[] No.41875107[source]
Huh, that gives the LLM an example

    <Person1> "Welcome to Podcastfy! <break time="0.5s" /> Today, we're summarizing an interesting text about [topic from input text]. Let's dive in!"</Person1> 
And then tells the LLM not to do anything at all like that example

    Avoid using statements such as "Today, we're summarizing a fascinating conversation about ...". ]
    [PauseInsertion: Avoid using breaks (<break> tag) but if included they should not go over 0.1 seconds]
Is this an intentional technique in prompt construction to avoid the LLM over indexing on the example or something?