#!/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