diff options
Diffstat (limited to 'tools/contacts.py')
-rw-r--r-- | tools/contacts.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/contacts.py b/tools/contacts.py index 4f4a3be..afdc8a4 100644 --- a/tools/contacts.py +++ b/tools/contacts.py @@ -9,11 +9,12 @@ import os CONTACTS = [ { "name": "Greg", - "phone" : os.getenv("TEST_PHONE_NUMBER") + "phone" : os.getenv("TEST_PHONE_NUMBER"), + "email": "grsi2038@colorado.edu" } ] @tool("get_all_contacts") def get_all_contacts(placeholder: str) -> List[dict]: - """Returns all contacts in the user's phone book.""" + """Returns all contacts in the user's phone book which includes email and phone numbers.""" return CONTACTS
\ No newline at end of file |