tencentcloud-sdk-nodejs-adp 4.1.302 → 4.1.304

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tencentcloud-sdk-nodejs-adp",
3
- "version": "4.1.302",
3
+ "version": "4.1.304",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -740,11 +740,11 @@ export interface AgentSpec {
740
740
  */
741
741
  Profile?: AgentProfile;
742
742
  /**
743
- * 系统提示词
743
+ * <p>系统提示词</p>
744
744
  */
745
745
  Instructions?: string;
746
746
  /**
747
- * 主模型配置
747
+ * <p>主模型配置</p>
748
748
  */
749
749
  Model?: AgentModelConfig;
750
750
  /**
@@ -760,9 +760,13 @@ export interface AgentSpec {
760
760
  */
761
761
  SkillList?: Array<AgentSkillConfig>;
762
762
  /**
763
- * 高级设置
763
+ * <p>高级设置</p>
764
764
  */
765
765
  AdvancedConfig?: AgentAdvancedConfig;
766
+ /**
767
+ * <p>调用方执行的 Function Tool 列表</p><p>入参限制:仅在 C 端用户态 Agent 场景可用,B 端配置态 Agent 忽略该字段与</p>
768
+ */
769
+ ExternalToolList?: Array<AgentExternalToolConfig>;
766
770
  }
767
771
  /**
768
772
  * ClawAgent配置
@@ -4705,6 +4709,27 @@ export interface CreateConversationRequest {
4705
4709
  */
4706
4710
  AgentId?: string;
4707
4711
  }
4712
+ /**
4713
+ * 调用方执行的 Function Tool 配置
4714
+ */
4715
+ export interface AgentExternalToolConfig {
4716
+ /**
4717
+ * <p>工具类型</p><p>入参限制:目前仅支持 &quot;function&quot;</p>
4718
+ */
4719
+ Type?: string;
4720
+ /**
4721
+ * <p>工具名称</p>
4722
+ */
4723
+ Name?: string;
4724
+ /**
4725
+ * <p>工具描述</p>
4726
+ */
4727
+ Description?: string;
4728
+ /**
4729
+ * <p>工具入参定义</p>
4730
+ */
4731
+ Parameters?: Array<RequestParam>;
4732
+ }
4708
4733
  /**
4709
4734
  * DescribeMsgRecordCategoryList请求参数结构体
4710
4735
  */
@@ -6524,6 +6549,10 @@ export interface AgentDetail {
6524
6549
  * <p>高级配置</p>
6525
6550
  */
6526
6551
  AdvancedConfig?: AgentAdvancedConfig;
6552
+ /**
6553
+ * <p>调用方执行的 Function Tool 列表</p><p>入参限制:仅在 C 端用户态 Agent 场景可用,B 端配置态 Agent 忽略该字段与</p>
6554
+ */
6555
+ ExternalToolList?: Array<AgentExternalToolConfig>;
6527
6556
  }
6528
6557
  /**
6529
6558
  * ModifyVariable请求参数结构体