opendata-vector 0.1.3

Vector similarity search database built on SlateDB
Documentation
1
2
3
4
5
6
FROM python:3.12-slim
RUN pip install --no-cache-dir requests
COPY ingestor.py /app/
COPY data/documents.json /app/
WORKDIR /app
CMD ["python3", "ingestor.py"]