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,