graphlit-client 1.0.20240903001 → 1.0.20240910001
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.
@@ -4654,6 +4654,7 @@ exports.GetSpecification = (0, graphql_tag_1.default) `
|
|
4654
4654
|
}
|
4655
4655
|
rerankingStrategy {
|
4656
4656
|
serviceType
|
4657
|
+
threshold
|
4657
4658
|
}
|
4658
4659
|
graphStrategy {
|
4659
4660
|
type
|
@@ -4911,6 +4912,7 @@ exports.QuerySpecifications = (0, graphql_tag_1.default) `
|
|
4911
4912
|
}
|
4912
4913
|
rerankingStrategy {
|
4913
4914
|
serviceType
|
4915
|
+
threshold
|
4914
4916
|
}
|
4915
4917
|
graphStrategy {
|
4916
4918
|
type
|
@@ -2162,7 +2162,9 @@ export declare enum ElevenLabsModels {
|
|
2162
2162
|
/** Eleven Multilingual v2 */
|
2163
2163
|
MultilingualV2 = "MULTILINGUAL_V2",
|
2164
2164
|
/** Eleven Turbo v2 */
|
2165
|
-
TurboV2 = "TURBO_V2"
|
2165
|
+
TurboV2 = "TURBO_V2",
|
2166
|
+
/** Eleven Turbo v2.5 */
|
2167
|
+
TurboV2_5 = "TURBO_V2_5"
|
2166
2168
|
}
|
2167
2169
|
/** Represents the ElevenLabs publishing properties. */
|
2168
2170
|
export type ElevenLabsPublishingProperties = {
|
@@ -3501,6 +3503,8 @@ export declare enum GroqModels {
|
|
3501
3503
|
Llama_3_8B = "LLAMA_3_8B",
|
3502
3504
|
/** LLaMA 3 70b */
|
3503
3505
|
Llama_3_70B = "LLAMA_3_70B",
|
3506
|
+
/** LLaVA 1.5 7B */
|
3507
|
+
Llava_1_5_7B = "LLAVA_1_5_7B",
|
3504
3508
|
/** Mixtral 8x7b Instruct */
|
3505
3509
|
Mixtral_8X7BInstruct = "MIXTRAL_8X7B_INSTRUCT"
|
3506
3510
|
}
|
@@ -9781,16 +9785,22 @@ export type RerankingStrategy = {
|
|
9781
9785
|
__typename?: 'RerankingStrategy';
|
9782
9786
|
/** The content reranking service type. */
|
9783
9787
|
serviceType: RerankingModelServiceTypes;
|
9788
|
+
/** The content reranking threshold, optional. */
|
9789
|
+
threshold?: Maybe<Scalars['Float']['output']>;
|
9784
9790
|
};
|
9785
9791
|
/** Represents a reranking strategy. */
|
9786
9792
|
export type RerankingStrategyInput = {
|
9787
|
-
/** The content reranking service type
|
9793
|
+
/** The content reranking service type. */
|
9788
9794
|
serviceType: RerankingModelServiceTypes;
|
9795
|
+
/** The content reranking threshold, optional. */
|
9796
|
+
threshold?: InputMaybe<Scalars['Float']['input']>;
|
9789
9797
|
};
|
9790
9798
|
/** Represents a reranking strategy. */
|
9791
9799
|
export type RerankingStrategyUpdateInput = {
|
9792
|
-
/** The content reranking service type
|
9800
|
+
/** The content reranking service type. */
|
9793
9801
|
serviceType?: InputMaybe<RerankingModelServiceTypes>;
|
9802
|
+
/** The content reranking threshold, optional. */
|
9803
|
+
threshold?: InputMaybe<Scalars['Float']['input']>;
|
9794
9804
|
};
|
9795
9805
|
/** Resource connector type */
|
9796
9806
|
export declare enum ResourceConnectorTypes {
|
@@ -16821,6 +16831,7 @@ export type GetSpecificationQuery = {
|
|
16821
16831
|
rerankingStrategy?: {
|
16822
16832
|
__typename?: 'RerankingStrategy';
|
16823
16833
|
serviceType: RerankingModelServiceTypes;
|
16834
|
+
threshold?: number | null;
|
16824
16835
|
} | null;
|
16825
16836
|
graphStrategy?: {
|
16826
16837
|
__typename?: 'GraphStrategy';
|
@@ -17110,6 +17121,7 @@ export type QuerySpecificationsQuery = {
|
|
17110
17121
|
rerankingStrategy?: {
|
17111
17122
|
__typename?: 'RerankingStrategy';
|
17112
17123
|
serviceType: RerankingModelServiceTypes;
|
17124
|
+
threshold?: number | null;
|
17113
17125
|
} | null;
|
17114
17126
|
graphStrategy?: {
|
17115
17127
|
__typename?: 'GraphStrategy';
|
@@ -350,6 +350,8 @@ var ElevenLabsModels;
|
|
350
350
|
ElevenLabsModels["MultilingualV2"] = "MULTILINGUAL_V2";
|
351
351
|
/** Eleven Turbo v2 */
|
352
352
|
ElevenLabsModels["TurboV2"] = "TURBO_V2";
|
353
|
+
/** Eleven Turbo v2.5 */
|
354
|
+
ElevenLabsModels["TurboV2_5"] = "TURBO_V2_5";
|
353
355
|
})(ElevenLabsModels || (exports.ElevenLabsModels = ElevenLabsModels = {}));
|
354
356
|
/** Email list type */
|
355
357
|
var EmailListingTypes;
|
@@ -705,6 +707,8 @@ var GroqModels;
|
|
705
707
|
GroqModels["Llama_3_8B"] = "LLAMA_3_8B";
|
706
708
|
/** LLaMA 3 70b */
|
707
709
|
GroqModels["Llama_3_70B"] = "LLAMA_3_70B";
|
710
|
+
/** LLaVA 1.5 7B */
|
711
|
+
GroqModels["Llava_1_5_7B"] = "LLAVA_1_5_7B";
|
708
712
|
/** Mixtral 8x7b Instruct */
|
709
713
|
GroqModels["Mixtral_8X7BInstruct"] = "MIXTRAL_8X7B_INSTRUCT";
|
710
714
|
})(GroqModels || (exports.GroqModels = GroqModels = {}));
|