@yuntijs/arcadia-bff-sdk 1.1.3 → 1.1.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.d.ts +8 -0
- package/dist/umd/index.min.js.map +1 -1
- package/package.json +1 -1
package/dist/esm/sdk.d.ts
CHANGED
|
@@ -509,6 +509,7 @@ export type DataProcessConfigChildren = {
|
|
|
509
509
|
};
|
|
510
510
|
export type DataProcessConfigItem = {
|
|
511
511
|
llm_config?: InputMaybe<LlmConfigItem>;
|
|
512
|
+
remove_duplicate_config?: InputMaybe<RemoveDuplicateConfig>;
|
|
512
513
|
type: Scalars['String']['input'];
|
|
513
514
|
};
|
|
514
515
|
export type DataProcessConfigpreFileProgress = {
|
|
@@ -1790,6 +1791,13 @@ export type RayClusterQuery = {
|
|
|
1790
1791
|
export type RayClusterQueryListRayClustersArgs = {
|
|
1791
1792
|
input: ListCommonInput;
|
|
1792
1793
|
};
|
|
1794
|
+
export type RemoveDuplicateConfig = {
|
|
1795
|
+
embedding_model: Scalars['String']['input'];
|
|
1796
|
+
embedding_name: Scalars['String']['input'];
|
|
1797
|
+
embedding_namespace: Scalars['String']['input'];
|
|
1798
|
+
embedding_provider: Scalars['String']['input'];
|
|
1799
|
+
similarity: Scalars['String']['input'];
|
|
1800
|
+
};
|
|
1793
1801
|
export type Resource = {
|
|
1794
1802
|
__typename?: 'Resource';
|
|
1795
1803
|
limits?: Maybe<Scalars['Map']['output']>;
|