@yuntijs/arcadia-bff-sdk 1.2.51 → 1.2.53
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 +5 -3
- package/dist/esm/sdk.d.ts +5 -3
- package/dist/umd/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/sdk.d.ts
CHANGED
|
@@ -340,9 +340,11 @@ export type CheckDataProcessTaskNameInput = {
|
|
|
340
340
|
};
|
|
341
341
|
export type ContentTemplate = {
|
|
342
342
|
__typename?: 'ContentTemplate';
|
|
343
|
-
|
|
343
|
+
history?: Maybe<Array<Maybe<Array<Scalars['String']['output']>>>>;
|
|
344
|
+
input?: Maybe<Scalars['String']['output']>;
|
|
344
345
|
instruction: Scalars['String']['output'];
|
|
345
|
-
output
|
|
346
|
+
output: Scalars['String']['output'];
|
|
347
|
+
system?: Maybe<Scalars['String']['output']>;
|
|
346
348
|
};
|
|
347
349
|
export type CountDataProcessItem = {
|
|
348
350
|
__typename?: 'CountDataProcessItem';
|
|
@@ -2387,7 +2389,7 @@ export type TuningVersionedDatasetContent = {
|
|
|
2387
2389
|
/** 训练数据集版本内容的ID */
|
|
2388
2390
|
ID: Scalars['ID']['output'];
|
|
2389
2391
|
/** 训练数据集版本的具体数据 */
|
|
2390
|
-
data
|
|
2392
|
+
data: ContentTemplate;
|
|
2391
2393
|
};
|
|
2392
2394
|
export type TuningVersionedDatasetFiles = {
|
|
2393
2395
|
__typename?: 'TuningVersionedDatasetFiles';
|
package/dist/esm/sdk.d.ts
CHANGED
|
@@ -340,9 +340,11 @@ export type CheckDataProcessTaskNameInput = {
|
|
|
340
340
|
};
|
|
341
341
|
export type ContentTemplate = {
|
|
342
342
|
__typename?: 'ContentTemplate';
|
|
343
|
-
|
|
343
|
+
history?: Maybe<Array<Maybe<Array<Scalars['String']['output']>>>>;
|
|
344
|
+
input?: Maybe<Scalars['String']['output']>;
|
|
344
345
|
instruction: Scalars['String']['output'];
|
|
345
|
-
output
|
|
346
|
+
output: Scalars['String']['output'];
|
|
347
|
+
system?: Maybe<Scalars['String']['output']>;
|
|
346
348
|
};
|
|
347
349
|
export type CountDataProcessItem = {
|
|
348
350
|
__typename?: 'CountDataProcessItem';
|
|
@@ -2387,7 +2389,7 @@ export type TuningVersionedDatasetContent = {
|
|
|
2387
2389
|
/** 训练数据集版本内容的ID */
|
|
2388
2390
|
ID: Scalars['ID']['output'];
|
|
2389
2391
|
/** 训练数据集版本的具体数据 */
|
|
2390
|
-
data
|
|
2392
|
+
data: ContentTemplate;
|
|
2391
2393
|
};
|
|
2392
2394
|
export type TuningVersionedDatasetFiles = {
|
|
2393
2395
|
__typename?: 'TuningVersionedDatasetFiles';
|