45 lines
2.1 KiB
Plaintext
45 lines
2.1 KiB
Plaintext
async def get_zhipu_0112_product(ns={}):
|
|
return {
|
|
'status': True,
|
|
'msg': 'get product list success',
|
|
'data': [
|
|
{
|
|
"name": "GPU节点(云算力调度系统服务、算力运维服务)算力服务器型号:8卡CPU服务器",
|
|
"price": "58000元/月/节点",
|
|
"amount": 96,
|
|
"price_month": "5568000 元/月",
|
|
"total_price": "16704000元",
|
|
"hardware": [
|
|
{"name": "GPU型号", "value": "NVIDIA A100"},
|
|
{"name": "显存", "value": "80G"},
|
|
{"name": "CPU", "value": "AMD EPYC 7763 64-core"},
|
|
{"name": "内存", "value": "256GB"},
|
|
{"name": "存储", "value": "2TB NVMe SSD"},
|
|
]
|
|
},
|
|
{
|
|
"name": "GPU计算节点(高性能图形渲染服务、并行数据处理服务)算力服务器型号:多卡GPU服务器",
|
|
"price": "11600元/月/节点",
|
|
"amount": 72,
|
|
"price_month": "835200 元/月",
|
|
"total_price": "2505600元",
|
|
"hardware": [
|
|
{"name": "GPU型号", "value": " NVIDIA RTX 4090"},
|
|
{"name": "显存", "value": "24G"},
|
|
{"name": "CPU", "value": "Intel Xeon Platinum 8375C 32-core"},
|
|
{"name": "内存", "value": "128GB"},
|
|
{"name": "存储", "value": "1TB NVMe SSD"},
|
|
]
|
|
},
|
|
{
|
|
"name": "算力技术服务",
|
|
"price": "63595/月",
|
|
"amount": 1,
|
|
"price_month": "63595 元/月",
|
|
"total_price": "190785元"
|
|
},
|
|
]
|
|
}
|
|
|
|
ret = await get_zhipu_0112_product(params_kw)
|
|
return ret |