graphlit-client 1.0.20250416001 → 1.0.20250420001
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.
@@ -7864,6 +7864,8 @@ exports.GetSpecification = (0, graphql_tag_1.default) `
|
|
7864
7864
|
temperature
|
7865
7865
|
probability
|
7866
7866
|
chunkTokenLimit
|
7867
|
+
enableThinking
|
7868
|
+
thinkingTokenLimit
|
7867
7869
|
}
|
7868
7870
|
replicate {
|
7869
7871
|
tokenLimit
|
@@ -8207,6 +8209,8 @@ exports.QuerySpecifications = (0, graphql_tag_1.default) `
|
|
8207
8209
|
temperature
|
8208
8210
|
probability
|
8209
8211
|
chunkTokenLimit
|
8212
|
+
enableThinking
|
8213
|
+
thinkingTokenLimit
|
8210
8214
|
}
|
8211
8215
|
replicate {
|
8212
8216
|
tokenLimit
|
@@ -4264,6 +4264,8 @@ export type GoogleModelProperties = {
|
|
4264
4264
|
chunkTokenLimit?: Maybe<Scalars['Int']['output']>;
|
4265
4265
|
/** The limit of tokens generated by prompt completion. */
|
4266
4266
|
completionTokenLimit?: Maybe<Scalars['Int']['output']>;
|
4267
|
+
/** Whether Gemini's extended thinking is enabled. Applies to Gemini Flash 2.5 or higher. */
|
4268
|
+
enableThinking?: Maybe<Scalars['Boolean']['output']>;
|
4267
4269
|
/** The Google API key, if using developer's own account. */
|
4268
4270
|
key?: Maybe<Scalars['String']['output']>;
|
4269
4271
|
/** The Google model, or custom, when using developer's own account. */
|
@@ -4274,6 +4276,8 @@ export type GoogleModelProperties = {
|
|
4274
4276
|
probability?: Maybe<Scalars['Float']['output']>;
|
4275
4277
|
/** The model temperature. */
|
4276
4278
|
temperature?: Maybe<Scalars['Float']['output']>;
|
4279
|
+
/** The limit of thinking tokens allowed for Gemini's internal reasoning process. */
|
4280
|
+
thinkingTokenLimit?: Maybe<Scalars['Int']['output']>;
|
4277
4281
|
/** The number of tokens which can provided to the Google model, if using developer's own account. */
|
4278
4282
|
tokenLimit?: Maybe<Scalars['Int']['output']>;
|
4279
4283
|
};
|
@@ -4283,6 +4287,8 @@ export type GoogleModelPropertiesInput = {
|
|
4283
4287
|
chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
4284
4288
|
/** The limit of tokens generated by prompt completion. */
|
4285
4289
|
completionTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
4290
|
+
/** Whether Gemini's extended thinking is enabled. Applies to Gemini Flash 2.5 or higher. */
|
4291
|
+
enableThinking?: InputMaybe<Scalars['Boolean']['input']>;
|
4286
4292
|
/** The Google API key, if using developer's own account. */
|
4287
4293
|
key?: InputMaybe<Scalars['String']['input']>;
|
4288
4294
|
/** The Google model, or custom, when using developer's own account. */
|
@@ -4293,6 +4299,8 @@ export type GoogleModelPropertiesInput = {
|
|
4293
4299
|
probability?: InputMaybe<Scalars['Float']['input']>;
|
4294
4300
|
/** The model temperature. */
|
4295
4301
|
temperature?: InputMaybe<Scalars['Float']['input']>;
|
4302
|
+
/** The limit of thinking tokens allowed for Gemini's internal reasoning process. */
|
4303
|
+
thinkingTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
4296
4304
|
/** The number of tokens which can provided to the Google model, if using developer's own account. */
|
4297
4305
|
tokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
4298
4306
|
};
|
@@ -4302,6 +4310,8 @@ export type GoogleModelPropertiesUpdateInput = {
|
|
4302
4310
|
chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
4303
4311
|
/** The limit of tokens generated by prompt completion. */
|
4304
4312
|
completionTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
4313
|
+
/** Whether Gemini's extended thinking is enabled. Applies to Gemini Flash 2.5 or higher. */
|
4314
|
+
enableThinking?: InputMaybe<Scalars['Boolean']['input']>;
|
4305
4315
|
/** The Google API key, if using developer's own account. */
|
4306
4316
|
key?: InputMaybe<Scalars['String']['input']>;
|
4307
4317
|
/** The Google model, or custom, when using developer's own account. */
|
@@ -4312,6 +4322,8 @@ export type GoogleModelPropertiesUpdateInput = {
|
|
4312
4322
|
probability?: InputMaybe<Scalars['Float']['input']>;
|
4313
4323
|
/** The model temperature. */
|
4314
4324
|
temperature?: InputMaybe<Scalars['Float']['input']>;
|
4325
|
+
/** The limit of thinking tokens allowed for Gemini's internal reasoning process. */
|
4326
|
+
thinkingTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
4315
4327
|
/** The number of tokens which can provided to the Google model, if using developer's own account. */
|
4316
4328
|
tokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
4317
4329
|
};
|
@@ -4350,6 +4362,8 @@ export declare enum GoogleModels {
|
|
4350
4362
|
* @deprecated Use Gemini 2.5 Pro (Experimental) instead.
|
4351
4363
|
*/
|
4352
4364
|
Gemini_2_0ProExperimental = "GEMINI_2_0_PRO_EXPERIMENTAL",
|
4365
|
+
/** Gemini 2.5 Flash (Preview) */
|
4366
|
+
Gemini_2_5FlashPreview = "GEMINI_2_5_FLASH_PREVIEW",
|
4353
4367
|
/** Gemini 2.5 Pro (Experimental) */
|
4354
4368
|
Gemini_2_5ProExperimental = "GEMINI_2_5_PRO_EXPERIMENTAL",
|
4355
4369
|
/** Gemini 2.5 Pro (Preview) */
|
@@ -22830,6 +22844,8 @@ export type GetSpecificationQuery = {
|
|
22830
22844
|
temperature?: number | null;
|
22831
22845
|
probability?: number | null;
|
22832
22846
|
chunkTokenLimit?: number | null;
|
22847
|
+
enableThinking?: boolean | null;
|
22848
|
+
thinkingTokenLimit?: number | null;
|
22833
22849
|
} | null;
|
22834
22850
|
replicate?: {
|
22835
22851
|
__typename?: 'ReplicateModelProperties';
|
@@ -23217,6 +23233,8 @@ export type QuerySpecificationsQuery = {
|
|
23217
23233
|
temperature?: number | null;
|
23218
23234
|
probability?: number | null;
|
23219
23235
|
chunkTokenLimit?: number | null;
|
23236
|
+
enableThinking?: boolean | null;
|
23237
|
+
thinkingTokenLimit?: number | null;
|
23220
23238
|
} | null;
|
23221
23239
|
replicate?: {
|
23222
23240
|
__typename?: 'ReplicateModelProperties';
|
@@ -881,6 +881,8 @@ var GoogleModels;
|
|
881
881
|
* @deprecated Use Gemini 2.5 Pro (Experimental) instead.
|
882
882
|
*/
|
883
883
|
GoogleModels["Gemini_2_0ProExperimental"] = "GEMINI_2_0_PRO_EXPERIMENTAL";
|
884
|
+
/** Gemini 2.5 Flash (Preview) */
|
885
|
+
GoogleModels["Gemini_2_5FlashPreview"] = "GEMINI_2_5_FLASH_PREVIEW";
|
884
886
|
/** Gemini 2.5 Pro (Experimental) */
|
885
887
|
GoogleModels["Gemini_2_5ProExperimental"] = "GEMINI_2_5_PRO_EXPERIMENTAL";
|
886
888
|
/** Gemini 2.5 Pro (Preview) */
|