Hi everybody, I find a huge part of my job is talking to colleagues and clients and at the end of those phone calls, I have to write a summary of what happened, plus any key points that I need to focus on followup.
I figured it would be an excellent task for a LLM.
It would need intercept the phone call dialogue, and transcribe the dialogue.
Then afterwards I would want to summarize it.
I’m not talking about teams meetings or anything like that, I’m talking a traditional phone call, via a mobile phone to another phone.
I understand that that could be two different pieces of software, and that would be fine, but I am wondering if there is any such tool out there, or a tool in the making?
If you have any leads, I’d love to hear them.
Thank you so much
Haven’t heard of all-in-one solutions, but once you have a recording, whisper.cpp can do the transcription:
The underlying Whisper models are MIT.
Then you can use any LLM inference engine, e.g. llama.cpp, and ask the model of your choice to summarise the transcript:
You can also write a small bash/python script to make the process a bit more automatic.