I need a recomendation which OpenAI API model will support me the best for the following:
Need to generate the summary from Teams meeting Transcript using the OpenAI API model.
Per day there may be of more than 10 meetings
Each meetings of size 7893 words or more than that(without the time stamp) rough about 46 KB.
Currently tested with “text-davinci-003” by supplying the chunks of the meeting transcript.
You can give it two prompts; a system prompt that says “please summarize this meeting” and then the actual text as a user prompt. (Or each utterance/line of text as a separate user prompt, tagged with the user name)
Also, if the transcript is longer than the 16k context will allow, you can put in the first half of the text, and ask it to summarize so far, and then put in the summary plus the second half and ask it to update the summary. I do exactly this, and it works great! (With gpt-3.5-turbo-16k and chat completion)