graphlit-client 1.0.20240728001 → 1.0.20240803001
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.
@@ -3692,6 +3692,35 @@ exports.GetSpecification = (0, graphql_tag_1.default) `
|
|
3692
3692
|
temperature
|
3693
3693
|
probability
|
3694
3694
|
}
|
3695
|
+
mistral {
|
3696
|
+
tokenLimit
|
3697
|
+
completionTokenLimit
|
3698
|
+
model
|
3699
|
+
key
|
3700
|
+
modelName
|
3701
|
+
endpoint
|
3702
|
+
temperature
|
3703
|
+
probability
|
3704
|
+
}
|
3705
|
+
groq {
|
3706
|
+
tokenLimit
|
3707
|
+
completionTokenLimit
|
3708
|
+
model
|
3709
|
+
key
|
3710
|
+
modelName
|
3711
|
+
endpoint
|
3712
|
+
temperature
|
3713
|
+
probability
|
3714
|
+
}
|
3715
|
+
deepseek {
|
3716
|
+
tokenLimit
|
3717
|
+
completionTokenLimit
|
3718
|
+
model
|
3719
|
+
key
|
3720
|
+
modelName
|
3721
|
+
temperature
|
3722
|
+
probability
|
3723
|
+
}
|
3695
3724
|
tools {
|
3696
3725
|
name
|
3697
3726
|
description
|
@@ -3919,6 +3948,35 @@ exports.QuerySpecifications = (0, graphql_tag_1.default) `
|
|
3919
3948
|
temperature
|
3920
3949
|
probability
|
3921
3950
|
}
|
3951
|
+
mistral {
|
3952
|
+
tokenLimit
|
3953
|
+
completionTokenLimit
|
3954
|
+
model
|
3955
|
+
key
|
3956
|
+
modelName
|
3957
|
+
endpoint
|
3958
|
+
temperature
|
3959
|
+
probability
|
3960
|
+
}
|
3961
|
+
groq {
|
3962
|
+
tokenLimit
|
3963
|
+
completionTokenLimit
|
3964
|
+
model
|
3965
|
+
key
|
3966
|
+
modelName
|
3967
|
+
endpoint
|
3968
|
+
temperature
|
3969
|
+
probability
|
3970
|
+
}
|
3971
|
+
deepseek {
|
3972
|
+
tokenLimit
|
3973
|
+
completionTokenLimit
|
3974
|
+
model
|
3975
|
+
key
|
3976
|
+
modelName
|
3977
|
+
temperature
|
3978
|
+
probability
|
3979
|
+
}
|
3922
3980
|
tools {
|
3923
3981
|
name
|
3924
3982
|
description
|
@@ -13276,6 +13276,38 @@ export type GetSpecificationQuery = {
|
|
13276
13276
|
temperature?: number | null;
|
13277
13277
|
probability?: number | null;
|
13278
13278
|
} | null;
|
13279
|
+
mistral?: {
|
13280
|
+
__typename?: 'MistralModelProperties';
|
13281
|
+
tokenLimit?: number | null;
|
13282
|
+
completionTokenLimit?: number | null;
|
13283
|
+
model: MistralModels;
|
13284
|
+
key?: string | null;
|
13285
|
+
modelName?: string | null;
|
13286
|
+
endpoint?: any | null;
|
13287
|
+
temperature?: number | null;
|
13288
|
+
probability?: number | null;
|
13289
|
+
} | null;
|
13290
|
+
groq?: {
|
13291
|
+
__typename?: 'GroqModelProperties';
|
13292
|
+
tokenLimit?: number | null;
|
13293
|
+
completionTokenLimit?: number | null;
|
13294
|
+
model: GroqModels;
|
13295
|
+
key?: string | null;
|
13296
|
+
modelName?: string | null;
|
13297
|
+
endpoint?: any | null;
|
13298
|
+
temperature?: number | null;
|
13299
|
+
probability?: number | null;
|
13300
|
+
} | null;
|
13301
|
+
deepseek?: {
|
13302
|
+
__typename?: 'DeepseekModelProperties';
|
13303
|
+
tokenLimit?: number | null;
|
13304
|
+
completionTokenLimit?: number | null;
|
13305
|
+
model: DeepseekModels;
|
13306
|
+
key?: string | null;
|
13307
|
+
modelName?: string | null;
|
13308
|
+
temperature?: number | null;
|
13309
|
+
probability?: number | null;
|
13310
|
+
} | null;
|
13279
13311
|
tools?: Array<{
|
13280
13312
|
__typename?: 'ToolDefinition';
|
13281
13313
|
name: string;
|
@@ -13532,6 +13564,38 @@ export type QuerySpecificationsQuery = {
|
|
13532
13564
|
temperature?: number | null;
|
13533
13565
|
probability?: number | null;
|
13534
13566
|
} | null;
|
13567
|
+
mistral?: {
|
13568
|
+
__typename?: 'MistralModelProperties';
|
13569
|
+
tokenLimit?: number | null;
|
13570
|
+
completionTokenLimit?: number | null;
|
13571
|
+
model: MistralModels;
|
13572
|
+
key?: string | null;
|
13573
|
+
modelName?: string | null;
|
13574
|
+
endpoint?: any | null;
|
13575
|
+
temperature?: number | null;
|
13576
|
+
probability?: number | null;
|
13577
|
+
} | null;
|
13578
|
+
groq?: {
|
13579
|
+
__typename?: 'GroqModelProperties';
|
13580
|
+
tokenLimit?: number | null;
|
13581
|
+
completionTokenLimit?: number | null;
|
13582
|
+
model: GroqModels;
|
13583
|
+
key?: string | null;
|
13584
|
+
modelName?: string | null;
|
13585
|
+
endpoint?: any | null;
|
13586
|
+
temperature?: number | null;
|
13587
|
+
probability?: number | null;
|
13588
|
+
} | null;
|
13589
|
+
deepseek?: {
|
13590
|
+
__typename?: 'DeepseekModelProperties';
|
13591
|
+
tokenLimit?: number | null;
|
13592
|
+
completionTokenLimit?: number | null;
|
13593
|
+
model: DeepseekModels;
|
13594
|
+
key?: string | null;
|
13595
|
+
modelName?: string | null;
|
13596
|
+
temperature?: number | null;
|
13597
|
+
probability?: number | null;
|
13598
|
+
} | null;
|
13535
13599
|
tools?: Array<{
|
13536
13600
|
__typename?: 'ToolDefinition';
|
13537
13601
|
name: string;
|