File size: 443 Bytes
554baf2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/bash

# Create necessary directories
mkdir -p medical_rag/vector_store

# The vector store files should already be uploaded
# Check if they exist
if [ ! -f "medical_rag/vector_store/medical_faiss.index" ]; then
    echo "Warning: FAISS index file not found!"
fi

if [ ! -f "medical_rag/vector_store/vector_metadata.pkl" ]; then
    echo "Warning: Vector metadata file not found!"
fi

# Set up environment
pip install -r requirements.txt