tencentcloud-sdk-nodejs-lke 4.1.203 → 4.1.208
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
|
@@ -4112,57 +4112,57 @@ export interface AppModel {
|
|
|
4112
4112
|
*/
|
|
4113
4113
|
export interface WorkflowRunNodeInfo {
|
|
4114
4114
|
/**
|
|
4115
|
-
*
|
|
4115
|
+
* <p>节点ID</p>
|
|
4116
4116
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4117
4117
|
*/
|
|
4118
4118
|
NodeId?: string;
|
|
4119
4119
|
/**
|
|
4120
|
-
*
|
|
4120
|
+
* <p>节点类型</p>
|
|
4121
4121
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4122
4122
|
*/
|
|
4123
4123
|
NodeType?: number;
|
|
4124
4124
|
/**
|
|
4125
|
-
*
|
|
4125
|
+
* <p>节点名称</p>
|
|
4126
4126
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4127
4127
|
*/
|
|
4128
4128
|
NodeName?: string;
|
|
4129
4129
|
/**
|
|
4130
|
-
*
|
|
4130
|
+
* <p>状态</p>
|
|
4131
4131
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4132
4132
|
*/
|
|
4133
4133
|
Status?: number;
|
|
4134
4134
|
/**
|
|
4135
|
-
*
|
|
4135
|
+
* <p>输入</p>
|
|
4136
4136
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4137
4137
|
*/
|
|
4138
4138
|
Input?: string;
|
|
4139
4139
|
/**
|
|
4140
|
-
*
|
|
4140
|
+
* <p>输出</p>
|
|
4141
4141
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4142
4142
|
*/
|
|
4143
4143
|
Output?: string;
|
|
4144
4144
|
/**
|
|
4145
|
-
*
|
|
4145
|
+
* <p>任务输出</p>
|
|
4146
4146
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4147
4147
|
*/
|
|
4148
4148
|
TaskOutput?: string;
|
|
4149
4149
|
/**
|
|
4150
|
-
*
|
|
4150
|
+
* <p>错误信息</p>
|
|
4151
4151
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4152
4152
|
*/
|
|
4153
4153
|
FailMessage?: string;
|
|
4154
4154
|
/**
|
|
4155
|
-
*
|
|
4155
|
+
* <p>花费时长,单位为毫秒</p>
|
|
4156
4156
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4157
4157
|
*/
|
|
4158
4158
|
CostMilliSeconds?: number;
|
|
4159
4159
|
/**
|
|
4160
|
-
*
|
|
4160
|
+
* <p>大模型输出信息</p>
|
|
4161
4161
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4162
4162
|
*/
|
|
4163
4163
|
StatisticInfos?: Array<StatisticInfo>;
|
|
4164
4164
|
/**
|
|
4165
|
-
*
|
|
4165
|
+
* <p>错误代码</p>
|
|
4166
4166
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
4167
4167
|
*/
|
|
4168
4168
|
FailCode?: string;
|
|
@@ -9552,64 +9552,50 @@ export interface RetryReleaseResponse {
|
|
|
9552
9552
|
*/
|
|
9553
9553
|
export interface NodeRunBase {
|
|
9554
9554
|
/**
|
|
9555
|
-
*
|
|
9555
|
+
* <p>节点运行的ID</p>
|
|
9556
9556
|
*/
|
|
9557
9557
|
NodeRunId?: string;
|
|
9558
9558
|
/**
|
|
9559
|
-
*
|
|
9559
|
+
* <p>节点ID</p>
|
|
9560
9560
|
*/
|
|
9561
9561
|
NodeId?: string;
|
|
9562
9562
|
/**
|
|
9563
|
-
*
|
|
9563
|
+
* <p>工作流运行实例的ID</p>
|
|
9564
9564
|
*/
|
|
9565
9565
|
WorkflowRunId?: string;
|
|
9566
9566
|
/**
|
|
9567
|
-
*
|
|
9567
|
+
* <p>节点名称</p>
|
|
9568
9568
|
*/
|
|
9569
9569
|
NodeName?: string;
|
|
9570
9570
|
/**
|
|
9571
|
-
*
|
|
9572
|
-
1: 开始节点
|
|
9573
|
-
2:参数提取节点
|
|
9574
|
-
3:大模型节点
|
|
9575
|
-
4:知识问答节点
|
|
9576
|
-
5:知识检索节点
|
|
9577
|
-
6:标签提取节点
|
|
9578
|
-
7:代码执行节点
|
|
9579
|
-
8:工具节点
|
|
9580
|
-
9:逻辑判断节点
|
|
9581
|
-
10:回复节点
|
|
9582
|
-
11:选项卡节点
|
|
9583
|
-
12:循环节点
|
|
9584
|
-
13:意图识别节点
|
|
9585
|
-
14:工作流节点
|
|
9586
|
-
15:插件节点
|
|
9587
|
-
16:结束节点
|
|
9588
|
-
17: 变量聚合节点数据
|
|
9589
|
-
18: 批处理节点
|
|
9590
|
-
19: 消息队列节点
|
|
9571
|
+
* <p>节点类型。<br>1: 开始节点<br>2:参数提取节点<br>3:大模型节点<br>4:知识问答节点<br>5:知识检索节点<br>6:标签提取节点<br>7:代码执行节点<br>8:工具节点<br>9:逻辑判断节点<br>10:回复节点<br>11:选项卡节点<br>12:循环节点<br>13:意图识别节点<br>14:工作流节点<br>15:插件节点<br>16:结束节点<br>17: 变量聚合节点数据<br>18: 批处理节点<br>19: 消息队列节点</p>
|
|
9591
9572
|
*/
|
|
9592
9573
|
NodeType?: number;
|
|
9593
9574
|
/**
|
|
9594
|
-
*
|
|
9575
|
+
* <p>运行状态。0: 初始状态;1: 运行中;2: 运行成功; 3: 运行失败; 4: 已取消</p>
|
|
9595
9576
|
*/
|
|
9596
9577
|
State?: number;
|
|
9597
9578
|
/**
|
|
9598
|
-
*
|
|
9579
|
+
* <p>错误码</p>
|
|
9599
9580
|
*/
|
|
9600
9581
|
FailCode?: string;
|
|
9601
9582
|
/**
|
|
9602
|
-
*
|
|
9583
|
+
* <p>错误信息</p>
|
|
9603
9584
|
*/
|
|
9604
9585
|
FailMessage?: string;
|
|
9605
9586
|
/**
|
|
9606
|
-
*
|
|
9587
|
+
* <p>消耗时间(毫秒)</p>
|
|
9607
9588
|
*/
|
|
9608
9589
|
CostMilliseconds?: number;
|
|
9609
9590
|
/**
|
|
9610
|
-
*
|
|
9591
|
+
* <p>消耗的token总数</p>
|
|
9611
9592
|
*/
|
|
9612
9593
|
TotalTokens?: number;
|
|
9594
|
+
/**
|
|
9595
|
+
* <p>分支下标列表</p><p>单位:无</p>
|
|
9596
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
9597
|
+
*/
|
|
9598
|
+
BranchIndexList?: Array<number | bigint>;
|
|
9613
9599
|
}
|
|
9614
9600
|
/**
|
|
9615
9601
|
* 智能通话
|