graphlit-client 1.0.20250224001 → 1.0.20250225001
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.
@@ -7922,6 +7922,8 @@ exports.GetSpecification = (0, graphql_tag_1.default) `
|
|
7922
7922
|
modelName
|
7923
7923
|
temperature
|
7924
7924
|
probability
|
7925
|
+
enableThinking
|
7926
|
+
thinkingTokenLimit
|
7925
7927
|
}
|
7926
7928
|
google {
|
7927
7929
|
tokenLimit
|
@@ -8263,6 +8265,8 @@ exports.QuerySpecifications = (0, graphql_tag_1.default) `
|
|
8263
8265
|
modelName
|
8264
8266
|
temperature
|
8265
8267
|
probability
|
8268
|
+
enableThinking
|
8269
|
+
thinkingTokenLimit
|
8266
8270
|
}
|
8267
8271
|
google {
|
8268
8272
|
tokenLimit
|
@@ -310,6 +310,8 @@ export type AnthropicModelProperties = {
|
|
310
310
|
chunkTokenLimit?: Maybe<Scalars['Int']['output']>;
|
311
311
|
/** The limit of tokens generated by prompt completion. */
|
312
312
|
completionTokenLimit?: Maybe<Scalars['Int']['output']>;
|
313
|
+
/** Whether Claude's extended thinking is enabled. Applies to Claude 3.7 or higher. */
|
314
|
+
enableThinking?: Maybe<Scalars['Boolean']['output']>;
|
313
315
|
/** The Anthropic API key, if using developer's own account. */
|
314
316
|
key?: Maybe<Scalars['String']['output']>;
|
315
317
|
/** The Anthropic model, or custom, when using developer's own account. */
|
@@ -320,13 +322,19 @@ export type AnthropicModelProperties = {
|
|
320
322
|
probability?: Maybe<Scalars['Float']['output']>;
|
321
323
|
/** The model temperature. */
|
322
324
|
temperature?: Maybe<Scalars['Float']['output']>;
|
325
|
+
/** The limit of thinking tokens allowed for Claude's internal reasoning process. */
|
326
|
+
thinkingTokenLimit?: Maybe<Scalars['Int']['output']>;
|
323
327
|
/** The number of tokens which can provided to the Anthropic model, if using developer's own account. */
|
324
328
|
tokenLimit?: Maybe<Scalars['Int']['output']>;
|
325
329
|
};
|
326
330
|
/** Represents Anthropic model properties. */
|
327
331
|
export type AnthropicModelPropertiesInput = {
|
332
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
333
|
+
chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
328
334
|
/** The limit of tokens generated by prompt completion. */
|
329
335
|
completionTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
336
|
+
/** Whether Claude's extended thinking is enabled. Applies to Claude 3.7 or higher. */
|
337
|
+
enableThinking?: InputMaybe<Scalars['Boolean']['input']>;
|
330
338
|
/** The Anthropic API key, if using developer's own account. */
|
331
339
|
key?: InputMaybe<Scalars['String']['input']>;
|
332
340
|
/** The Anthropic model, or custom, when using developer's own account. */
|
@@ -337,13 +345,19 @@ export type AnthropicModelPropertiesInput = {
|
|
337
345
|
probability?: InputMaybe<Scalars['Float']['input']>;
|
338
346
|
/** The model temperature. */
|
339
347
|
temperature?: InputMaybe<Scalars['Float']['input']>;
|
348
|
+
/** The limit of thinking tokens allowed for Claude's internal reasoning process. */
|
349
|
+
thinkingTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
340
350
|
/** The number of tokens which can provided to the Anthropic model, if using developer's own account. */
|
341
351
|
tokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
342
352
|
};
|
343
353
|
/** Represents Anthropic model properties. */
|
344
354
|
export type AnthropicModelPropertiesUpdateInput = {
|
355
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
356
|
+
chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
345
357
|
/** The limit of tokens generated by prompt completion. */
|
346
358
|
completionTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
359
|
+
/** Whether Claude's extended thinking is enabled. Applies to Claude 3.7 or higher. */
|
360
|
+
enableThinking?: InputMaybe<Scalars['Boolean']['input']>;
|
347
361
|
/** The Anthropic API key, if using developer's own account. */
|
348
362
|
key?: InputMaybe<Scalars['String']['input']>;
|
349
363
|
/** The Anthropic model, or custom, when using developer's own account. */
|
@@ -354,6 +368,8 @@ export type AnthropicModelPropertiesUpdateInput = {
|
|
354
368
|
probability?: InputMaybe<Scalars['Float']['input']>;
|
355
369
|
/** The model temperature. */
|
356
370
|
temperature?: InputMaybe<Scalars['Float']['input']>;
|
371
|
+
/** The limit of thinking tokens allowed for Claude's internal reasoning process. */
|
372
|
+
thinkingTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
357
373
|
/** The number of tokens which can provided to the Anthropic model, if using developer's own account. */
|
358
374
|
tokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
359
375
|
};
|
@@ -22366,6 +22382,8 @@ export type GetSpecificationQuery = {
|
|
22366
22382
|
modelName?: string | null;
|
22367
22383
|
temperature?: number | null;
|
22368
22384
|
probability?: number | null;
|
22385
|
+
enableThinking?: boolean | null;
|
22386
|
+
thinkingTokenLimit?: number | null;
|
22369
22387
|
} | null;
|
22370
22388
|
google?: {
|
22371
22389
|
__typename?: 'GoogleModelProperties';
|
@@ -22751,6 +22769,8 @@ export type QuerySpecificationsQuery = {
|
|
22751
22769
|
modelName?: string | null;
|
22752
22770
|
temperature?: number | null;
|
22753
22771
|
probability?: number | null;
|
22772
|
+
enableThinking?: boolean | null;
|
22773
|
+
thinkingTokenLimit?: number | null;
|
22754
22774
|
} | null;
|
22755
22775
|
google?: {
|
22756
22776
|
__typename?: 'GoogleModelProperties';
|