@yuntijs/arcadia-bff-sdk 1.0.4 → 1.0.5
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.js +10 -0
- package/dist/umd/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/esm/sdk.js
CHANGED
|
@@ -23,6 +23,8 @@ import useSWR from "./useSWR";
|
|
|
23
23
|
|
|
24
24
|
/** 创建知识库的输入 */
|
|
25
25
|
|
|
26
|
+
/** 创建模型的输入 */
|
|
27
|
+
|
|
26
28
|
/**
|
|
27
29
|
* Dataset
|
|
28
30
|
* 数据集代表用户纳管的一组相似属性的文件,采用相同的方式进行数据处理并用于后续的
|
|
@@ -77,6 +79,8 @@ import useSWR from "./useSWR";
|
|
|
77
79
|
|
|
78
80
|
/** 知识库删除的输入 */
|
|
79
81
|
|
|
82
|
+
/** 模型删除的输入 */
|
|
83
|
+
|
|
80
84
|
/** 终端的访问信息 */
|
|
81
85
|
|
|
82
86
|
/** 对象存储终端输入 */
|
|
@@ -96,6 +100,10 @@ import useSWR from "./useSWR";
|
|
|
96
100
|
|
|
97
101
|
/** 知识库分页列表查询的输入 */
|
|
98
102
|
|
|
103
|
+
/** 模型分页列表查询的输入 */
|
|
104
|
+
|
|
105
|
+
/** 模型 */
|
|
106
|
+
|
|
99
107
|
/** 对象存储的使用信息 */
|
|
100
108
|
|
|
101
109
|
/** 文件输入 */
|
|
@@ -106,6 +114,8 @@ import useSWR from "./useSWR";
|
|
|
106
114
|
|
|
107
115
|
/** 知识库更新的输入 */
|
|
108
116
|
|
|
117
|
+
/** 模型更新的输入 */
|
|
118
|
+
|
|
109
119
|
/**
|
|
110
120
|
* VersionedDataset
|
|
111
121
|
* 数据集的版本信息。
|