File size: 898 Bytes
3ec9829 0077bbf 3ec9829 0077bbf |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
---
title: Meeting Minutes Generator and Question Answer Application
emoji: π
colorFrom: pink
colorTo: pink
sdk: gradio
app_file: app.py
pinned: false
---
## Overview
This application takes an MP3 file of a meeting recording in English, converts it into text, generates meeting minutes in a specified format, and answers questions based on the minutes using OpenAI APIs, ChatGPT, and the LangChain framework.
## Features
- **Transcription**: Converts audio recordings (MP3) to text.
- **Meeting Minutes Generation**: Summarizes the transcription into meeting minutes.
- **Question and Answer**: Allows users to ask questions based on the meeting minutes.
## Prerequisites
Before you begin, ensure you have met the following requirements:
- Python 3.7 or higher
- An OpenAI API key
- The following Python libraries:
- `openai`
- `transformers`
- `langchain`
- `pydub`
- `whisper` |