@yuntijs/arcadia-bff-sdk 1.2.57 → 1.2.58
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 +1 -0
- package/dist/cjs/sdk.js +1 -0
- package/dist/esm/sdk.d.ts +1 -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/cjs/sdk.d.ts
CHANGED
package/dist/cjs/sdk.js
CHANGED
package/dist/esm/sdk.d.ts
CHANGED
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 msg\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 contentCount\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 "])));
|