File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
app/agents/wizard_workflow Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -113,10 +113,18 @@ def ask_question_node(state: WizardState):
113113 current_q = state ["current_question" ]
114114 i = _get_current_or_next_applicable_question (current_q , wizard_responses )
115115 if i is None :
116+ completion_message = (
117+ "Muchas gracias por completar el formulario de postulacion de Ithaka!\n \n "
118+ "Hemos registrado todas tus respuestas. Nuestro equipo revisara tu postulacion "
119+ "y te contactara a la brevedad.\n \n "
120+ "Esperamos poder acompanarte en tu emprendimiento!"
121+ )
116122 return {
117123 ** state ,
124+ "messages" : [AIMessage (content = completion_message )],
118125 "completed" : True ,
119126 "awaiting_answer" : False ,
127+ "wizard_status" : "COMPLETED" ,
120128 }
121129
122130 question = WIZARD_QUESTIONS [i ]["text" ]
You can’t perform that action at this time.
0 commit comments