mirror of
https://github.com/aljazceru/vibeline.git
synced 2026-01-16 04:54:33 +01:00
12 lines
304 B
Bash
Executable File
12 lines
304 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Activate virtual environment
|
|
source vibenv/bin/activate
|
|
|
|
echo "Processing voice memos to create transcripts..."
|
|
./src/process_voice_memos.sh
|
|
|
|
echo "Creating summaries for transcripts..."
|
|
python src/summarize_transcripts.py
|
|
|
|
echo "Done! All voice memos have been processed and summarized." |