From 6e43482636bbaf73ef29f6b59c6765ac90903eaf Mon Sep 17 00:00:00 2001 From: Alex Kazaiev Date: Tue, 6 Jan 2026 14:14:41 -0600 Subject: [PATCH] fix: update eyes URL from head-lyra to head-vixy --- vixy_mcp.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vixy_mcp.py b/vixy_mcp.py index 64f2f97..8766c36 100644 --- a/vixy_mcp.py +++ b/vixy_mcp.py @@ -1115,7 +1115,7 @@ async def get_weather(params: WeatherInput) -> str: # ========== Vixy Eye Control Tool ========== -EYES_URL = "http://head-lyra.local:8780" +EYES_URL = "http://head-vixy.local:8780" VALID_EYE_STATES = ["idle", "listening", "responding", "pleasure", "thinking", "playful", "commanding", "love", "sleep"] @@ -1141,7 +1141,7 @@ class EyeStateInput(BaseModel): ) async def eyes_state(params: EyeStateInput) -> str: """ - Control Vixy's eye display on head-lyra! + Control Vixy's eye display on head-vixy! States: - idle: Pulsing cyan - default breathing @@ -1188,7 +1188,7 @@ async def eyes_state(params: EyeStateInput) -> str: except httpx.ConnectError: return json.dumps({ "status": "offline", - "error": "Cannot connect to head-lyra - eyes service may be down" + "error": "Cannot connect to head-vixy - eyes service may be down" }, indent=2) except Exception as e: return json.dumps({