feat: first version of vecstore, docloader and embeddings working

This commit is contained in:
Ibis Prevedello 2023-04-06 13:55:07 -03:00
commit cf4ceb0e1a
14 changed files with 1718 additions and 13 deletions

View file

@ -3,7 +3,7 @@ FROM python:3.10-slim
WORKDIR /app
# Install Poetry
RUN apt-get update && apt-get install gcc curl -y
RUN apt-get update && apt-get install gcc curl build-essential -y
RUN curl -sSL https://install.python-poetry.org | python3 -
# # Add Poetry to PATH
ENV PATH="${PATH}:/root/.local/bin"