Update app.py
Browse files
app.py
CHANGED
|
@@ -16,8 +16,10 @@ auth_token = os.environ["TWILIO_AUTH_TOKEN"]
|
|
| 16 |
my_number = os.environ["MY_NUMBER"]
|
| 17 |
client = Client(account_sid, auth_token)
|
| 18 |
|
|
|
|
|
|
|
| 19 |
@tool
|
| 20 |
-
def send_message(phone_number:str, text:str)->
|
| 21 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
| 22 |
"""A tool that sends you a Whatsapp message at the number containing text
|
| 23 |
Args:
|
|
|
|
| 16 |
my_number = os.environ["MY_NUMBER"]
|
| 17 |
client = Client(account_sid, auth_token)
|
| 18 |
|
| 19 |
+
print(my_number)
|
| 20 |
+
|
| 21 |
@tool
|
| 22 |
+
def send_message(phone_number:str, text:str)-> str:
|
| 23 |
#Keep this format for the description / args / args description but feel free to modify the tool
|
| 24 |
"""A tool that sends you a Whatsapp message at the number containing text
|
| 25 |
Args:
|