@yuntijs/arcadia-bff-sdk 1.2.86 → 1.2.88
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/index.d.ts +12 -0
- package/dist/cjs/sdk.d.ts +107 -0
- package/dist/cjs/sdk.js +65 -0
- package/dist/cjs/taro.d.ts +9 -0
- package/dist/esm/index.d.ts +12 -0
- package/dist/esm/sdk.d.ts +107 -0
- package/dist/esm/sdk.js +134 -128
- package/dist/esm/taro.d.ts +9 -0
- package/dist/umd/index.min.js +1 -1
- package/dist/umd/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.d.ts
CHANGED
|
@@ -274,6 +274,9 @@ export declare const sdk: {
|
|
|
274
274
|
updateAgentWorkflow(variables: import("./sdk").Exact<{
|
|
275
275
|
input: import("./sdk").UpdateAgentWorkflowInput;
|
|
276
276
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateAgentWorkflowMutation>;
|
|
277
|
+
updateAgentAudioConfig(variables: import("./sdk").Exact<{
|
|
278
|
+
input: import("./sdk").UpdateAgentAudioConfigInput;
|
|
279
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateAgentAudioConfigMutation>;
|
|
277
280
|
deleteAgentPrompt(variables: import("./sdk").Exact<{
|
|
278
281
|
namespacedname: string;
|
|
279
282
|
ids?: import("./sdk").InputMaybe<string | string[]> | undefined;
|
|
@@ -755,6 +758,9 @@ export declare const initSdk: (options?: SdkOptions) => {
|
|
|
755
758
|
updateAgentWorkflow(variables: import("./sdk").Exact<{
|
|
756
759
|
input: import("./sdk").UpdateAgentWorkflowInput;
|
|
757
760
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateAgentWorkflowMutation>;
|
|
761
|
+
updateAgentAudioConfig(variables: import("./sdk").Exact<{
|
|
762
|
+
input: import("./sdk").UpdateAgentAudioConfigInput;
|
|
763
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateAgentAudioConfigMutation>;
|
|
758
764
|
deleteAgentPrompt(variables: import("./sdk").Exact<{
|
|
759
765
|
namespacedname: string;
|
|
760
766
|
ids?: import("./sdk").InputMaybe<string | string[]> | undefined;
|
|
@@ -1448,6 +1454,9 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
1448
1454
|
updateAgentWorkflow(variables: import("./sdk").Exact<{
|
|
1449
1455
|
input: import("./sdk").UpdateAgentWorkflowInput;
|
|
1450
1456
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateAgentWorkflowMutation>;
|
|
1457
|
+
updateAgentAudioConfig(variables: import("./sdk").Exact<{
|
|
1458
|
+
input: import("./sdk").UpdateAgentAudioConfigInput;
|
|
1459
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateAgentAudioConfigMutation>;
|
|
1451
1460
|
deleteAgentPrompt(variables: import("./sdk").Exact<{
|
|
1452
1461
|
namespacedname: string;
|
|
1453
1462
|
ids?: import("./sdk").InputMaybe<string | string[]> | undefined;
|
|
@@ -2141,6 +2150,9 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
2141
2150
|
updateAgentWorkflow(variables: import("./sdk").Exact<{
|
|
2142
2151
|
input: import("./sdk").UpdateAgentWorkflowInput;
|
|
2143
2152
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateAgentWorkflowMutation>;
|
|
2153
|
+
updateAgentAudioConfig(variables: import("./sdk").Exact<{
|
|
2154
|
+
input: import("./sdk").UpdateAgentAudioConfigInput;
|
|
2155
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateAgentAudioConfigMutation>;
|
|
2144
2156
|
deleteAgentPrompt(variables: import("./sdk").Exact<{
|
|
2145
2157
|
namespacedname: string;
|
|
2146
2158
|
ids?: import("./sdk").InputMaybe<string | string[]> | undefined;
|
package/dist/cjs/sdk.d.ts
CHANGED
|
@@ -93,6 +93,8 @@ export type AddVersionInput = {
|
|
|
93
93
|
*/
|
|
94
94
|
export type Agent = {
|
|
95
95
|
__typename?: 'Agent';
|
|
96
|
+
/** audioConfig 语音配置 */
|
|
97
|
+
audioConfig?: Maybe<AudioConfig>;
|
|
96
98
|
/** conversionWindowSize 对话轮次 */
|
|
97
99
|
conversionWindowSize?: Maybe<Scalars['Int']['output']>;
|
|
98
100
|
/** docNullReturn 空搜索回复 */
|
|
@@ -213,6 +215,7 @@ export type AgentMutation = {
|
|
|
213
215
|
generatesAgentUserPrompt: Array<Scalars['String']['output']>;
|
|
214
216
|
releaseAgent: AgentMetadata;
|
|
215
217
|
updateAgent: AgentMetadata;
|
|
218
|
+
updateAgentAudioConfig?: Maybe<Scalars['Void']['output']>;
|
|
216
219
|
updateAgentKnowledgeBase?: Maybe<Scalars['Void']['output']>;
|
|
217
220
|
updateAgentModel?: Maybe<Scalars['Void']['output']>;
|
|
218
221
|
updateAgentPlugin?: Maybe<Scalars['Void']['output']>;
|
|
@@ -252,6 +255,9 @@ export type AgentMutationReleaseAgentArgs = {
|
|
|
252
255
|
export type AgentMutationUpdateAgentArgs = {
|
|
253
256
|
input: UpdateAgentMetadataInput;
|
|
254
257
|
};
|
|
258
|
+
export type AgentMutationUpdateAgentAudioConfigArgs = {
|
|
259
|
+
input: UpdateAgentAudioConfigInput;
|
|
260
|
+
};
|
|
255
261
|
export type AgentMutationUpdateAgentKnowledgeBaseArgs = {
|
|
256
262
|
input: UpdateAgentKnowledgebaseInput;
|
|
257
263
|
};
|
|
@@ -361,6 +367,10 @@ export type AllDataProcessListByPageInput = {
|
|
|
361
367
|
pageIndex: Scalars['Int']['input'];
|
|
362
368
|
pageSize: Scalars['Int']['input'];
|
|
363
369
|
};
|
|
370
|
+
export type AudioConfig = {
|
|
371
|
+
__typename?: 'AudioConfig';
|
|
372
|
+
ttsReferenceID?: Maybe<Scalars['String']['output']>;
|
|
373
|
+
};
|
|
364
374
|
export type ChatSftInput = {
|
|
365
375
|
/**
|
|
366
376
|
* 是否使用生成的适配器对话
|
|
@@ -2726,6 +2736,12 @@ export type Sft = {
|
|
|
2726
2736
|
* 规则:必填
|
|
2727
2737
|
*/
|
|
2728
2738
|
baseModel: TypedObjectReference;
|
|
2739
|
+
/** SFT 微调测试对话的附加参数 */
|
|
2740
|
+
chatAdditionalEnvs?: Maybe<Scalars['Map']['output']>;
|
|
2741
|
+
/** SFT 微调测试对话节点亲合度配置 */
|
|
2742
|
+
chatMatchExpressions?: Maybe<Array<Maybe<NodeSelectorRequirement>>>;
|
|
2743
|
+
/** SFT 微调对话测试所使用的资源 */
|
|
2744
|
+
chatResources?: Maybe<Resources>;
|
|
2729
2745
|
/** 微调完成时间, 记录微调任务完成的时间(不包括合并导出,未完成则该字段为空) */
|
|
2730
2746
|
completeTimestamp?: Maybe<Scalars['Time']['output']>;
|
|
2731
2747
|
/** 创建时间 */
|
|
@@ -3086,6 +3102,20 @@ export type TypedObjectReferenceInput = {
|
|
|
3086
3102
|
name: Scalars['String']['input'];
|
|
3087
3103
|
namespace?: InputMaybe<Scalars['String']['input']>;
|
|
3088
3104
|
};
|
|
3105
|
+
export type UpdateAgentAudioConfigInput = {
|
|
3106
|
+
/**
|
|
3107
|
+
* 应用名称, 用于确定要更新哪个应用
|
|
3108
|
+
* 规则: 遵循 k8s 命名
|
|
3109
|
+
*/
|
|
3110
|
+
name: Scalars['String']['input'];
|
|
3111
|
+
/**
|
|
3112
|
+
* 应用所在的 namespace, 用于确定要更新哪个应用
|
|
3113
|
+
* 规则: 非空
|
|
3114
|
+
*/
|
|
3115
|
+
namespace: Scalars['String']['input'];
|
|
3116
|
+
/** 参考音频ID */
|
|
3117
|
+
ttsReferenceID?: InputMaybe<Scalars['String']['input']>;
|
|
3118
|
+
};
|
|
3089
3119
|
export type UpdateAgentKnowledgebaseInput = {
|
|
3090
3120
|
/** knowledgebases 指当前知识库应用使用的知识库,即 Kind 为 KnowledgeBase 的 CR 的名称,目前一个应用只支持0或1个知识库 */
|
|
3091
3121
|
knowledgebases?: InputMaybe<Array<TypedObjectReferenceInput>>;
|
|
@@ -3940,6 +3970,16 @@ export type UpdateAgentWorkflowMutation = {
|
|
|
3940
3970
|
updateAgentWorkflow?: any | null;
|
|
3941
3971
|
} | null;
|
|
3942
3972
|
};
|
|
3973
|
+
export type UpdateAgentAudioConfigMutationVariables = Exact<{
|
|
3974
|
+
input: UpdateAgentAudioConfigInput;
|
|
3975
|
+
}>;
|
|
3976
|
+
export type UpdateAgentAudioConfigMutation = {
|
|
3977
|
+
__typename?: 'Mutation';
|
|
3978
|
+
Agent?: {
|
|
3979
|
+
__typename?: 'AgentMutation';
|
|
3980
|
+
updateAgentAudioConfig?: any | null;
|
|
3981
|
+
} | null;
|
|
3982
|
+
};
|
|
3943
3983
|
export type DeleteAgentPromptMutationVariables = Exact<{
|
|
3944
3984
|
namespacedname: Scalars['String']['input'];
|
|
3945
3985
|
ids?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
|
@@ -4082,6 +4122,10 @@ export type GetAgentQuery = {
|
|
|
4082
4122
|
name: string;
|
|
4083
4123
|
namespace: string;
|
|
4084
4124
|
} | null> | null;
|
|
4125
|
+
audioConfig?: {
|
|
4126
|
+
__typename?: 'AudioConfig';
|
|
4127
|
+
ttsReferenceID?: string | null;
|
|
4128
|
+
} | null;
|
|
4085
4129
|
};
|
|
4086
4130
|
} | null;
|
|
4087
4131
|
};
|
|
@@ -8387,6 +8431,7 @@ export type ListSftQuery = {
|
|
|
8387
8431
|
exportName: string;
|
|
8388
8432
|
exportDescription?: string | null;
|
|
8389
8433
|
exportPartSize?: number | null;
|
|
8434
|
+
chatAdditionalEnvs?: any | null;
|
|
8390
8435
|
storage: {
|
|
8391
8436
|
__typename?: 'PersistentVolumeClaimSpec';
|
|
8392
8437
|
accessModes: Array<string>;
|
|
@@ -8462,6 +8507,18 @@ export type ListSftQuery = {
|
|
|
8462
8507
|
operator: string;
|
|
8463
8508
|
values: Array<string>;
|
|
8464
8509
|
} | null> | null;
|
|
8510
|
+
chatResources?: {
|
|
8511
|
+
__typename?: 'Resources';
|
|
8512
|
+
cpu?: string | null;
|
|
8513
|
+
memory?: string | null;
|
|
8514
|
+
nvidiaGPU?: string | null;
|
|
8515
|
+
} | null;
|
|
8516
|
+
chatMatchExpressions?: Array<{
|
|
8517
|
+
__typename?: 'NodeSelectorRequirement';
|
|
8518
|
+
key: string;
|
|
8519
|
+
operator: string;
|
|
8520
|
+
values: Array<string>;
|
|
8521
|
+
} | null> | null;
|
|
8465
8522
|
} | {
|
|
8466
8523
|
__typename?: 'TuningDataSet';
|
|
8467
8524
|
} | {
|
|
@@ -8511,6 +8568,7 @@ export type GetSftQuery = {
|
|
|
8511
8568
|
exportName: string;
|
|
8512
8569
|
exportDescription?: string | null;
|
|
8513
8570
|
exportPartSize?: number | null;
|
|
8571
|
+
chatAdditionalEnvs?: any | null;
|
|
8514
8572
|
storage: {
|
|
8515
8573
|
__typename?: 'PersistentVolumeClaimSpec';
|
|
8516
8574
|
accessModes: Array<string>;
|
|
@@ -8586,6 +8644,18 @@ export type GetSftQuery = {
|
|
|
8586
8644
|
operator: string;
|
|
8587
8645
|
values: Array<string>;
|
|
8588
8646
|
} | null> | null;
|
|
8647
|
+
chatResources?: {
|
|
8648
|
+
__typename?: 'Resources';
|
|
8649
|
+
cpu?: string | null;
|
|
8650
|
+
memory?: string | null;
|
|
8651
|
+
nvidiaGPU?: string | null;
|
|
8652
|
+
} | null;
|
|
8653
|
+
chatMatchExpressions?: Array<{
|
|
8654
|
+
__typename?: 'NodeSelectorRequirement';
|
|
8655
|
+
key: string;
|
|
8656
|
+
operator: string;
|
|
8657
|
+
values: Array<string>;
|
|
8658
|
+
} | null> | null;
|
|
8589
8659
|
};
|
|
8590
8660
|
} | null;
|
|
8591
8661
|
};
|
|
@@ -8675,6 +8745,10 @@ export type CreateSftMutation = {
|
|
|
8675
8745
|
phase?: string | null;
|
|
8676
8746
|
phaseMessage?: string | null;
|
|
8677
8747
|
additionalEnvs?: any | null;
|
|
8748
|
+
exportName: string;
|
|
8749
|
+
exportDescription?: string | null;
|
|
8750
|
+
exportPartSize?: number | null;
|
|
8751
|
+
chatAdditionalEnvs?: any | null;
|
|
8678
8752
|
storage: {
|
|
8679
8753
|
__typename?: 'PersistentVolumeClaimSpec';
|
|
8680
8754
|
accessModes: Array<string>;
|
|
@@ -8750,6 +8824,18 @@ export type CreateSftMutation = {
|
|
|
8750
8824
|
operator: string;
|
|
8751
8825
|
values: Array<string>;
|
|
8752
8826
|
} | null> | null;
|
|
8827
|
+
chatResources?: {
|
|
8828
|
+
__typename?: 'Resources';
|
|
8829
|
+
cpu?: string | null;
|
|
8830
|
+
memory?: string | null;
|
|
8831
|
+
nvidiaGPU?: string | null;
|
|
8832
|
+
} | null;
|
|
8833
|
+
chatMatchExpressions?: Array<{
|
|
8834
|
+
__typename?: 'NodeSelectorRequirement';
|
|
8835
|
+
key: string;
|
|
8836
|
+
operator: string;
|
|
8837
|
+
values: Array<string>;
|
|
8838
|
+
} | null> | null;
|
|
8753
8839
|
};
|
|
8754
8840
|
} | null;
|
|
8755
8841
|
};
|
|
@@ -8780,6 +8866,10 @@ export type UpdateSftMutation = {
|
|
|
8780
8866
|
phase?: string | null;
|
|
8781
8867
|
phaseMessage?: string | null;
|
|
8782
8868
|
additionalEnvs?: any | null;
|
|
8869
|
+
exportName: string;
|
|
8870
|
+
exportDescription?: string | null;
|
|
8871
|
+
exportPartSize?: number | null;
|
|
8872
|
+
chatAdditionalEnvs?: any | null;
|
|
8783
8873
|
storage: {
|
|
8784
8874
|
__typename?: 'PersistentVolumeClaimSpec';
|
|
8785
8875
|
accessModes: Array<string>;
|
|
@@ -8855,6 +8945,18 @@ export type UpdateSftMutation = {
|
|
|
8855
8945
|
operator: string;
|
|
8856
8946
|
values: Array<string>;
|
|
8857
8947
|
} | null> | null;
|
|
8948
|
+
chatResources?: {
|
|
8949
|
+
__typename?: 'Resources';
|
|
8950
|
+
cpu?: string | null;
|
|
8951
|
+
memory?: string | null;
|
|
8952
|
+
nvidiaGPU?: string | null;
|
|
8953
|
+
} | null;
|
|
8954
|
+
chatMatchExpressions?: Array<{
|
|
8955
|
+
__typename?: 'NodeSelectorRequirement';
|
|
8956
|
+
key: string;
|
|
8957
|
+
operator: string;
|
|
8958
|
+
values: Array<string>;
|
|
8959
|
+
} | null> | null;
|
|
8858
8960
|
};
|
|
8859
8961
|
} | null;
|
|
8860
8962
|
};
|
|
@@ -9691,6 +9793,7 @@ export declare const UpdateAgentModelDocument: import("../node_modules/.pnpm/gra
|
|
|
9691
9793
|
export declare const UpdateAgentPluginDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
9692
9794
|
export declare const UpdateAgentKnowledgeBaseDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
9693
9795
|
export declare const UpdateAgentWorkflowDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
9796
|
+
export declare const UpdateAgentAudioConfigDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
9694
9797
|
export declare const DeleteAgentPromptDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
9695
9798
|
export declare const GenerateAgentSystemPromptDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
9696
9799
|
export declare const GenerateAgentPrologueDocument: import("../node_modules/.pnpm/graphql@16.8.1/node_modules/graphql/index.d.ts").DocumentNode;
|
|
@@ -9830,6 +9933,7 @@ export declare function getSdk(client: GraphQLClient, withWrapper?: SdkFunctionW
|
|
|
9830
9933
|
updateAgentPlugin(variables: UpdateAgentPluginMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<UpdateAgentPluginMutation>;
|
|
9831
9934
|
updateAgentKnowledgeBase(variables: UpdateAgentKnowledgeBaseMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<UpdateAgentKnowledgeBaseMutation>;
|
|
9832
9935
|
updateAgentWorkflow(variables: UpdateAgentWorkflowMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<UpdateAgentWorkflowMutation>;
|
|
9936
|
+
updateAgentAudioConfig(variables: UpdateAgentAudioConfigMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<UpdateAgentAudioConfigMutation>;
|
|
9833
9937
|
deleteAgentPrompt(variables: DeleteAgentPromptMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<DeleteAgentPromptMutation>;
|
|
9834
9938
|
generateAgentSystemPrompt(variables: GenerateAgentSystemPromptMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<GenerateAgentSystemPromptMutation>;
|
|
9835
9939
|
generateAgentPrologue(variables: GenerateAgentPrologueMutationVariables, requestHeaders?: RequestConfig['headers']): Promise<GenerateAgentPrologueMutation>;
|
|
@@ -10058,6 +10162,9 @@ export declare function getSdkWithHooks(client: GraphQLClient, withWrapper?: Sdk
|
|
|
10058
10162
|
updateAgentWorkflow(variables: Exact<{
|
|
10059
10163
|
input: UpdateAgentWorkflowInput;
|
|
10060
10164
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<UpdateAgentWorkflowMutation>;
|
|
10165
|
+
updateAgentAudioConfig(variables: Exact<{
|
|
10166
|
+
input: UpdateAgentAudioConfigInput;
|
|
10167
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<UpdateAgentAudioConfigMutation>;
|
|
10061
10168
|
deleteAgentPrompt(variables: Exact<{
|
|
10062
10169
|
namespacedname: string;
|
|
10063
10170
|
ids?: InputMaybe<string | string[]> | undefined;
|
package/dist/cjs/sdk.js
CHANGED
|
@@ -146,6 +146,7 @@ __export(sdk_exports, {
|
|
|
146
146
|
ReleaseWorkflowDocument: () => ReleaseWorkflowDocument,
|
|
147
147
|
SelectCond: () => SelectCond,
|
|
148
148
|
ShowStructuredFileInfoDocument: () => ShowStructuredFileInfoDocument,
|
|
149
|
+
UpdateAgentAudioConfigDocument: () => UpdateAgentAudioConfigDocument,
|
|
149
150
|
UpdateAgentDocument: () => UpdateAgentDocument,
|
|
150
151
|
UpdateAgentKnowledgeBaseDocument: () => UpdateAgentKnowledgeBaseDocument,
|
|
151
152
|
UpdateAgentModelDocument: () => UpdateAgentModelDocument,
|
|
@@ -315,6 +316,13 @@ var UpdateAgentWorkflowDocument = import_graphql_tag.default`
|
|
|
315
316
|
}
|
|
316
317
|
}
|
|
317
318
|
`;
|
|
319
|
+
var UpdateAgentAudioConfigDocument = import_graphql_tag.default`
|
|
320
|
+
mutation updateAgentAudioConfig($input: UpdateAgentAudioConfigInput!) {
|
|
321
|
+
Agent {
|
|
322
|
+
updateAgentAudioConfig(input: $input)
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
`;
|
|
318
326
|
var DeleteAgentPromptDocument = import_graphql_tag.default`
|
|
319
327
|
mutation deleteAgentPrompt($namespacedname: String!, $ids: [String!]) {
|
|
320
328
|
Agent {
|
|
@@ -429,6 +437,9 @@ var GetAgentDocument = import_graphql_tag.default`
|
|
|
429
437
|
name
|
|
430
438
|
namespace
|
|
431
439
|
}
|
|
440
|
+
audioConfig {
|
|
441
|
+
ttsReferenceID
|
|
442
|
+
}
|
|
432
443
|
}
|
|
433
444
|
}
|
|
434
445
|
}
|
|
@@ -2698,6 +2709,17 @@ var ListSftDocument = import_graphql_tag.default`
|
|
|
2698
2709
|
exportName
|
|
2699
2710
|
exportDescription
|
|
2700
2711
|
exportPartSize
|
|
2712
|
+
chatResources {
|
|
2713
|
+
cpu
|
|
2714
|
+
memory
|
|
2715
|
+
nvidiaGPU
|
|
2716
|
+
}
|
|
2717
|
+
chatMatchExpressions {
|
|
2718
|
+
key
|
|
2719
|
+
operator
|
|
2720
|
+
values
|
|
2721
|
+
}
|
|
2722
|
+
chatAdditionalEnvs
|
|
2701
2723
|
}
|
|
2702
2724
|
}
|
|
2703
2725
|
}
|
|
@@ -2795,6 +2817,17 @@ var GetSftDocument = import_graphql_tag.default`
|
|
|
2795
2817
|
exportName
|
|
2796
2818
|
exportDescription
|
|
2797
2819
|
exportPartSize
|
|
2820
|
+
chatResources {
|
|
2821
|
+
cpu
|
|
2822
|
+
memory
|
|
2823
|
+
nvidiaGPU
|
|
2824
|
+
}
|
|
2825
|
+
chatMatchExpressions {
|
|
2826
|
+
key
|
|
2827
|
+
operator
|
|
2828
|
+
values
|
|
2829
|
+
}
|
|
2830
|
+
chatAdditionalEnvs
|
|
2798
2831
|
}
|
|
2799
2832
|
}
|
|
2800
2833
|
}
|
|
@@ -2931,6 +2964,20 @@ var CreateSftDocument = import_graphql_tag.default`
|
|
|
2931
2964
|
values
|
|
2932
2965
|
}
|
|
2933
2966
|
additionalEnvs
|
|
2967
|
+
exportName
|
|
2968
|
+
exportDescription
|
|
2969
|
+
exportPartSize
|
|
2970
|
+
chatResources {
|
|
2971
|
+
cpu
|
|
2972
|
+
memory
|
|
2973
|
+
nvidiaGPU
|
|
2974
|
+
}
|
|
2975
|
+
chatMatchExpressions {
|
|
2976
|
+
key
|
|
2977
|
+
operator
|
|
2978
|
+
values
|
|
2979
|
+
}
|
|
2980
|
+
chatAdditionalEnvs
|
|
2934
2981
|
}
|
|
2935
2982
|
}
|
|
2936
2983
|
}
|
|
@@ -3023,6 +3070,20 @@ var UpdateSftDocument = import_graphql_tag.default`
|
|
|
3023
3070
|
values
|
|
3024
3071
|
}
|
|
3025
3072
|
additionalEnvs
|
|
3073
|
+
exportName
|
|
3074
|
+
exportDescription
|
|
3075
|
+
exportPartSize
|
|
3076
|
+
chatResources {
|
|
3077
|
+
cpu
|
|
3078
|
+
memory
|
|
3079
|
+
nvidiaGPU
|
|
3080
|
+
}
|
|
3081
|
+
chatMatchExpressions {
|
|
3082
|
+
key
|
|
3083
|
+
operator
|
|
3084
|
+
values
|
|
3085
|
+
}
|
|
3086
|
+
chatAdditionalEnvs
|
|
3026
3087
|
}
|
|
3027
3088
|
}
|
|
3028
3089
|
}
|
|
@@ -3516,6 +3577,9 @@ function getSdk(client, withWrapper = defaultWrapper) {
|
|
|
3516
3577
|
updateAgentWorkflow(variables, requestHeaders) {
|
|
3517
3578
|
return withWrapper((wrappedRequestHeaders) => client.request(UpdateAgentWorkflowDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "updateAgentWorkflow", "mutation", variables);
|
|
3518
3579
|
},
|
|
3580
|
+
updateAgentAudioConfig(variables, requestHeaders) {
|
|
3581
|
+
return withWrapper((wrappedRequestHeaders) => client.request(UpdateAgentAudioConfigDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "updateAgentAudioConfig", "mutation", variables);
|
|
3582
|
+
},
|
|
3519
3583
|
deleteAgentPrompt(variables, requestHeaders) {
|
|
3520
3584
|
return withWrapper((wrappedRequestHeaders) => client.request(DeleteAgentPromptDocument, variables, { ...requestHeaders, ...wrappedRequestHeaders }), "deleteAgentPrompt", "mutation", variables);
|
|
3521
3585
|
},
|
|
@@ -4220,6 +4284,7 @@ function getSdkWithHooks(client, withWrapper = defaultWrapper) {
|
|
|
4220
4284
|
ReleaseWorkflowDocument,
|
|
4221
4285
|
SelectCond,
|
|
4222
4286
|
ShowStructuredFileInfoDocument,
|
|
4287
|
+
UpdateAgentAudioConfigDocument,
|
|
4223
4288
|
UpdateAgentDocument,
|
|
4224
4289
|
UpdateAgentKnowledgeBaseDocument,
|
|
4225
4290
|
UpdateAgentModelDocument,
|
package/dist/cjs/taro.d.ts
CHANGED
|
@@ -65,6 +65,9 @@ export declare const initSdk: (options?: SdkOptions) => {
|
|
|
65
65
|
updateAgentWorkflow(variables: import("./sdk").Exact<{
|
|
66
66
|
input: import("./sdk").UpdateAgentWorkflowInput;
|
|
67
67
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateAgentWorkflowMutation>;
|
|
68
|
+
updateAgentAudioConfig(variables: import("./sdk").Exact<{
|
|
69
|
+
input: import("./sdk").UpdateAgentAudioConfigInput;
|
|
70
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateAgentAudioConfigMutation>;
|
|
68
71
|
deleteAgentPrompt(variables: import("./sdk").Exact<{
|
|
69
72
|
namespacedname: string;
|
|
70
73
|
ids?: import("./sdk").InputMaybe<string | string[]> | undefined;
|
|
@@ -758,6 +761,9 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
758
761
|
updateAgentWorkflow(variables: import("./sdk").Exact<{
|
|
759
762
|
input: import("./sdk").UpdateAgentWorkflowInput;
|
|
760
763
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateAgentWorkflowMutation>;
|
|
764
|
+
updateAgentAudioConfig(variables: import("./sdk").Exact<{
|
|
765
|
+
input: import("./sdk").UpdateAgentAudioConfigInput;
|
|
766
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateAgentAudioConfigMutation>;
|
|
761
767
|
deleteAgentPrompt(variables: import("./sdk").Exact<{
|
|
762
768
|
namespacedname: string;
|
|
763
769
|
ids?: import("./sdk").InputMaybe<string | string[]> | undefined;
|
|
@@ -1451,6 +1457,9 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
1451
1457
|
updateAgentWorkflow(variables: import("./sdk").Exact<{
|
|
1452
1458
|
input: import("./sdk").UpdateAgentWorkflowInput;
|
|
1453
1459
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateAgentWorkflowMutation>;
|
|
1460
|
+
updateAgentAudioConfig(variables: import("./sdk").Exact<{
|
|
1461
|
+
input: import("./sdk").UpdateAgentAudioConfigInput;
|
|
1462
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateAgentAudioConfigMutation>;
|
|
1454
1463
|
deleteAgentPrompt(variables: import("./sdk").Exact<{
|
|
1455
1464
|
namespacedname: string;
|
|
1456
1465
|
ids?: import("./sdk").InputMaybe<string | string[]> | undefined;
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -274,6 +274,9 @@ export declare const sdk: {
|
|
|
274
274
|
updateAgentWorkflow(variables: import("./sdk").Exact<{
|
|
275
275
|
input: import("./sdk").UpdateAgentWorkflowInput;
|
|
276
276
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateAgentWorkflowMutation>;
|
|
277
|
+
updateAgentAudioConfig(variables: import("./sdk").Exact<{
|
|
278
|
+
input: import("./sdk").UpdateAgentAudioConfigInput;
|
|
279
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateAgentAudioConfigMutation>;
|
|
277
280
|
deleteAgentPrompt(variables: import("./sdk").Exact<{
|
|
278
281
|
namespacedname: string;
|
|
279
282
|
ids?: import("./sdk").InputMaybe<string | string[]> | undefined;
|
|
@@ -755,6 +758,9 @@ export declare const initSdk: (options?: SdkOptions) => {
|
|
|
755
758
|
updateAgentWorkflow(variables: import("./sdk").Exact<{
|
|
756
759
|
input: import("./sdk").UpdateAgentWorkflowInput;
|
|
757
760
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateAgentWorkflowMutation>;
|
|
761
|
+
updateAgentAudioConfig(variables: import("./sdk").Exact<{
|
|
762
|
+
input: import("./sdk").UpdateAgentAudioConfigInput;
|
|
763
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateAgentAudioConfigMutation>;
|
|
758
764
|
deleteAgentPrompt(variables: import("./sdk").Exact<{
|
|
759
765
|
namespacedname: string;
|
|
760
766
|
ids?: import("./sdk").InputMaybe<string | string[]> | undefined;
|
|
@@ -1448,6 +1454,9 @@ export declare const initSdkWithHooks: (options?: SdkOptions) => {
|
|
|
1448
1454
|
updateAgentWorkflow(variables: import("./sdk").Exact<{
|
|
1449
1455
|
input: import("./sdk").UpdateAgentWorkflowInput;
|
|
1450
1456
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateAgentWorkflowMutation>;
|
|
1457
|
+
updateAgentAudioConfig(variables: import("./sdk").Exact<{
|
|
1458
|
+
input: import("./sdk").UpdateAgentAudioConfigInput;
|
|
1459
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateAgentAudioConfigMutation>;
|
|
1451
1460
|
deleteAgentPrompt(variables: import("./sdk").Exact<{
|
|
1452
1461
|
namespacedname: string;
|
|
1453
1462
|
ids?: import("./sdk").InputMaybe<string | string[]> | undefined;
|
|
@@ -2141,6 +2150,9 @@ export declare const useSdk: (options?: SdkOptions) => {
|
|
|
2141
2150
|
updateAgentWorkflow(variables: import("./sdk").Exact<{
|
|
2142
2151
|
input: import("./sdk").UpdateAgentWorkflowInput;
|
|
2143
2152
|
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateAgentWorkflowMutation>;
|
|
2153
|
+
updateAgentAudioConfig(variables: import("./sdk").Exact<{
|
|
2154
|
+
input: import("./sdk").UpdateAgentAudioConfigInput;
|
|
2155
|
+
}>, requestHeaders?: import("graphql-request/src/types").MaybeFunction<(import("graphql-request/src/types.dom").Headers | Record<string, string> | string[][]) | undefined>): Promise<import("./sdk").UpdateAgentAudioConfigMutation>;
|
|
2144
2156
|
deleteAgentPrompt(variables: import("./sdk").Exact<{
|
|
2145
2157
|
namespacedname: string;
|
|
2146
2158
|
ids?: import("./sdk").InputMaybe<string | string[]> | undefined;
|