platformbiz/wwwroot/product_query_price.dspy
2026-03-27 14:32:02 +08:00

12 lines
233 B
Plaintext

product_type = params_kw.product_type
if product_type == 'llm':
r = await path_call(request, '/llmage/llm_query_price.dspy')
return r
return {
"status": "error",
"data": {
"message": f"{product_type=} 未知产品类型"
}
}