Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -79,7 +79,7 @@ async def telegram_webhook(request: Request):
|
|
| 79 |
# Get the intelligent response
|
| 80 |
ai_answer = await get_ai_response(user_text)
|
| 81 |
# Send back to Telegram
|
| 82 |
-
async with httpx.AsyncClient() as client:
|
| 83 |
await client.post(
|
| 84 |
TELEGRAM_URL,
|
| 85 |
headers={"Host": "api.telegram.org"},
|
|
|
|
| 79 |
# Get the intelligent response
|
| 80 |
ai_answer = await get_ai_response(user_text)
|
| 81 |
# Send back to Telegram
|
| 82 |
+
async with httpx.AsyncClient(verify=False) as client:
|
| 83 |
await client.post(
|
| 84 |
TELEGRAM_URL,
|
| 85 |
headers={"Host": "api.telegram.org"},
|