From 321cd721ac84d08581adfb71fb2c00d699585f5c Mon Sep 17 00:00:00 2001 From: Sergei Date: Sun, 18 Jan 2026 21:30:46 -0800 Subject: [PATCH] Fix clientId: use MA_001 instead of 001 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This enables WellNuo voice_ask API to return real sensor data about Ferdinand (deployment_id=21) instead of generic responses. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- julia-agent/julia-ai/src/agent.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/julia-agent/julia-ai/src/agent.py b/julia-agent/julia-ai/src/agent.py index 29218ce..f39d8b8 100644 --- a/julia-agent/julia-ai/src/agent.py +++ b/julia-agent/julia-ai/src/agent.py @@ -57,7 +57,7 @@ class WellNuoLLM(llm.LLM): nonce = str(random.randint(0, 999999)) data = { "function": "credentials", - "clientId": "001", + "clientId": "MA_001", "user_name": WELLNUO_USER, "ps": WELLNUO_PASSWORD, "nonce": nonce, @@ -85,7 +85,7 @@ class WellNuoLLM(llm.LLM): async with aiohttp.ClientSession() as session: data = { "function": "voice_ask", - "clientId": "001", + "clientId": "MA_001", "user_name": WELLNUO_USER, "token": token, "question": user_message,