This commit is contained in:
yumoqing 2026-03-27 13:28:54 +08:00
parent 87746b4a99
commit 464caa5a94

View File

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