@yuntijs/arcadia-bff-sdk 1.2.105 → 1.2.106

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
@@ -3014,8 +3014,8 @@ export type ShareGptMessage = {
3014
3014
  value: Scalars['String']['output'];
3015
3015
  };
3016
3016
  export type ShareGptMessageInput = {
3017
- From: Scalars['String']['input'];
3018
- Value: Scalars['String']['input'];
3017
+ from: Scalars['String']['input'];
3018
+ value: Scalars['String']['input'];
3019
3019
  };
3020
3020
  export type StructuredFileInfo = {
3021
3021
  __typename?: 'StructuredFileInfo';
@@ -3148,6 +3148,8 @@ export type TuningVersionedDatasetContent = {
3148
3148
  createdAt: Scalars['Time']['output'];
3149
3149
  /** 训练数据集版本的具体数据 */
3150
3150
  data: ContentTemplate;
3151
+ /** 训练数据集数据类型 */
3152
+ dataType?: Maybe<Scalars['String']['output']>;
3151
3153
  /** 训练数据集版本的 ShareGPT 格式数据的具体内容 */
3152
3154
  shareGPTData: ShareGptContentTemplate;
3153
3155
  updatedAt: Scalars['Time']['output'];
@@ -8368,6 +8370,7 @@ export type GetVersionContentQuery = {
8368
8370
  } | {
8369
8371
  __typename?: 'TuningVersionedDatasetContent';
8370
8372
  ID: string;
8373
+ dataType?: string | null;
8371
8374
  createdAt: any;
8372
8375
  updatedAt: any;
8373
8376
  data: {
package/dist/cjs/sdk.js CHANGED
@@ -2562,6 +2562,7 @@ var GetVersionContentDocument = import_graphql_tag.default`
2562
2562
  nodes {
2563
2563
  ... on TuningVersionedDatasetContent {
2564
2564
  ID
2565
+ dataType
2565
2566
  data {
2566
2567
  instruction
2567
2568
  output
package/dist/esm/sdk.d.ts CHANGED
@@ -3014,8 +3014,8 @@ export type ShareGptMessage = {
3014
3014
  value: Scalars['String']['output'];
3015
3015
  };
3016
3016
  export type ShareGptMessageInput = {
3017
- From: Scalars['String']['input'];
3018
- Value: Scalars['String']['input'];
3017
+ from: Scalars['String']['input'];
3018
+ value: Scalars['String']['input'];
3019
3019
  };
3020
3020
  export type StructuredFileInfo = {
3021
3021
  __typename?: 'StructuredFileInfo';
@@ -3148,6 +3148,8 @@ export type TuningVersionedDatasetContent = {
3148
3148
  createdAt: Scalars['Time']['output'];
3149
3149
  /** 训练数据集版本的具体数据 */
3150
3150
  data: ContentTemplate;
3151
+ /** 训练数据集数据类型 */
3152
+ dataType?: Maybe<Scalars['String']['output']>;
3151
3153
  /** 训练数据集版本的 ShareGPT 格式数据的具体内容 */
3152
3154
  shareGPTData: ShareGptContentTemplate;
3153
3155
  updatedAt: Scalars['Time']['output'];
@@ -8368,6 +8370,7 @@ export type GetVersionContentQuery = {
8368
8370
  } | {
8369
8371
  __typename?: 'TuningVersionedDatasetContent';
8370
8372
  ID: string;
8373
+ dataType?: string | null;
8371
8374
  createdAt: any;
8372
8375
  updatedAt: any;
8373
8376
  data: {
package/dist/esm/sdk.js CHANGED
@@ -260,7 +260,7 @@ export var GetRerankerDocument = gql(_templateObject98 || (_templateObject98 = _
260
260
  export var ListTuningDataSetDocument = gql(_templateObject99 || (_templateObject99 = _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 dataType\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 "])));
261
261
  export var GetTuningDataSetDocument = gql(_templateObject100 || (_templateObject100 = _taggedTemplateLiteral(["\n query getTuningDataSet($id: String!) {\n TuningDataSet {\n getTuningDataSet(id: $id) {\n ID\n name\n namespace\n creator\n type\n dataType\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 "])));
262
262
  export var GetVersionDocument = gql(_templateObject101 || (_templateObject101 = _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 contentCount\n files {\n totalCount\n nodes {\n ... on TuningVersionedDatasetFiles {\n ID\n fileName\n size\n count\n status\n createdAt\n updatedAt\n msg\n }\n }\n }\n }\n }\n}\n "])));
263
- export var GetVersionContentDocument = gql(_templateObject102 || (_templateObject102 = _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 shareGPTData {\n conversations {\n ... on ShareGPTMessage {\n from\n value\n }\n }\n system\n }\n createdAt\n updatedAt\n }\n }\n }\n }\n}\n "])));
263
+ export var GetVersionContentDocument = gql(_templateObject102 || (_templateObject102 = _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 dataType\n data {\n instruction\n output\n input\n system\n history\n }\n shareGPTData {\n conversations {\n ... on ShareGPTMessage {\n from\n value\n }\n }\n system\n }\n createdAt\n updatedAt\n }\n }\n }\n }\n}\n "])));
264
264
  export var CreateTuningDataSetDocument = gql(_templateObject103 || (_templateObject103 = _taggedTemplateLiteral(["\n mutation createTuningDataSet($input: CreateTuningDataSetInput!) {\n TuningDataSet {\n createTuningDataSet(input: $input) {\n datasetID\n versionIDs\n }\n }\n}\n "])));
265
265
  export var UpdateTuningDataSetDocument = gql(_templateObject104 || (_templateObject104 = _taggedTemplateLiteral(["\n mutation updateTuningDataSet($id: String!, $newName: String!) {\n TuningDataSet {\n updateTuningDataSet(id: $id, newName: $newName)\n }\n}\n "])));
266
266
  export var DeleteTuningDataSetDocument = gql(_templateObject105 || (_templateObject105 = _taggedTemplateLiteral(["\n mutation deleteTuningDataSet($id: [String!]) {\n TuningDataSet {\n deleteTuningDataSet(id: $id)\n }\n}\n "])));