Skip to content

Commit 29e1c26

Browse files
chore(healthcare-appointment-scheduling): poly pull latest agent config
1 parent 980b1a7 commit 29e1c26

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

‎healthcare-appointment-scheduling/_gen/.agent_studio_config‎

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

‎healthcare-appointment-scheduling/flows/booking_flow/functions/appointment_type_confirmed.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
@func_latency_control(
2323
delay_before_responses_start=0,
2424
silence_after_each_response=3,
25-
delay_responses=[("typing_noise_short", 2), ("typing_noise_long", 4)],
25+
delay_responses=[("One moment.", 2), ("Just looking that up now.", 3)],
2626
)
2727
def appointment_type_confirmed(conv: Conversation, flow: Flow, appointment_type: str):
2828
"""Fetch available slots for the chosen appointment type and offer two options."""

‎healthcare-appointment-scheduling/flows/idnv/function_steps/match_dob_and_identify.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def _patient_to_state_dict(p) -> dict:
5656
@func_latency_control(
5757
delay_before_responses_start=0,
5858
silence_after_each_response=3,
59-
delay_responses=[("typing_noise", 2), ("One moment.", 3)],
59+
delay_responses=[("One moment.", 2), ("Almost done.", 3)],
6060
)
6161
def match_dob_and_identify(conv: Conversation, flow: Flow):
6262
"""Match DOB to candidate patients; save identified patient or hand off."""

‎healthcare-appointment-scheduling/flows/idnv/function_steps/match_name_to_account.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
@func_latency_control(
1515
delay_before_responses_start=0,
1616
silence_after_each_response=3,
17-
delay_responses=[("typing_noise", 2), ("Just looking that up now.", 3)],
17+
delay_responses=[("Just looking that up now.", 2), ("One moment.", 3)],
1818
)
1919
def match_name_to_account(conv: Conversation, flow: Flow):
2020
"""Use prompt_llm to decide if user's stated name matches the account name."""

‎healthcare-appointment-scheduling/flows/idnv/function_steps/save_collected_phone_and_lookup.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
@func_latency_control(
1010
delay_before_responses_start=0,
1111
silence_after_each_response=3,
12-
delay_responses=[("typing_noise", 2), ("Just a second.", 3), ("typing_noise", 2)],
12+
delay_responses=[("Just a second.", 2), ("Almost done.", 3)],
1313
)
1414
def save_collected_phone_and_lookup(conv: Conversation, flow: Flow):
1515
"""Save collected phone to state, look up patients, then DOB or collect number."""

0 commit comments

Comments
 (0)