@yuntijs/arcadia-bff-sdk 1.2.162 → 1.2.163
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 -2
- package/dist/esm/sdk.d.ts +5 -2
- package/dist/umd/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/sdk.d.ts
CHANGED
|
@@ -870,7 +870,7 @@ export type CreateKnowledgeBaseInput = {
|
|
|
870
870
|
namespace: Scalars['String']['input'];
|
|
871
871
|
/** 分隔符 */
|
|
872
872
|
separator?: InputMaybe<Scalars['String']['input']>;
|
|
873
|
-
splitMethod
|
|
873
|
+
splitMethod?: InputMaybe<Scalars['Int']['input']>;
|
|
874
874
|
/** "向量数据库(目前不需要填写,直接使用系统默认的向量数据库) */
|
|
875
875
|
vectorStore?: InputMaybe<TypedObjectReferenceInput>;
|
|
876
876
|
};
|
|
@@ -1661,6 +1661,8 @@ export type KnowledgeBaseFile = {
|
|
|
1661
1661
|
__typename?: 'KnowledgeBaseFile';
|
|
1662
1662
|
/** 分段方式 */
|
|
1663
1663
|
chunkMethod: Scalars['String']['output'];
|
|
1664
|
+
/** 分块间重合大小 */
|
|
1665
|
+
chunkOverlap: Scalars['Int']['output'];
|
|
1664
1666
|
/** 分段大小 */
|
|
1665
1667
|
chunkSize: Scalars['Int']['output'];
|
|
1666
1668
|
/** 文件中的数据条目总数 */
|
|
@@ -3752,7 +3754,8 @@ export type UpdateKnowledgeBaseInput = {
|
|
|
3752
3754
|
namespace: Scalars['String']['input'];
|
|
3753
3755
|
/** 分隔符 */
|
|
3754
3756
|
separator?: InputMaybe<Scalars['String']['input']>;
|
|
3755
|
-
|
|
3757
|
+
/** 默认0 */
|
|
3758
|
+
splitMethod?: InputMaybe<Scalars['Int']['input']>;
|
|
3756
3759
|
};
|
|
3757
3760
|
export type UpdateKnowledgeBaseStructuredFileChunkInput = {
|
|
3758
3761
|
/** 新的内容 */
|
package/dist/esm/sdk.d.ts
CHANGED
|
@@ -870,7 +870,7 @@ export type CreateKnowledgeBaseInput = {
|
|
|
870
870
|
namespace: Scalars['String']['input'];
|
|
871
871
|
/** 分隔符 */
|
|
872
872
|
separator?: InputMaybe<Scalars['String']['input']>;
|
|
873
|
-
splitMethod
|
|
873
|
+
splitMethod?: InputMaybe<Scalars['Int']['input']>;
|
|
874
874
|
/** "向量数据库(目前不需要填写,直接使用系统默认的向量数据库) */
|
|
875
875
|
vectorStore?: InputMaybe<TypedObjectReferenceInput>;
|
|
876
876
|
};
|
|
@@ -1661,6 +1661,8 @@ export type KnowledgeBaseFile = {
|
|
|
1661
1661
|
__typename?: 'KnowledgeBaseFile';
|
|
1662
1662
|
/** 分段方式 */
|
|
1663
1663
|
chunkMethod: Scalars['String']['output'];
|
|
1664
|
+
/** 分块间重合大小 */
|
|
1665
|
+
chunkOverlap: Scalars['Int']['output'];
|
|
1664
1666
|
/** 分段大小 */
|
|
1665
1667
|
chunkSize: Scalars['Int']['output'];
|
|
1666
1668
|
/** 文件中的数据条目总数 */
|
|
@@ -3752,7 +3754,8 @@ export type UpdateKnowledgeBaseInput = {
|
|
|
3752
3754
|
namespace: Scalars['String']['input'];
|
|
3753
3755
|
/** 分隔符 */
|
|
3754
3756
|
separator?: InputMaybe<Scalars['String']['input']>;
|
|
3755
|
-
|
|
3757
|
+
/** 默认0 */
|
|
3758
|
+
splitMethod?: InputMaybe<Scalars['Int']['input']>;
|
|
3756
3759
|
};
|
|
3757
3760
|
export type UpdateKnowledgeBaseStructuredFileChunkInput = {
|
|
3758
3761
|
/** 新的内容 */
|