Hello everyone,
I’m working with a conversation that has been converted into a CSV file with the following structure: line number, speaker, timestamp, conversation content. For example:
1,Lyly,0.6,Hello Sam
2,Sam,3,Hello LyLy
3,Lyly,5,How are you
4,Sam,7,I'm fine thank you
I want to use OpenAI - gpt4o to improve the content of the dialogue (such as adding punctuation or enhancing the language), but without changing the line number, speaker, or timestamp. My desired result would look like this:
1,Lyly,0.6,Hello Sam!
2,Sam,3,Hello LyLy!
3,Lyly,5,How are you?
4,Sam,7,I'm fine, thank you!
However, when I tried using ChatGPT, I encountered a problem where it merges the content of different lines, resulting in incorrect ordering, for example:
1,Lyly,0.6,Hello Sam!Hello LyLy!
2,Sam,3,How are you?
3,Lyly,5,I'm fine, thank you!
My questions are:
- Is there a way to prevent this merging issue when using ChatGPT?
- Would the results improve if I switched the input format from CSV to JSON?
I’d really appreciate any advice or suggestions from the community!
Thanks a lot!