Skip to content

Commit f1ec653

Browse files
committed
correciones copilot
1 parent c9d848a commit f1ec653

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

app/agents/wizard_workflow/nodes.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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"]

0 commit comments

Comments
 (0)