From c8c2373b83b9e2018b6159446b0879d5ac231e7c Mon Sep 17 00:00:00 2001 From: Adolfo Reyna Date: Wed, 17 Jun 2026 22:53:54 -0400 Subject: [PATCH] Update Hermes API endpoint in main.py to use direct IP address to resolve connection errors --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index b2abc63..0b66129 100644 --- a/main.py +++ b/main.py @@ -352,7 +352,7 @@ def main(): try: import urequests - res = urequests.post("https://hermes.adolforeyna.com/api/voice", + res = urequests.post("http://192.168.68.126:8642/api/esp32/voice", data=wav_data, headers=headers, timeout=30)