tencentcloud-sdk-nodejs-iotexplorer 4.1.271 → 4.1.273
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
|
@@ -4775,7 +4775,7 @@ export interface TalkLLMConfig {
|
|
|
4775
4775
|
*/
|
|
4776
4776
|
Timeout?: number;
|
|
4777
4777
|
/**
|
|
4778
|
-
* <p>OpenAI
|
|
4778
|
+
* <p>OpenAI兼容模型的Base URL,Type=openai时必填</p>
|
|
4779
4779
|
*/
|
|
4780
4780
|
BaseUrl?: string;
|
|
4781
4781
|
/**
|
|
@@ -4790,6 +4790,10 @@ export interface TalkLLMConfig {
|
|
|
4790
4790
|
* <p>额外模型请求体参数,JSON对象字符串,只允许JSON object,不允许普通字符串</p>
|
|
4791
4791
|
*/
|
|
4792
4792
|
ExtraBody?: string;
|
|
4793
|
+
/**
|
|
4794
|
+
* <p>ADP 平台配置</p>
|
|
4795
|
+
*/
|
|
4796
|
+
ADP?: ADPConfig;
|
|
4793
4797
|
}
|
|
4794
4798
|
/**
|
|
4795
4799
|
* DescribeBindedProducts返回参数结构体
|
|
@@ -8768,6 +8772,15 @@ export interface DeleteLoRaGatewayResponse {
|
|
|
8768
8772
|
*/
|
|
8769
8773
|
RequestId?: string;
|
|
8770
8774
|
}
|
|
8775
|
+
/**
|
|
8776
|
+
* ADP 平台配置
|
|
8777
|
+
*/
|
|
8778
|
+
export interface ADPConfig {
|
|
8779
|
+
/**
|
|
8780
|
+
* <p>ADP 平台 AppKey</p>
|
|
8781
|
+
*/
|
|
8782
|
+
AppKey?: string;
|
|
8783
|
+
}
|
|
8771
8784
|
/**
|
|
8772
8785
|
* DeleteTWeTalkAgent返回参数结构体
|
|
8773
8786
|
*/
|