Update app.py
Browse files
app.py
CHANGED
@@ -76,7 +76,7 @@ agent = Agent(
|
|
76 |
|
77 |
@app.post("/sms")
|
78 |
async def sms_reply(Body: str = Form(...), From: str = Form(...)):
|
79 |
-
print(f"Received message
|
80 |
|
81 |
try:
|
82 |
bot_response = agent.run(Body, markdown=True).content
|
|
|
76 |
|
77 |
@app.post("/sms")
|
78 |
async def sms_reply(Body: str = Form(...), From: str = Form(...)):
|
79 |
+
print(f"Received message: {Body}")
|
80 |
|
81 |
try:
|
82 |
bot_response = agent.run(Body, markdown=True).content
|