# Placeholders across two turns with memory

turn 1: My email is priya@example.com
turn 2: Also cc bob@example.com

numbering restarts on every request:
  model was sent on turn 2: U:My email is <EMAIL_1> | A:You said: My email is <EMAIL_1> | U:Also cc <EMAIL_1>
  caller receives:          You said: Also cc bob@example.com

numbering kept per conversation (the default):
  model was sent on turn 2: U:My email is <EMAIL_1> | A:You said: My email is <EMAIL_1> | U:Also cc <EMAIL_2>
  caller receives:          You said: Also cc bob@example.com

what the memory stores (placeholders, never the addresses):
  USER      My email is <EMAIL_1>
  ASSISTANT You said: My email is <EMAIL_1>
  USER      Also cc <EMAIL_2>
  ASSISTANT You said: Also cc <EMAIL_2>
