graphlit-client 1.0.20260203003 → 1.0.20260205001
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.
|
@@ -15664,6 +15664,7 @@ export const GetSpecification = gql `
|
|
|
15664
15664
|
probability
|
|
15665
15665
|
enableThinking
|
|
15666
15666
|
thinkingTokenLimit
|
|
15667
|
+
effort
|
|
15667
15668
|
}
|
|
15668
15669
|
google {
|
|
15669
15670
|
tokenLimit
|
|
@@ -16051,6 +16052,7 @@ export const QuerySpecifications = gql `
|
|
|
16051
16052
|
probability
|
|
16052
16053
|
enableThinking
|
|
16053
16054
|
thinkingTokenLimit
|
|
16055
|
+
effort
|
|
16054
16056
|
}
|
|
16055
16057
|
google {
|
|
16056
16058
|
tokenLimit
|
|
@@ -309,6 +309,17 @@ export type AmazonFeedPropertiesUpdateInput = {
|
|
|
309
309
|
/** S3 secret access key. */
|
|
310
310
|
secretAccessKey?: InputMaybe<Scalars['String']['input']>;
|
|
311
311
|
};
|
|
312
|
+
/** Anthropic effort level */
|
|
313
|
+
export declare enum AnthropicEffortLevels {
|
|
314
|
+
/** High effort */
|
|
315
|
+
High = "HIGH",
|
|
316
|
+
/** Low effort */
|
|
317
|
+
Low = "LOW",
|
|
318
|
+
/** Maximum effort */
|
|
319
|
+
Max = "MAX",
|
|
320
|
+
/** Medium effort */
|
|
321
|
+
Medium = "MEDIUM"
|
|
322
|
+
}
|
|
312
323
|
/** Represents Anthropic model properties. */
|
|
313
324
|
export type AnthropicModelProperties = {
|
|
314
325
|
__typename?: 'AnthropicModelProperties';
|
|
@@ -316,6 +327,8 @@ export type AnthropicModelProperties = {
|
|
|
316
327
|
chunkTokenLimit?: Maybe<Scalars['Int']['output']>;
|
|
317
328
|
/** The limit of tokens generated by prompt completion. */
|
|
318
329
|
completionTokenLimit?: Maybe<Scalars['Int']['output']>;
|
|
330
|
+
/** The effort level for Claude's response. Controls overall token spending independently of thinking. */
|
|
331
|
+
effort?: Maybe<AnthropicEffortLevels>;
|
|
319
332
|
/** Whether Claude's extended thinking is enabled. Applies to Claude 3.7 or higher. */
|
|
320
333
|
enableThinking?: Maybe<Scalars['Boolean']['output']>;
|
|
321
334
|
/** The Anthropic API key, if using developer's own account. */
|
|
@@ -339,6 +352,8 @@ export type AnthropicModelPropertiesInput = {
|
|
|
339
352
|
chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
340
353
|
/** The limit of tokens generated by prompt completion. */
|
|
341
354
|
completionTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
355
|
+
/** The effort level for Claude's response. Controls overall token spending independently of thinking. */
|
|
356
|
+
effort?: InputMaybe<AnthropicEffortLevels>;
|
|
342
357
|
/** Whether Claude's extended thinking is enabled. Applies to Claude 3.7 or higher. */
|
|
343
358
|
enableThinking?: InputMaybe<Scalars['Boolean']['input']>;
|
|
344
359
|
/** The Anthropic API key, if using developer's own account. */
|
|
@@ -362,6 +377,8 @@ export type AnthropicModelPropertiesUpdateInput = {
|
|
|
362
377
|
chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
363
378
|
/** The limit of tokens generated by prompt completion. */
|
|
364
379
|
completionTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
|
380
|
+
/** The effort level for Claude's response. Controls overall token spending independently of thinking. */
|
|
381
|
+
effort?: InputMaybe<AnthropicEffortLevels>;
|
|
365
382
|
/** Whether Claude's extended thinking is enabled. Applies to Claude 3.7 or higher. */
|
|
366
383
|
enableThinking?: InputMaybe<Scalars['Boolean']['input']>;
|
|
367
384
|
/** The Anthropic API key, if using developer's own account. */
|
|
@@ -429,6 +446,14 @@ export declare enum AnthropicModels {
|
|
|
429
446
|
Claude_4_5Sonnet = "CLAUDE_4_5_SONNET",
|
|
430
447
|
/** Claude 4.5 Sonnet (09-29-2025 version) */
|
|
431
448
|
Claude_4_5Sonnet_20250929 = "CLAUDE_4_5_SONNET_20250929",
|
|
449
|
+
/** Claude 4.6 Opus (Latest) */
|
|
450
|
+
Claude_4_6Opus = "CLAUDE_4_6_OPUS",
|
|
451
|
+
/** Claude 4.6 Opus 1M Context (Latest) */
|
|
452
|
+
Claude_4_6Opus_1M = "CLAUDE_4_6_OPUS_1_M",
|
|
453
|
+
/** Claude 4.6 Opus 1M Context (02-05-2026 version) */
|
|
454
|
+
Claude_4_6Opus_1M_20260205 = "CLAUDE_4_6_OPUS_1_M_20260205",
|
|
455
|
+
/** Claude 4.6 Opus (02-05-2026 version) */
|
|
456
|
+
Claude_4_6Opus_20260205 = "CLAUDE_4_6_OPUS_20260205",
|
|
432
457
|
/** Claude 4 Opus (Latest) */
|
|
433
458
|
Claude_4Opus = "CLAUDE_4_OPUS",
|
|
434
459
|
/** Claude 4 Opus (05-14-2025 version) */
|
|
@@ -14567,7 +14592,9 @@ export declare enum OpenAiReasoningEffortLevels {
|
|
|
14567
14592
|
/** Low effort */
|
|
14568
14593
|
Low = "LOW",
|
|
14569
14594
|
/** Medium effort */
|
|
14570
|
-
Medium = "MEDIUM"
|
|
14595
|
+
Medium = "MEDIUM",
|
|
14596
|
+
/** Minimal effort */
|
|
14597
|
+
Minimal = "MINIMAL"
|
|
14571
14598
|
}
|
|
14572
14599
|
/** OpenAI Video model type */
|
|
14573
14600
|
export declare enum OpenAiVideoModels {
|
|
@@ -38847,6 +38874,7 @@ export type GetSpecificationQuery = {
|
|
|
38847
38874
|
probability?: number | null;
|
|
38848
38875
|
enableThinking?: boolean | null;
|
|
38849
38876
|
thinkingTokenLimit?: number | null;
|
|
38877
|
+
effort?: AnthropicEffortLevels | null;
|
|
38850
38878
|
} | null;
|
|
38851
38879
|
google?: {
|
|
38852
38880
|
__typename?: 'GoogleModelProperties';
|
|
@@ -39281,6 +39309,7 @@ export type QuerySpecificationsQuery = {
|
|
|
39281
39309
|
probability?: number | null;
|
|
39282
39310
|
enableThinking?: boolean | null;
|
|
39283
39311
|
thinkingTokenLimit?: number | null;
|
|
39312
|
+
effort?: AnthropicEffortLevels | null;
|
|
39284
39313
|
} | null;
|
|
39285
39314
|
google?: {
|
|
39286
39315
|
__typename?: 'GoogleModelProperties';
|
|
@@ -4,6 +4,18 @@ export var AlertTypes;
|
|
|
4
4
|
/** LLM Prompt */
|
|
5
5
|
AlertTypes["Prompt"] = "PROMPT";
|
|
6
6
|
})(AlertTypes || (AlertTypes = {}));
|
|
7
|
+
/** Anthropic effort level */
|
|
8
|
+
export var AnthropicEffortLevels;
|
|
9
|
+
(function (AnthropicEffortLevels) {
|
|
10
|
+
/** High effort */
|
|
11
|
+
AnthropicEffortLevels["High"] = "HIGH";
|
|
12
|
+
/** Low effort */
|
|
13
|
+
AnthropicEffortLevels["Low"] = "LOW";
|
|
14
|
+
/** Maximum effort */
|
|
15
|
+
AnthropicEffortLevels["Max"] = "MAX";
|
|
16
|
+
/** Medium effort */
|
|
17
|
+
AnthropicEffortLevels["Medium"] = "MEDIUM";
|
|
18
|
+
})(AnthropicEffortLevels || (AnthropicEffortLevels = {}));
|
|
7
19
|
/** Anthropic model type */
|
|
8
20
|
export var AnthropicModels;
|
|
9
21
|
(function (AnthropicModels) {
|
|
@@ -55,6 +67,14 @@ export var AnthropicModels;
|
|
|
55
67
|
AnthropicModels["Claude_4_5Sonnet"] = "CLAUDE_4_5_SONNET";
|
|
56
68
|
/** Claude 4.5 Sonnet (09-29-2025 version) */
|
|
57
69
|
AnthropicModels["Claude_4_5Sonnet_20250929"] = "CLAUDE_4_5_SONNET_20250929";
|
|
70
|
+
/** Claude 4.6 Opus (Latest) */
|
|
71
|
+
AnthropicModels["Claude_4_6Opus"] = "CLAUDE_4_6_OPUS";
|
|
72
|
+
/** Claude 4.6 Opus 1M Context (Latest) */
|
|
73
|
+
AnthropicModels["Claude_4_6Opus_1M"] = "CLAUDE_4_6_OPUS_1_M";
|
|
74
|
+
/** Claude 4.6 Opus 1M Context (02-05-2026 version) */
|
|
75
|
+
AnthropicModels["Claude_4_6Opus_1M_20260205"] = "CLAUDE_4_6_OPUS_1_M_20260205";
|
|
76
|
+
/** Claude 4.6 Opus (02-05-2026 version) */
|
|
77
|
+
AnthropicModels["Claude_4_6Opus_20260205"] = "CLAUDE_4_6_OPUS_20260205";
|
|
58
78
|
/** Claude 4 Opus (Latest) */
|
|
59
79
|
AnthropicModels["Claude_4Opus"] = "CLAUDE_4_OPUS";
|
|
60
80
|
/** Claude 4 Opus (05-14-2025 version) */
|
|
@@ -2223,6 +2243,8 @@ export var OpenAiReasoningEffortLevels;
|
|
|
2223
2243
|
OpenAiReasoningEffortLevels["Low"] = "LOW";
|
|
2224
2244
|
/** Medium effort */
|
|
2225
2245
|
OpenAiReasoningEffortLevels["Medium"] = "MEDIUM";
|
|
2246
|
+
/** Minimal effort */
|
|
2247
|
+
OpenAiReasoningEffortLevels["Minimal"] = "MINIMAL";
|
|
2226
2248
|
})(OpenAiReasoningEffortLevels || (OpenAiReasoningEffortLevels = {}));
|
|
2227
2249
|
/** OpenAI Video model type */
|
|
2228
2250
|
export var OpenAiVideoModels;
|