#!/bin/bash # Install required packages pip install -r requirements.txt # Check if embeddings file exists if [ -f "ingredient_embeddings_voyageai.pkl" ]; then # Run with local embeddings file python main.py --share else echo "ERROR: ingredient_embeddings_voyageai.pkl file not found!" echo "Please place the embeddings file in the same directory as this script." exit 1 fi