Skip to content

Commit

Permalink
feat: 배포를 위해 시연 코드 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
saebyeok0306 committed Nov 19, 2023
1 parent 7d5cd33 commit 3921209
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions moview/service/answer/answer_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ def maybe_give_followup_question_about_latest_answer(self, interview_id: str, qu
saved_followup_question_id = self.__save_followup_question(interview_id=interview_id,
question_id=question_id,
followup_question_content=chosen_question)
return None, None
# return chosen_question, str(saved_followup_question_id)

return chosen_question, str(saved_followup_question_id)

else:
execution_trace_logger(msg="NO_FOLLOWUP_QUESTION")
Expand Down
1 change: 0 additions & 1 deletion moview/service/input_data_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ async def ask_initial_question_to_interviewee(
# Initial Question Entity Model 생성 및 Document 저장
question_document_id_list = []

initial_question_list = ["TEST1", "TEST2", "TEST3"] # 시연용 질문 리스트
for question_content in initial_question_list:
question_model = self.__create_question_entity(question_content=question_content)
question_document = self.question_answer_repository.save_question(question_model)
Expand Down

0 comments on commit 3921209

Please sign in to comment.