v0.0.2 - Latest
Pre-release
Pre-release
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
- Download the
dmg.zip
file - Extract the file
- double click
meeting-minutes-frontend_0.1.0_aarch64.dmg
file inside the dmg folder - Move the
meeting-minutes-frontend.app
to Applications folder - Execute the following command in terminal
xattr -c /Applications/meeting-minutes-frontend.app
Backend
- git clone the repo
git clone https://github.com/Zackriya-Solutions/meeting-minutes
- Go to the
backend
directory:
cd meeting-minutes/backend
chmod +x build_whisper.sh
-
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
-
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.
-
Build dependencies by eunning
./build_whisper.sh
-
Run the server with
./clean_start_backend.sh
What's Changed
- Pre release by @sujithatzackriya in #11
Full Changelog: v0.0.1.1...v0.0.2