Skip to content

v0.0.2 - Latest

Pre-release
Pre-release
Compare
Choose a tag to compare
@sujithatzackriya sujithatzackriya released this 08 Feb 12:50
· 21 commits to main since this release
14920b3

Pre Release 0.0.2

A new release is available!

What's New

  • Transcription quality is improved.
  • Bug fixes and improvements for frontend
  • Better backend app build process
  • Improved documentation
  • New .dmg package

What would be next?

  • Database connection to save meeting minutes
  • Improve summarization quality for smaller llm models
  • Add download options for meeting transcriptions
  • Add download option for summary

Known issues

- Smaller LLMs can hallucinate, making summarization quality poor; Please use model above 32B parameter size

  • Backend build process require CMake, C++ compiler, etc. Making it harder to build
  • Backend build process require Python 3.10 or newer
  • Frontend build process require Node.js

How to Get Started

Frontend

Running from dmg

  1. Download the dmg.zip file
  2. Extract the file
  3. double click meeting-minutes-frontend_0.1.0_aarch64.dmg file inside the dmg folder
  4. Move the meeting-minutes-frontend.app to Applications folder
  5. Execute the following command in terminal
xattr -c /Applications/meeting-minutes-frontend.app

Backend

  1. git clone the repo
git clone https://github.com/Zackriya-Solutions/meeting-minutes
  1. Go to the backend directory:
cd meeting-minutes/backend

chmod +x  build_whisper.sh    
  1. Make sure you have install all the pre requsites before proceeding - ffmpeg, cmake, c++ compiler and Python versions between 3.10 and 3.12 are required

  2. Add env file

echo -e "ANTHROPIC_API_KEY=your_api_key\nGROQ_API_KEY=your_api_key" | tee .env

4.1 Add API Keys in .env files if you are planning to use Anthropic or groq.

  1. Build dependencies by eunning ./build_whisper.sh

  2. Run the server with ./clean_start_backend.sh

What's Changed

Full Changelog: v0.0.1.1...v0.0.2