From 464caa5a94713411ab47e304a9e549618cf3f132 Mon Sep 17 00:00:00 2001 From: yumoqing Date: Fri, 27 Mar 2026 13:28:54 +0800 Subject: [PATCH] bugfix --- wwwroot/product_query_price.dspy | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 wwwroot/product_query_price.dspy diff --git a/wwwroot/product_query_price.dspy b/wwwroot/product_query_price.dspy new file mode 100644 index 0000000..37d4c24 --- /dev/null +++ b/wwwroot/product_query_price.dspy @@ -0,0 +1,10 @@ +product_type = params_kw.product_type +if product_type == 'llm': + r = await path_call(request, '/llmage/llm_query_price.dspy', params=params_kw) + return r +return { + "status": "error", + "data": { + "message": f"{product_type=} 未知产品类型" + } +}