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=} 未知产品类型" + } +}