@yuntijs/arcadia-bff-sdk 1.1.4 → 1.1.6
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/esm/sdk.d.ts +46 -0
- package/dist/esm/sdk.js +1 -1
- package/dist/umd/index.min.js +1 -1
- package/dist/umd/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/esm/sdk.d.ts
CHANGED
|
@@ -507,8 +507,15 @@ export type DataProcessConfigChildren = {
|
|
|
507
507
|
preview?: Maybe<Array<Maybe<DataProcessConfigpreView>>>;
|
|
508
508
|
zh_name?: Maybe<Scalars['String']['output']>;
|
|
509
509
|
};
|
|
510
|
+
export type DataProcessConfigInfo = {
|
|
511
|
+
__typename?: 'DataProcessConfigInfo';
|
|
512
|
+
llm_config?: Maybe<LlmConfig>;
|
|
513
|
+
remove_duplicate_config?: Maybe<RemoveDuplicateConfigItem>;
|
|
514
|
+
type: Scalars['String']['output'];
|
|
515
|
+
};
|
|
510
516
|
export type DataProcessConfigItem = {
|
|
511
517
|
llm_config?: InputMaybe<LlmConfigItem>;
|
|
518
|
+
remove_duplicate_config?: InputMaybe<RemoveDuplicateConfig>;
|
|
512
519
|
type: Scalars['String']['input'];
|
|
513
520
|
};
|
|
514
521
|
export type DataProcessConfigpreFileProgress = {
|
|
@@ -543,6 +550,7 @@ export type DataProcessDetailsItem = {
|
|
|
543
550
|
__typename?: 'DataProcessDetailsItem';
|
|
544
551
|
config?: Maybe<Array<DataProcessConfig>>;
|
|
545
552
|
creator: Scalars['String']['output'];
|
|
553
|
+
data_process_config_info?: Maybe<Array<DataProcessConfigInfo>>;
|
|
546
554
|
end_time: Scalars['String']['output'];
|
|
547
555
|
error_msg?: Maybe<Scalars['String']['output']>;
|
|
548
556
|
file_num: Scalars['Int']['output'];
|
|
@@ -1790,6 +1798,21 @@ export type RayClusterQuery = {
|
|
|
1790
1798
|
export type RayClusterQueryListRayClustersArgs = {
|
|
1791
1799
|
input: ListCommonInput;
|
|
1792
1800
|
};
|
|
1801
|
+
export type RemoveDuplicateConfig = {
|
|
1802
|
+
embedding_model: Scalars['String']['input'];
|
|
1803
|
+
embedding_name: Scalars['String']['input'];
|
|
1804
|
+
embedding_namespace: Scalars['String']['input'];
|
|
1805
|
+
embedding_provider: Scalars['String']['input'];
|
|
1806
|
+
similarity: Scalars['String']['input'];
|
|
1807
|
+
};
|
|
1808
|
+
export type RemoveDuplicateConfigItem = {
|
|
1809
|
+
__typename?: 'RemoveDuplicateConfigItem';
|
|
1810
|
+
embedding_model: Scalars['String']['output'];
|
|
1811
|
+
embedding_name: Scalars['String']['output'];
|
|
1812
|
+
embedding_namespace: Scalars['String']['output'];
|
|
1813
|
+
embedding_provider: Scalars['String']['output'];
|
|
1814
|
+
similarity: Scalars['String']['output'];
|
|
1815
|
+
};
|
|
1793
1816
|
export type Resource = {
|
|
1794
1817
|
__typename?: 'Resource';
|
|
1795
1818
|
limits?: Maybe<Scalars['Map']['output']>;
|
|
@@ -2728,6 +2751,29 @@ export type DataProcessDetailsQuery = {
|
|
|
2728
2751
|
end_time: string;
|
|
2729
2752
|
creator: string;
|
|
2730
2753
|
error_msg?: string | null;
|
|
2754
|
+
data_process_config_info?: Array<{
|
|
2755
|
+
__typename?: 'DataProcessConfigInfo';
|
|
2756
|
+
type: string;
|
|
2757
|
+
llm_config?: {
|
|
2758
|
+
__typename?: 'LLMConfig';
|
|
2759
|
+
name?: string | null;
|
|
2760
|
+
namespace?: string | null;
|
|
2761
|
+
model?: string | null;
|
|
2762
|
+
temperature?: string | null;
|
|
2763
|
+
top_p?: string | null;
|
|
2764
|
+
max_tokens?: string | null;
|
|
2765
|
+
prompt_template?: string | null;
|
|
2766
|
+
provider?: string | null;
|
|
2767
|
+
} | null;
|
|
2768
|
+
remove_duplicate_config?: {
|
|
2769
|
+
__typename?: 'RemoveDuplicateConfigItem';
|
|
2770
|
+
similarity: string;
|
|
2771
|
+
embedding_name: string;
|
|
2772
|
+
embedding_model: string;
|
|
2773
|
+
embedding_provider: string;
|
|
2774
|
+
embedding_namespace: string;
|
|
2775
|
+
} | null;
|
|
2776
|
+
}> | null;
|
|
2731
2777
|
config?: Array<{
|
|
2732
2778
|
__typename?: 'DataProcessConfig';
|
|
2733
2779
|
name: string;
|
package/dist/esm/sdk.js
CHANGED
|
@@ -178,7 +178,7 @@ export var ListApplicationsDocument = gql(_templateObject6 || (_templateObject6
|
|
|
178
178
|
export var AllDataProcessListByPageDocument = gql(_templateObject7 || (_templateObject7 = _taggedTemplateLiteral(["\n query allDataProcessListByPage($input: AllDataProcessListByPageInput!) {\n dataProcess {\n allDataProcessListByPage(input: $input) {\n status\n data {\n id\n name\n status\n pre_data_set_name\n pre_data_set_version\n post_data_set_name\n post_data_set_version\n start_datetime\n error_msg\n }\n message\n }\n }\n}\n "])));
|
|
179
179
|
export var AllDataProcessListByCountDocument = gql(_templateObject8 || (_templateObject8 = _taggedTemplateLiteral(["\n query allDataProcessListByCount($input: AllDataProcessListByCountInput!) {\n dataProcess {\n allDataProcessListByCount(input: $input) {\n status\n data\n message\n }\n }\n}\n "])));
|
|
180
180
|
export var DataProcessSupportTypeDocument = gql(_templateObject9 || (_templateObject9 = _taggedTemplateLiteral(["\n query dataProcessSupportType {\n dataProcess {\n dataProcessSupportType {\n status\n data {\n name\n description\n children {\n name\n zh_name\n description\n enable\n }\n }\n message\n }\n }\n}\n "])));
|
|
181
|
-
export var DataProcessDetailsDocument = gql(_templateObject10 || (_templateObject10 = _taggedTemplateLiteral(["\n query dataProcessDetails($input: DataProcessDetailsInput) {\n dataProcess {\n dataProcessDetails(input: $input) {\n status\n data {\n id\n status\n name\n file_type\n pre_dataset_name\n pre_dataset_version\n post_dataset_name\n post_dataset_version\n file_num\n start_time\n end_time\n creator\n error_msg\n config {\n name\n description\n file_num\n status\n children {\n name\n enable\n zh_name\n description\n llm_config {\n name\n namespace\n model\n temperature\n top_p\n max_tokens\n prompt_template\n provider\n }\n preview {\n file_name\n content {\n pre\n post\n }\n }\n file_progress {\n id\n file_name\n status\n start_time\n end_time\n progress\n }\n }\n }\n }\n message\n }\n }\n}\n "])));
|
|
181
|
+
export var DataProcessDetailsDocument = gql(_templateObject10 || (_templateObject10 = _taggedTemplateLiteral(["\n query dataProcessDetails($input: DataProcessDetailsInput) {\n dataProcess {\n dataProcessDetails(input: $input) {\n status\n data {\n id\n status\n name\n file_type\n pre_dataset_name\n pre_dataset_version\n post_dataset_name\n post_dataset_version\n file_num\n start_time\n end_time\n creator\n error_msg\n data_process_config_info {\n type\n llm_config {\n name\n namespace\n model\n temperature\n top_p\n max_tokens\n prompt_template\n provider\n }\n remove_duplicate_config {\n similarity\n embedding_name\n embedding_model\n embedding_provider\n embedding_namespace\n }\n }\n config {\n name\n description\n file_num\n status\n children {\n name\n enable\n zh_name\n description\n llm_config {\n name\n namespace\n model\n temperature\n top_p\n max_tokens\n prompt_template\n provider\n }\n preview {\n file_name\n content {\n pre\n post\n }\n }\n file_progress {\n id\n file_name\n status\n start_time\n end_time\n progress\n }\n }\n }\n }\n message\n }\n }\n}\n "])));
|
|
182
182
|
export var CheckDataProcessTaskNameDocument = gql(_templateObject11 || (_templateObject11 = _taggedTemplateLiteral(["\n query checkDataProcessTaskName($input: CheckDataProcessTaskNameInput) {\n dataProcess {\n checkDataProcessTaskName(input: $input) {\n status\n data\n message\n }\n }\n}\n "])));
|
|
183
183
|
export var GetLogInfoDocument = gql(_templateObject12 || (_templateObject12 = _taggedTemplateLiteral(["\n query getLogInfo($input: DataProcessDetailsInput) {\n dataProcess {\n getLogInfo(input: $input) {\n status\n data\n message\n }\n }\n}\n "])));
|
|
184
184
|
export var DataProcessLogInfoByFileNameDocument = gql(_templateObject13 || (_templateObject13 = _taggedTemplateLiteral(["\n query dataProcessLogInfoByFileName($input: DataProcessFileLogInput) {\n dataProcess {\n dataProcessLogInfoByFileName(input: $input) {\n status\n data\n message\n }\n }\n}\n "])));
|