trial
This commit is contained in:
parent
6680cdc612
commit
78a2819feb
|
@ -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"]
|
||||
|
|
2
main.py
2
main.py
|
@ -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,'
|
||||
|
|
Loading…
Reference in New Issue