Hello everyone, I hope you are well.
I come to ask you for help with a project that I had at the time and that I would like to return to.
I want to use fireflies AI to transcribe calls with clients and then insert the entire transcription into a well-structured document, ideally with this format:
| - :
The thing is that fireflies returns an array with many collections. I have tried to search for information about it and I have not been able to make it stick to the document in an orderly way, the most I have achieved has been to use the map function to extract all the information from all the collections at once, but it happens that the result is something So:
:
but instead of making one of these for each collection, it takes ALL the text from all the collections and pastes them together.
I would like to know if you know of a way to do it the way I want other than using an iterator and an aggregator array, since this would consume too many operations per transcription.
For example: a 30 min call has approximately 266 collections. If I wanted to analyze a call that lasted an hour and a half or 2 hours I would be cooked xD
Thank you very much in advance.