This commit is contained in:
ahmed531998 2023-04-19 17:29:11 +02:00
parent 31f53a495d
commit 7c150c7f78
2 changed files with 6 additions and 6 deletions

View File

@ -2,10 +2,10 @@ FROM python:3.8
WORKDIR /backend
COPY requirements_simple.txt .
COPY requirements_main.txt .
RUN pip install -r requirements_simple.txt
RUN pip install -r requirements_main.txt
COPY . .
ENTRYPOINT ["python", "main_simple.py"]
ENTRYPOINT ["python", "main.py"]

View File

@ -209,7 +209,7 @@ if __name__ == "__main__":
'history text NOT NULL,'
'janet_modified_query text NOT NULL,'
'is_modified_query_correct text NOT NULL,'
'user_modified_query text NOT NULL, evidence_useful text NOT NULL,'
'user_modified_query text, evidence_useful text NOT NULL,'
'response text NOT NULL,'
'preferred_response text,'
'response_length_feedback text NOT NULL,'