28 lines
1.1 KiB
Bash
Executable File
28 lines
1.1 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# email-processor — wrapper script for the email processor.
|
|
#
|
|
# Usage:
|
|
# ./email-processor.sh scan # classify unseen emails
|
|
# ./email-processor.sh scan --recent 30 # last 30 days
|
|
# ./email-processor.sh scan --dry-run # classify only, no changes
|
|
# ./email-processor.sh scan --recent 7 --dry-run # combine both
|
|
# ./email-processor.sh review list # show pending queue
|
|
# ./email-processor.sh review 1 delete # act on email #1
|
|
# ./email-processor.sh review all delete # act on all pending
|
|
# ./email-processor.sh review accept # accept all suggestions
|
|
# ./email-processor.sh stats # show history stats
|
|
# ./email-processor.sh migrate # import old decisions
|
|
#
|
|
# Requires: Python 3.8+, himalaya, Ollama running with model.
|
|
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
|
|
# Activate the virtualenv if it exists
|
|
if [ -d "$SCRIPT_DIR/venv" ]; then
|
|
source "$SCRIPT_DIR/venv/bin/activate"
|
|
fi
|
|
|
|
exec python3 "$SCRIPT_DIR/main.py" "$@"
|