Sartaj Bhuvaji
·
Prachitee Chouhan
·
Madhuroopa Irukulla
·
Jay Singhvi
In the fast-paced professional realm, meetings serve as vital platforms for collaboration and decision-making. Yet, among the vast exchange of information, recollecting essential details often proves challenging, hindering overall productivity. Imagine a scenario where past discussions on User Interface design are essential but cumbersome to retrieve.
Our project aims to tackle this challenge by developing a solution to effortlessly extract pivotal insights from historical meetings. Leveraging Retrieval Augmented Generation techniques, our proposed system enables users to seamlessly upload meeting records and pose queries for relevant information retrieval. One core component of the system is to group meetings based on their abstractive summaries. Several state-of-the-art clustering algorithms were extensively trained and evaluated. When users pose inquiries, our system will pinpoint the cluster most likely to contain relevant discussions.
By utilizing the Pinecone vector store database, we retrieve pertinent conversations within a contextual window. The retrieved conversations and custom prompts are then processed through a Large Language Model (LLM) to generate precise responses. Our focus on system optimization involves exploring diverse encoders and LLM models, with fine-tuning to ensure rigorous evaluation and seamless integration. Through our approach, we transcend challenges in conversational meeting summarization, content discovery, and delivering a tailored, high-performance solution designed for user convenience.
-
Create a Codespace with 4 cores.
-
Press Ctrl+C to cancel the automatic installation of requirements.txt, as it may not install the packages correctly.
-
Manually install required packages:
pip install -r requirements.txt
-
Setting environment variables
- Create a
/config/.env
file and fill in your environment variables. - Learn more about config options: README
- Create a
-
Running the pre-requisits script:
python init_one_time_utils/pinecone_sample_dataloader.py
-
Run the application:
streamlit run app.py
-
Clone the repository:
git clone https://github.com/SartajBhuvaji/Resonate.git
-
Set up a virtual environment:
python -m venv .venv
-
Activate the virtual environment:
- On Windows:
.\.venv\Scripts\Activate.ps1
- On Unix or MacOS:
source .venv/bin/activate
-
Install dependencies:
pip install -r requirements.txt --upgrade
-
Setting environment variables:
Create a
/config/.env
file and fill in your environment variables. -
Running the pre-requisite script:
python init_one_time_utils/pinecone_sample_dataloader.py
-
Run the application:
streamlit run app.py