Am building an A.I. construct that can save people email and phone number. It is assigned in a routene as follows: Input
[owner]'s (email) is [[owner]_Email].
When recalling the information, the following is the input
What is [owner]'s (email)?
But the construct should be smart enough to remark if an email has or has not been assigned to the owner. The condition for those remarks are
vars["[owner]_Email"] != null (if has been assigned)
vars["[owner]_Email"] == null (if not)
But the process currently always processes not. (Conditions were removed (for testing) to assure that the correct variable could be recalled).
So what is the correct syntax to use conditions with compound variables?



