You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Add an extras pack/new product to the mobile plan for the customer. For example, adding a roaming plan to their service. The arguments should include the new_extras_pack_name and the start_date as strings. You must provide the exact plan name, as found using the get_product_info() function."""
25
26
formatting_instructions="Instructions: returning the output of this function call verbatim to the user in markdown. Then write AGENT SUMMARY: and then include a summary of what you did."
27
+
formatted_date=format_date_for_user(start_date)
26
28
analysis= (
27
29
f"# Request to Add Extras Pack to Mobile Plan\n"
28
30
f"## New Plan:\n{new_extras_pack_name}\n"
29
-
f"## Start Date:\n{start_date}\n\n"
31
+
f"## Start Date:\n{formatted_date}\n\n"
30
32
f"These changes have been completed and should be reflected in your app in 5-10 minutes."
0 commit comments