@yuntijs/arcadia-bff-sdk 1.2.142 → 1.2.144

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/dist/cjs/sdk.d.ts CHANGED
@@ -530,7 +530,10 @@ export type AgentTemplate = {
530
530
  modeConfig: AgentTemplateModeConfig;
531
531
  /** model 指具体使用的模型名称,比如 gpt-3.5-turbo 或者 chatglm_turbo */
532
532
  model?: Maybe<Scalars['String']['output']>;
533
- /** bot 模板名称 */
533
+ /**
534
+ * bot 模板名称
535
+ * 规则:遵循 k8s 命名规则(创建 agent 实例时基于模板名称)
536
+ */
534
537
  name: Scalars['String']['output'];
535
538
  /** pluginConfigs 插件配置 */
536
539
  pluginConfigs?: Maybe<Array<Maybe<PluginConfig>>>;
@@ -686,7 +689,7 @@ export type CreateAgentTemplateInput = {
686
689
  /** Icon,应用头像, 图片访问路径 */
687
690
  icon?: InputMaybe<Scalars['String']['input']>;
688
691
  /** llm 指当前知识库应用使用的模型服务,即 Kind 为 LLM 的 CR 的名称 */
689
- llm: TypedObjectReferenceInput;
692
+ llm?: InputMaybe<TypedObjectReferenceInput>;
690
693
  /** llmConnectID 指当前知识库应用使用的模型服务(即当前已经建立连接的模型服务) */
691
694
  llmConnectID?: InputMaybe<Scalars['String']['input']>;
692
695
  /** maxLength 最大响应长度 */
@@ -697,7 +700,10 @@ export type CreateAgentTemplateInput = {
697
700
  modeConfig: AgentTemplateModeConfigInput;
698
701
  /** model 指具体使用的模型名称,比如 gpt-3.5-turbo 或者 chatglm_turbo */
699
702
  model?: InputMaybe<Scalars['String']['input']>;
700
- /** bot 模板名称 */
703
+ /**
704
+ * bot 模板名称
705
+ * 规则:遵循 k8s 命名规则(创建 agent 实例时基于模板名称)
706
+ */
701
707
  name: Scalars['String']['input'];
702
708
  /** pluginConfigs 插件配置 */
703
709
  pluginConfigs?: InputMaybe<Array<InputMaybe<PluginConfigInput>>>;
@@ -2112,6 +2118,8 @@ export type ListWorkerInput = {
2112
2118
  export type ListWorkflowInput = {
2113
2119
  /** 是否已有发布 */
2114
2120
  isReleased?: InputMaybe<Scalars['Boolean']['input']>;
2121
+ /** 是否包含Graph */
2122
+ keepGraph?: InputMaybe<Scalars['Boolean']['input']>;
2115
2123
  /** 关键词: 模糊匹配 */
2116
2124
  keyword?: InputMaybe<Scalars['String']['input']>;
2117
2125
  /** 资源所在的命名空间 */
@@ -3478,7 +3486,10 @@ export type UpdateAgentTemplateInput = {
3478
3486
  modeConfig?: InputMaybe<AgentTemplateModeConfigInput>;
3479
3487
  /** model 指具体使用的模型名称,比如 gpt-3.5-turbo 或者 chatglm_turbo */
3480
3488
  model?: InputMaybe<Scalars['String']['input']>;
3481
- /** bot 模板名称 */
3489
+ /**
3490
+ * bot 模板名称
3491
+ * 规则:遵循 k8s 命名规则(创建 agent 实例时基于模板名称)
3492
+ */
3482
3493
  name?: InputMaybe<Scalars['String']['input']>;
3483
3494
  /** pluginConfigs 要使用的插件配置 */
3484
3495
  pluginConfigs?: InputMaybe<Array<InputMaybe<PluginConfigInput>>>;
package/dist/esm/sdk.d.ts CHANGED
@@ -530,7 +530,10 @@ export type AgentTemplate = {
530
530
  modeConfig: AgentTemplateModeConfig;
531
531
  /** model 指具体使用的模型名称,比如 gpt-3.5-turbo 或者 chatglm_turbo */
532
532
  model?: Maybe<Scalars['String']['output']>;
533
- /** bot 模板名称 */
533
+ /**
534
+ * bot 模板名称
535
+ * 规则:遵循 k8s 命名规则(创建 agent 实例时基于模板名称)
536
+ */
534
537
  name: Scalars['String']['output'];
535
538
  /** pluginConfigs 插件配置 */
536
539
  pluginConfigs?: Maybe<Array<Maybe<PluginConfig>>>;
@@ -686,7 +689,7 @@ export type CreateAgentTemplateInput = {
686
689
  /** Icon,应用头像, 图片访问路径 */
687
690
  icon?: InputMaybe<Scalars['String']['input']>;
688
691
  /** llm 指当前知识库应用使用的模型服务,即 Kind 为 LLM 的 CR 的名称 */
689
- llm: TypedObjectReferenceInput;
692
+ llm?: InputMaybe<TypedObjectReferenceInput>;
690
693
  /** llmConnectID 指当前知识库应用使用的模型服务(即当前已经建立连接的模型服务) */
691
694
  llmConnectID?: InputMaybe<Scalars['String']['input']>;
692
695
  /** maxLength 最大响应长度 */
@@ -697,7 +700,10 @@ export type CreateAgentTemplateInput = {
697
700
  modeConfig: AgentTemplateModeConfigInput;
698
701
  /** model 指具体使用的模型名称,比如 gpt-3.5-turbo 或者 chatglm_turbo */
699
702
  model?: InputMaybe<Scalars['String']['input']>;
700
- /** bot 模板名称 */
703
+ /**
704
+ * bot 模板名称
705
+ * 规则:遵循 k8s 命名规则(创建 agent 实例时基于模板名称)
706
+ */
701
707
  name: Scalars['String']['input'];
702
708
  /** pluginConfigs 插件配置 */
703
709
  pluginConfigs?: InputMaybe<Array<InputMaybe<PluginConfigInput>>>;
@@ -2112,6 +2118,8 @@ export type ListWorkerInput = {
2112
2118
  export type ListWorkflowInput = {
2113
2119
  /** 是否已有发布 */
2114
2120
  isReleased?: InputMaybe<Scalars['Boolean']['input']>;
2121
+ /** 是否包含Graph */
2122
+ keepGraph?: InputMaybe<Scalars['Boolean']['input']>;
2115
2123
  /** 关键词: 模糊匹配 */
2116
2124
  keyword?: InputMaybe<Scalars['String']['input']>;
2117
2125
  /** 资源所在的命名空间 */
@@ -3478,7 +3486,10 @@ export type UpdateAgentTemplateInput = {
3478
3486
  modeConfig?: InputMaybe<AgentTemplateModeConfigInput>;
3479
3487
  /** model 指具体使用的模型名称,比如 gpt-3.5-turbo 或者 chatglm_turbo */
3480
3488
  model?: InputMaybe<Scalars['String']['input']>;
3481
- /** bot 模板名称 */
3489
+ /**
3490
+ * bot 模板名称
3491
+ * 规则:遵循 k8s 命名规则(创建 agent 实例时基于模板名称)
3492
+ */
3482
3493
  name?: InputMaybe<Scalars['String']['input']>;
3483
3494
  /** pluginConfigs 要使用的插件配置 */
3484
3495
  pluginConfigs?: InputMaybe<Array<InputMaybe<PluginConfigInput>>>;