22 lines
409 B
Python
22 lines
409 B
Python
from testenv import runtest
|
|
from platformbiz.pricing import calc_prod_price
|
|
|
|
async def test(sor):
|
|
prodid = 'a--akNeu1Ia-NOZAJAadf'
|
|
spec_config = [
|
|
{
|
|
"spec_name":"input_tokens",
|
|
"count":12832
|
|
},
|
|
{
|
|
"spec_name":"output_tokens",
|
|
"count":786323
|
|
}
|
|
]
|
|
price = calc_prod_price(sor, prodid, spec_config)
|
|
print(f'{prodid=}, {spec_config=}, {price=}')
|
|
|
|
if __name__ == '__main__':
|
|
runtest(test)
|
|
|