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