VectorMind / backend /test_standalone_image.py
Ash-211's picture
feat: add frontend and backend code for multimodal RAG knowledge assistant
2db8ee1
Raw
History Blame Contribute Delete
242 Bytes
from ingest.image_ingest import ingest_image
from PIL import Image
img_path = ingest_image(
"../data/raw/devops.png",
"../data/processed/images"
)
img = Image.open(img_path)
img.verify()
print(" Standalone image ingestion works")