@yuntijs/arcadia-bff-sdk 1.2.55 → 1.2.57

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
@@ -2447,6 +2447,8 @@ export type TuningVersionedDatasetFiles = {
2447
2447
  createdAt: Scalars['Time']['output'];
2448
2448
  /** 训练数据集版本使用的文件的路径 */
2449
2449
  fileName: Scalars['String']['output'];
2450
+ /** 导入失败原因 */
2451
+ msg?: Maybe<Scalars['String']['output']>;
2450
2452
  /** 文件的大小 */
2451
2453
  size?: Maybe<Scalars['Int']['output']>;
2452
2454
  /** 文件导入状态 */
@@ -6769,6 +6771,7 @@ export type GetVersionQuery = {
6769
6771
  count?: number | null;
6770
6772
  status?: number | null;
6771
6773
  createdAt: any;
6774
+ msg?: string | null;
6772
6775
  } | {
6773
6776
  __typename?: 'VersionedDataset';
6774
6777
  } | {
package/dist/cjs/sdk.js CHANGED
@@ -2237,6 +2237,7 @@ var GetVersionDocument = import_graphql_tag.default`
2237
2237
  count
2238
2238
  status
2239
2239
  createdAt
2240
+ msg
2240
2241
  }
2241
2242
  }
2242
2243
  }
package/dist/esm/sdk.d.ts CHANGED
@@ -2447,6 +2447,8 @@ export type TuningVersionedDatasetFiles = {
2447
2447
  createdAt: Scalars['Time']['output'];
2448
2448
  /** 训练数据集版本使用的文件的路径 */
2449
2449
  fileName: Scalars['String']['output'];
2450
+ /** 导入失败原因 */
2451
+ msg?: Maybe<Scalars['String']['output']>;
2450
2452
  /** 文件的大小 */
2451
2453
  size?: Maybe<Scalars['Int']['output']>;
2452
2454
  /** 文件导入状态 */
@@ -6769,6 +6771,7 @@ export type GetVersionQuery = {
6769
6771
  count?: number | null;
6770
6772
  status?: number | null;
6771
6773
  createdAt: any;
6774
+ msg?: string | null;
6772
6775
  } | {
6773
6776
  __typename?: 'VersionedDataset';
6774
6777
  } | {
package/dist/esm/sdk.js CHANGED
@@ -251,7 +251,7 @@ export var ListRerankersDocument = gql(_templateObject75 || (_templateObject75 =
251
251
  export var GetRerankerDocument = gql(_templateObject76 || (_templateObject76 = _taggedTemplateLiteral(["\n query getReranker($name: String!, $namespace: String!) {\n Reranker {\n getReranker(name: $name, namespace: $namespace) {\n name\n namespace\n labels\n annotations\n displayName\n description\n baseUrl\n models\n type\n provider\n updateTimestamp\n }\n }\n}\n "])));
252
252
  export var ListTuningDataSetDocument = gql(_templateObject77 || (_templateObject77 = _taggedTemplateLiteral(["\n query listTuningDataSet($namespace: String!, $options: ListOptionInput) {\n TuningDataSet {\n listTuningDataSet(namespace: $namespace, options: $options) {\n totalCount\n nodes {\n ... on TuningDataSet {\n ID\n name\n namespace\n creator\n type\n createdAt\n updatedAt\n versions {\n totalCount\n nodes {\n ... on TuningVersionedDataset {\n ID\n description\n version\n creator\n createdAt\n updatedAt\n contentCount\n }\n }\n }\n }\n }\n }\n }\n}\n "])));
253
253
  export var GetTuningDataSetDocument = gql(_templateObject78 || (_templateObject78 = _taggedTemplateLiteral(["\n query getTuningDataSet($id: String!) {\n TuningDataSet {\n getTuningDataSet(id: $id) {\n ID\n name\n namespace\n creator\n type\n createdAt\n updatedAt\n versions {\n totalCount\n nodes {\n ... on TuningVersionedDataset {\n ID\n description\n version\n creator\n createdAt\n updatedAt\n contentCount\n }\n }\n }\n }\n }\n}\n "])));
254
- export var GetVersionDocument = gql(_templateObject79 || (_templateObject79 = _taggedTemplateLiteral(["\n query getVersion($id: String!) {\n TuningDataSet {\n getVersion(id: $id) {\n ID\n description\n version\n creator\n createdAt\n updatedAt\n files {\n totalCount\n nodes {\n ... on TuningVersionedDatasetFiles {\n ID\n fileName\n size\n count\n status\n createdAt\n }\n }\n }\n }\n }\n}\n "])));
254
+ export var GetVersionDocument = gql(_templateObject79 || (_templateObject79 = _taggedTemplateLiteral(["\n query getVersion($id: String!) {\n TuningDataSet {\n getVersion(id: $id) {\n ID\n description\n version\n creator\n createdAt\n updatedAt\n files {\n totalCount\n nodes {\n ... on TuningVersionedDatasetFiles {\n ID\n fileName\n size\n count\n status\n createdAt\n msg\n }\n }\n }\n }\n }\n}\n "])));
255
255
  export var GetVersionContentDocument = gql(_templateObject80 || (_templateObject80 = _taggedTemplateLiteral(["\n query getVersionContent($id: String!, $input: ListCommonInput) {\n TuningDataSet {\n getVersionContent(id: $id, input: $input) {\n totalCount\n nodes {\n ... on TuningVersionedDatasetContent {\n ID\n data {\n instruction\n output\n input\n system\n history\n }\n }\n }\n }\n }\n}\n "])));
256
256
  export var CreateTuningDataSetDocument = gql(_templateObject81 || (_templateObject81 = _taggedTemplateLiteral(["\n mutation createTuningDataSet($input: CreateTuningDataSetInput!) {\n TuningDataSet {\n createTuningDataSet(input: $input)\n }\n}\n "])));
257
257
  export var UpdateTuningDataSetDocument = gql(_templateObject82 || (_templateObject82 = _taggedTemplateLiteral(["\n mutation updateTuningDataSet($id: String!, $newName: String!) {\n TuningDataSet {\n updateTuningDataSet(id: $id, newName: $newName)\n }\n}\n "])));