tencentcloud-sdk-nodejs-tokenhub 4.1.264 → 4.1.265
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -57,7 +57,7 @@ export declare class Client extends TencentCloudCommon.AbstractClient {
|
|
|
57
57
|
/**
|
|
58
58
|
* 查询 TokenPlan APIKey 调用明细。
|
|
59
59
|
|
|
60
|
-
从 CLS 日志服务查询套餐下的调用明细,按
|
|
60
|
+
从 CLS 日志服务查询套餐下的调用明细,按 team_id 过滤,支持游标分页。
|
|
61
61
|
*/
|
|
62
62
|
DescribeTokenPlanApiKeyUsageDetail(req: DescribeTokenPlanApiKeyUsageDetailRequest, cb?: (error: string, rep: DescribeTokenPlanApiKeyUsageDetailResponse) => void): Promise<DescribeTokenPlanApiKeyUsageDetailResponse>;
|
|
63
63
|
/**
|
|
@@ -95,7 +95,7 @@ class Client extends TencentCloudCommon.AbstractClient {
|
|
|
95
95
|
/**
|
|
96
96
|
* 查询 TokenPlan APIKey 调用明细。
|
|
97
97
|
|
|
98
|
-
从 CLS 日志服务查询套餐下的调用明细,按
|
|
98
|
+
从 CLS 日志服务查询套餐下的调用明细,按 team_id 过滤,支持游标分页。
|
|
99
99
|
*/
|
|
100
100
|
async DescribeTokenPlanApiKeyUsageDetail(req, cb) {
|
|
101
101
|
return this.request("DescribeTokenPlanApiKeyUsageDetail", req, cb);
|
|
@@ -1701,21 +1701,25 @@ export interface DeleteTokenPlanApiKeyRequest {
|
|
|
1701
1701
|
*/
|
|
1702
1702
|
export interface ModelChargingItem {
|
|
1703
1703
|
/**
|
|
1704
|
-
*
|
|
1704
|
+
* <p>价格维度标识。取值:Input(输入)、Output(输出)、Cache(缓存命中)、Thinking(思考)、BatchInput(批量输入)、BatchOutput(批量输出)、BatchCache(批量缓存命中)、ImageInput(输入图片)、ImageOutput(输出图片)、Search(搜索调用)。</p>
|
|
1705
1705
|
*/
|
|
1706
1706
|
PriceName?: string;
|
|
1707
1707
|
/**
|
|
1708
|
-
*
|
|
1708
|
+
* <p>价格维度展示名,后端直接提供当前语言文本(如 输入、Input),前端无需翻译。</p>
|
|
1709
1709
|
*/
|
|
1710
1710
|
DisplayName?: string;
|
|
1711
1711
|
/**
|
|
1712
|
-
*
|
|
1712
|
+
* <p>价格数值。</p>
|
|
1713
1713
|
*/
|
|
1714
1714
|
Price?: string;
|
|
1715
1715
|
/**
|
|
1716
|
-
*
|
|
1716
|
+
* <p>价格单位,后端直接提供当前语言文本(如 元/百万tokens、元/张、积分/次)。</p>
|
|
1717
1717
|
*/
|
|
1718
1718
|
PriceUnit?: string;
|
|
1719
|
+
/**
|
|
1720
|
+
* <p>高峰价格,为空表示无高峰定价</p>
|
|
1721
|
+
*/
|
|
1722
|
+
PeakPrice?: string;
|
|
1719
1723
|
}
|
|
1720
1724
|
/**
|
|
1721
1725
|
* DescribeTokenPlanApiKey返回参数结构体
|