File size: 395 Bytes
e7db3d5
 
 
 
 
 
 
 
a318724
e7db3d5
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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