#!/bin/bash
# PHT Automated Sales System - Test Run
# Processes 10 South African citrus companies end-to-end

echo "========================================="
echo "  PHT TEST RUN - 10 PROSPECTS"
echo "========================================="
echo ""
echo "This will:"
echo "  1. Find 10 South African citrus companies"
echo "  2. Enrich with contacts (Quality/Ops Managers)"
echo "  3. Generate personalized emails"
echo "  4. Show you the results"
echo ""
echo "NO emails will be sent - this is review only."
echo ""
read -p "Press Enter to start..."

cd "$(dirname "$0")"

# Run the pipeline
python3 run_pipeline.py test

echo ""
echo "========================================="
echo "  TEST COMPLETE"
echo "========================================="
echo ""
echo "Review the output files in:"
echo "  automation/data/"
echo ""
echo "When ready to proceed:"
echo "  1. Review personalized emails"
echo "  2. Give approval to load into Instantly"
echo "  3. Launch campaign"
