How to do meeting summary using azure

Louis 181 Reputation points
2023-06-30T17:56:16+00:00

hello, I am working on a project which need to summary more than 100 meeting’s transcript, is there any service I can use for it to generate summary by one paragraph?

Azure AI services
Azure AI services
A group of Azure services, SDKs, and APIs designed to make apps more intelligent, engaging, and discoverable.
3,056 questions
0 comments No comments
{count} votes

Accepted answer
  1. YutongTie-MSFT 53,731 Reputation points
    2023-07-01T04:28:49.64+00:00

    Hello @Louis

    Thanks for reaching out to us, except the way mentioned above, another solution you may consider is Azure OpenAI Service.

    You can leverage GPT-35/GPT-4 models to do so, they are a set of models that improve on GPT-3.5 and can understand as well as generate natural language and code.

    https://learn.microsoft.com/en-us/azure/cognitive-services/openai/chatgpt-quickstart?tabs=command-line&pivots=programming-language-python

    I will recommend you do it by completions - The completions endpoint can be used for a wide variety of tasks. It provides a simple but powerful text-in, text-out interface to any of our models. You input some text as a prompt, and the model will generate a text completion that attempts to match whatever context or pattern you gave it.

    I hope this helps.

    Regards,

    Yutong

    -Please kindly accept the answer if you feel helpful to support the community, thanks a lot.

    0 comments No comments

1 additional answer

Sort by: Most helpful
  1. Ziggy Zulueta 490 Reputation points MVP
    2023-07-01T00:48:38.9866667+00:00

    Hi Louis,

    What you are looking for is Abstractive Summarization. Abstractive summarization: Produces a summary by generating summarized sentences from the document that capture the main idea.

    https://learn.microsoft.com/en-us/azure/cognitive-services/language-service/summarization/how-to/document-summarization

    I tested the feature recently thru API calls and thru the Language Studio: https://language.cognitive.azure.com/tryout/summarization

    I hope this help you in your journey. Please accept this answer if this helps you.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.