From 1cb8a09c026d1b80a2597ea18e88fef348c89fc8 Mon Sep 17 00:00:00 2001 From: goulustis Date: Fri, 7 Nov 2025 14:54:28 +0800 Subject: [PATCH] generic keys --- fastapi_server/test_dashscope_client.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/fastapi_server/test_dashscope_client.py b/fastapi_server/test_dashscope_client.py index 45e9e5d..a87f9b9 100644 --- a/fastapi_server/test_dashscope_client.py +++ b/fastapi_server/test_dashscope_client.py @@ -40,9 +40,9 @@ dialogue = [ ] call_params = { - "api_key": API_KEY, - "app_id": APP_ID, - "session_id": SESSION_ID, + "api_key": "test_key", + "app_id": "test_app", + "session_id": "123", "messages": dialogue, "stream": True, }