Logo Lanfrica

abdellahkhaiy2004/Meet-Recap

Domaine:

natural language processing

Type de record:

software
Créateur:
abd
Hôte:
Enregistre l'audio en direct lors de réunions où les participants mélangent la Darija, le français et l'anglais. Il envoie le fichier vers un point de terminaison cloud gratuit (comme l'API Whisper) pour renvoyer un résumé structuré au format Markdown. # Meet-Recap Multilingual meeting recorder and summarizer — handles Darija, French, and English (code-switching included). Records audio locally, sends it to Groq's free Whisper endpoint for transcription, then generates a structured Markdown summary with an LLM. --- ## How to run the project ### Prerequisites | Tool | Minimum version | Where to get it | |---|---|---| | Flutter SDK | 3.16.0 | docs.flutter.dev | | Dart SDK | 3.2.0 | Bundled with Flutter | | Android SDK | API 21+ | Android Studio or `sdkmanager` | | Java (JDK) | 17 | adoptium.net | | A Groq API key | — | console.groq.com (free tier) | ### 1. Clone and enter the project ```bash git clone cd auto-Dardacha ``` ### 2. Set up your environment file ```bash cp .env.example .env ``` Open `.env` and fill in `GROQ_API_KEY` with the key you created at console.groq.com. The other variables have safe defaults and can be left as-is. ### 3. Generate platform directories (first time only) `flutter create` was not run in this repo — run it once to generate the `android/` and `ios/` directories: ```bash flutter create . --project-name auto_derdacha --org com.autoderdacha ``` This will not overwrite existing files. ### 4. Install dependencies ```bash flutter pub get ``` ### 5. Generate Drift database code ```bash dart run build_runner build --delete-conflicting-outputs ``` ### 6. Run the app ```bash flutter run --dart-define-from-file=.env ``` For VS Code users, add to `.vscode/launch.json`: ```json { "version": "0.2.0", "configurations": [ { "name": "auto_derdacha", "request": "launch", "type": "dart", "args": ["--dart-define-from-file=.env"] } ] } ``` --- ## Running on an Android emulator via Android Studio This section covers the full path from a fresh Android Studio install to seeing the app running in an emulator. ### A. Install and configure Android Studio 1. Download **Android Studio** (Hedgehog 2023.1.1 or later) from https: …