graphlit-client 1.0.20241009001 → 1.0.20241022001
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.
@@ -304,6 +304,8 @@ export type AmazonFeedPropertiesUpdateInput = {
|
|
304
304
|
/** Represents Anthropic model properties. */
|
305
305
|
export type AnthropicModelProperties = {
|
306
306
|
__typename?: 'AnthropicModelProperties';
|
307
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
308
|
+
chunkTokenLimit?: Maybe<Scalars['Int']['output']>;
|
307
309
|
/** The limit of tokens generated by prompt completion. */
|
308
310
|
completionTokenLimit?: Maybe<Scalars['Int']['output']>;
|
309
311
|
/** The Anthropic API key, if using developer's own account. */
|
@@ -363,12 +365,22 @@ export declare enum AnthropicModels {
|
|
363
365
|
Claude_2_1 = "CLAUDE_2_1",
|
364
366
|
/** Claude 3.5 Sonnet (Latest) */
|
365
367
|
Claude_3_5Sonnet = "CLAUDE_3_5_SONNET",
|
368
|
+
/** Claude 3.5 Sonnet (06-20-2024 version) */
|
369
|
+
Claude_3_5Sonnet_20240620 = "CLAUDE_3_5_SONNET_20240620",
|
370
|
+
/** Claude 3.5 Sonnet (10-22-2024 version) */
|
371
|
+
Claude_3_5Sonnet_20241022 = "CLAUDE_3_5_SONNET_20241022",
|
366
372
|
/** Claude 3 Haiku (Latest) */
|
367
373
|
Claude_3Haiku = "CLAUDE_3_HAIKU",
|
374
|
+
/** Claude 3 Haiku (03-07-2024 version) */
|
375
|
+
Claude_3Haiku_20240307 = "CLAUDE_3_HAIKU_20240307",
|
368
376
|
/** Claude 3 Opus (Latest) */
|
369
377
|
Claude_3Opus = "CLAUDE_3_OPUS",
|
378
|
+
/** Claude 3 Opus (02-29-2024 version) */
|
379
|
+
Claude_3Opus_20240229 = "CLAUDE_3_OPUS_20240229",
|
370
380
|
/** Claude 3 Sonnet (Latest) */
|
371
381
|
Claude_3Sonnet = "CLAUDE_3_SONNET",
|
382
|
+
/** Claude 3 Sonnet (02-29-2024 version) */
|
383
|
+
Claude_3Sonnet_20240229 = "CLAUDE_3_SONNET_20240229",
|
372
384
|
/** @deprecated Use Claude 3 Haiku instead. */
|
373
385
|
ClaudeInstant_1 = "CLAUDE_INSTANT_1",
|
374
386
|
/** @deprecated Use Claude 3 Haiku instead. */
|
@@ -499,6 +511,8 @@ export type AudioMetadataInput = {
|
|
499
511
|
/** Represents Azure AI model properties. */
|
500
512
|
export type AzureAiModelProperties = {
|
501
513
|
__typename?: 'AzureAIModelProperties';
|
514
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
515
|
+
chunkTokenLimit?: Maybe<Scalars['Int']['output']>;
|
502
516
|
/** The limit of tokens generated by prompt completion. */
|
503
517
|
completionTokenLimit?: Maybe<Scalars['Int']['output']>;
|
504
518
|
/** The Azure AI API endpoint. */
|
@@ -514,6 +528,8 @@ export type AzureAiModelProperties = {
|
|
514
528
|
};
|
515
529
|
/** Represents Azure AI model properties. */
|
516
530
|
export type AzureAiModelPropertiesInput = {
|
531
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
532
|
+
chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
517
533
|
/** The limit of tokens generated by prompt completion. */
|
518
534
|
completionTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
519
535
|
/** The Azure AI API endpoint. */
|
@@ -529,6 +545,8 @@ export type AzureAiModelPropertiesInput = {
|
|
529
545
|
};
|
530
546
|
/** Represents Azure AI model properties. */
|
531
547
|
export type AzureAiModelPropertiesUpdateInput = {
|
548
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
549
|
+
chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
532
550
|
/** The limit of tokens generated by prompt completion. */
|
533
551
|
completionTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
534
552
|
/** The Azure AI API endpoint. */
|
@@ -692,6 +710,8 @@ export type AzureImageExtractionPropertiesInput = {
|
|
692
710
|
/** Represents Azure OpenAI model properties. */
|
693
711
|
export type AzureOpenAiModelProperties = {
|
694
712
|
__typename?: 'AzureOpenAIModelProperties';
|
713
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
714
|
+
chunkTokenLimit?: Maybe<Scalars['Int']['output']>;
|
695
715
|
/** The limit of tokens generated by prompt completion. */
|
696
716
|
completionTokenLimit?: Maybe<Scalars['Int']['output']>;
|
697
717
|
/** The Azure OpenAI deployment name, if using developer's own account. */
|
@@ -711,6 +731,8 @@ export type AzureOpenAiModelProperties = {
|
|
711
731
|
};
|
712
732
|
/** Represents Azure OpenAI model properties. */
|
713
733
|
export type AzureOpenAiModelPropertiesInput = {
|
734
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
735
|
+
chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
714
736
|
/** The limit of tokens generated by prompt completion. */
|
715
737
|
completionTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
716
738
|
/** The Azure OpenAI deployment name, if using developer's own account. */
|
@@ -730,6 +752,8 @@ export type AzureOpenAiModelPropertiesInput = {
|
|
730
752
|
};
|
731
753
|
/** Represents Azure OpenAI model properties. */
|
732
754
|
export type AzureOpenAiModelPropertiesUpdateInput = {
|
755
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
756
|
+
chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
733
757
|
/** The limit of tokens generated by prompt completion. */
|
734
758
|
completionTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
735
759
|
/** The Azure OpenAI deployment name, if using developer's own account. */
|
@@ -751,11 +775,11 @@ export type AzureOpenAiModelPropertiesUpdateInput = {
|
|
751
775
|
export declare enum AzureOpenAiModels {
|
752
776
|
/** Developer-specified deployment */
|
753
777
|
Custom = "CUSTOM",
|
754
|
-
/** GPT-4 (Latest
|
778
|
+
/** GPT-4 (Latest) */
|
755
779
|
Gpt4 = "GPT4",
|
756
|
-
/** GPT-4 Turbo 128k (Latest
|
780
|
+
/** GPT-4 Turbo 128k (Latest) */
|
757
781
|
Gpt4Turbo_128K = "GPT4_TURBO_128K",
|
758
|
-
/** GPT-3.5 Turbo 16k (Latest
|
782
|
+
/** GPT-3.5 Turbo 16k (Latest) */
|
759
783
|
Gpt35Turbo_16K = "GPT35_TURBO_16K"
|
760
784
|
}
|
761
785
|
/** Represents an Azure Cognitive Services text entity extraction connector. */
|
@@ -973,6 +997,8 @@ export declare enum CerebrasModels {
|
|
973
997
|
/** Represents Cohere model properties. */
|
974
998
|
export type CohereModelProperties = {
|
975
999
|
__typename?: 'CohereModelProperties';
|
1000
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
1001
|
+
chunkTokenLimit?: Maybe<Scalars['Int']['output']>;
|
976
1002
|
/** The limit of tokens generated by prompt completion. */
|
977
1003
|
completionTokenLimit?: Maybe<Scalars['Int']['output']>;
|
978
1004
|
/** The Cohere API key, if using developer's own account. */
|
@@ -990,6 +1016,8 @@ export type CohereModelProperties = {
|
|
990
1016
|
};
|
991
1017
|
/** Represents Cohere model properties. */
|
992
1018
|
export type CohereModelPropertiesInput = {
|
1019
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
1020
|
+
chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
993
1021
|
/** The limit of tokens generated by prompt completion. */
|
994
1022
|
completionTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
995
1023
|
/** The Cohere API key, if using developer's own account. */
|
@@ -1007,6 +1035,8 @@ export type CohereModelPropertiesInput = {
|
|
1007
1035
|
};
|
1008
1036
|
/** Represents Cohere model properties. */
|
1009
1037
|
export type CohereModelPropertiesUpdateInput = {
|
1038
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
1039
|
+
chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
1010
1040
|
/** The limit of tokens generated by prompt completion. */
|
1011
1041
|
completionTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
1012
1042
|
/** The Cohere API key, if using developer's own account. */
|
@@ -1037,7 +1067,11 @@ export declare enum CohereModels {
|
|
1037
1067
|
/** Command R+ (2024-08 version) */
|
1038
1068
|
CommandRPlus_202408 = "COMMAND_R_PLUS_202408",
|
1039
1069
|
/** Developer-specified model */
|
1040
|
-
Custom = "CUSTOM"
|
1070
|
+
Custom = "CUSTOM",
|
1071
|
+
/** Embed English 3.0 */
|
1072
|
+
EmbedEnglish_3_0 = "EMBED_ENGLISH_3_0",
|
1073
|
+
/** Embed Multilingual 3.0 */
|
1074
|
+
EmbedMultilingual_3_0 = "EMBED_MULTILINGUAL_3_0"
|
1041
1075
|
}
|
1042
1076
|
/** Represents a collection. */
|
1043
1077
|
export type Collection = {
|
@@ -1837,14 +1871,10 @@ export declare enum ConversationSearchTypes {
|
|
1837
1871
|
/** Represents a conversation strategy. */
|
1838
1872
|
export type ConversationStrategy = {
|
1839
1873
|
__typename?: 'ConversationStrategy';
|
1840
|
-
/** @deprecated Moved to retrieval strategy. */
|
1841
|
-
contentLimit?: Maybe<Scalars['Int']['output']>;
|
1842
1874
|
/** The weight of contents within prompt context, in range [0.0 - 1.0]. */
|
1843
1875
|
contentsWeight?: Maybe<Scalars['Float']['output']>;
|
1844
1876
|
/** Embed content citations into completed converation messages. */
|
1845
1877
|
embedCitations?: Maybe<Scalars['Boolean']['output']>;
|
1846
|
-
/** @deprecated Moved to retrieval strategy. */
|
1847
|
-
enableExpandedRetrieval?: Maybe<Scalars['Boolean']['output']>;
|
1848
1878
|
/** Provide content facets with completed conversation. */
|
1849
1879
|
enableFacets?: Maybe<Scalars['Boolean']['output']>;
|
1850
1880
|
/** The maximum number of retrieval user messages to provide with prompt context. Defaults to 5. */
|
@@ -2437,13 +2467,19 @@ export type EmailPreparationPropertiesInput = {
|
|
2437
2467
|
/** Represents the embeddings strategy. */
|
2438
2468
|
export type EmbeddingsStrategy = {
|
2439
2469
|
__typename?: 'EmbeddingsStrategy';
|
2440
|
-
/** The limit of tokens per embedded text chunk
|
2470
|
+
/** @deprecated The limit of tokens per embedded text chunk has been removed from embeddings strategy. Assign in text embeddings specification instead. */
|
2441
2471
|
chunkTokenLimit?: Maybe<Scalars['Int']['output']>;
|
2472
|
+
/** The LLM specification used for image embeddings. */
|
2473
|
+
imageSpecification?: Maybe<EntityReference>;
|
2474
|
+
/** The LLM specification used for text embeddings. */
|
2475
|
+
textSpecification?: Maybe<EntityReference>;
|
2442
2476
|
};
|
2443
2477
|
/** Represents the embeddings strategy. */
|
2444
2478
|
export type EmbeddingsStrategyInput = {
|
2445
|
-
/** The
|
2446
|
-
|
2479
|
+
/** The LLM specification used for image embeddings. */
|
2480
|
+
imageSpecification?: InputMaybe<EntityReferenceInput>;
|
2481
|
+
/** The LLM specification used for text embeddings. */
|
2482
|
+
textSpecification?: InputMaybe<EntityReferenceInput>;
|
2447
2483
|
};
|
2448
2484
|
/** Represents an enrichment workflow job. */
|
2449
2485
|
export type EnrichmentWorkflowJob = {
|
@@ -2520,10 +2556,7 @@ export type EntityExtractionConnector = {
|
|
2520
2556
|
modelImage?: Maybe<ModelImageExtractionProperties>;
|
2521
2557
|
/** The specific properties for LLM text entity extraction. */
|
2522
2558
|
modelText?: Maybe<ModelTextExtractionProperties>;
|
2523
|
-
/**
|
2524
|
-
* The specific properties for OpenAI image entity extraction.
|
2525
|
-
* @deprecated Use MODEL_IMAGE instead.
|
2526
|
-
*/
|
2559
|
+
/** @deprecated The specific properties for OpenAI image entity extraction have been removed. Use LLM image entity extraction instead. */
|
2527
2560
|
openAIImage?: Maybe<OpenAiImageExtractionProperties>;
|
2528
2561
|
/** The entity extraction connector service type. */
|
2529
2562
|
type: EntityExtractionServiceTypes;
|
@@ -3555,6 +3588,8 @@ export type GoogleFeedPropertiesUpdateInput = {
|
|
3555
3588
|
/** Represents Google model properties. */
|
3556
3589
|
export type GoogleModelProperties = {
|
3557
3590
|
__typename?: 'GoogleModelProperties';
|
3591
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
3592
|
+
chunkTokenLimit?: Maybe<Scalars['Int']['output']>;
|
3558
3593
|
/** The limit of tokens generated by prompt completion. */
|
3559
3594
|
completionTokenLimit?: Maybe<Scalars['Int']['output']>;
|
3560
3595
|
/** The Google API key, if using developer's own account. */
|
@@ -3572,6 +3607,8 @@ export type GoogleModelProperties = {
|
|
3572
3607
|
};
|
3573
3608
|
/** Represents Google model properties. */
|
3574
3609
|
export type GoogleModelPropertiesInput = {
|
3610
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
3611
|
+
chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
3575
3612
|
/** The limit of tokens generated by prompt completion. */
|
3576
3613
|
completionTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
3577
3614
|
/** The Google API key, if using developer's own account. */
|
@@ -3589,6 +3626,8 @@ export type GoogleModelPropertiesInput = {
|
|
3589
3626
|
};
|
3590
3627
|
/** Represents Google model properties. */
|
3591
3628
|
export type GoogleModelPropertiesUpdateInput = {
|
3629
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
3630
|
+
chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
3592
3631
|
/** The limit of tokens generated by prompt completion. */
|
3593
3632
|
completionTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
3594
3633
|
/** The Google API key, if using developer's own account. */
|
@@ -3608,6 +3647,8 @@ export type GoogleModelPropertiesUpdateInput = {
|
|
3608
3647
|
export declare enum GoogleModels {
|
3609
3648
|
/** Developer-specified model */
|
3610
3649
|
Custom = "CUSTOM",
|
3650
|
+
/** Embed (004 version) */
|
3651
|
+
Embedding_004 = "EMBEDDING_004",
|
3611
3652
|
/** Gemini 1.5 Flash (Latest) */
|
3612
3653
|
Gemini_1_5Flash = "GEMINI_1_5_FLASH",
|
3613
3654
|
/** Gemini 1.5 Flash (001 version) */
|
@@ -3764,7 +3805,10 @@ export declare enum GroqModels {
|
|
3764
3805
|
Llama_3_2_1BPreview = "LLAMA_3_2_1B_PREVIEW",
|
3765
3806
|
/** LLaMA 3.2 3b Preview */
|
3766
3807
|
Llama_3_2_3BPreview = "LLAMA_3_2_3B_PREVIEW",
|
3767
|
-
/**
|
3808
|
+
/**
|
3809
|
+
* LLaMA 3.2 11b Text Preview
|
3810
|
+
* @deprecated Use Llama 3.2 11b Vision Preview instead.
|
3811
|
+
*/
|
3768
3812
|
Llama_3_2_11BTextPreview = "LLAMA_3_2_11B_TEXT_PREVIEW",
|
3769
3813
|
/** LLaMA 3.2 11b Vision Preview */
|
3770
3814
|
Llama_3_2_11BVisionPreview = "LLAMA_3_2_11B_VISION_PREVIEW",
|
@@ -3774,7 +3818,10 @@ export declare enum GroqModels {
|
|
3774
3818
|
Llama_3_8B = "LLAMA_3_8B",
|
3775
3819
|
/** LLaMA 3 70b */
|
3776
3820
|
Llama_3_70B = "LLAMA_3_70B",
|
3777
|
-
/**
|
3821
|
+
/**
|
3822
|
+
* LLaVA 1.5 7B Preview
|
3823
|
+
* @deprecated Use Llama 3.2 11b Vision Preview instead.
|
3824
|
+
*/
|
3778
3825
|
Llava_1_5_7BPreview = "LLAVA_1_5_7B_PREVIEW",
|
3779
3826
|
/** Mixtral 8x7b Instruct */
|
3780
3827
|
Mixtral_8X7BInstruct = "MIXTRAL_8X7B_INSTRUCT"
|
@@ -4193,6 +4240,51 @@ export type IssueMetadataInput = {
|
|
4193
4240
|
/** The issue type, i.e. epic, story, task. */
|
4194
4241
|
type?: InputMaybe<Scalars['String']['input']>;
|
4195
4242
|
};
|
4243
|
+
/** Represents Jina model properties. */
|
4244
|
+
export type JinaModelProperties = {
|
4245
|
+
__typename?: 'JinaModelProperties';
|
4246
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
4247
|
+
chunkTokenLimit?: Maybe<Scalars['Int']['output']>;
|
4248
|
+
/** The Jina API key, if using developer's own account. */
|
4249
|
+
key?: Maybe<Scalars['String']['output']>;
|
4250
|
+
/** The Jina model, or custom, when using developer's own account. */
|
4251
|
+
model: JinaModels;
|
4252
|
+
/** The Jina model name, if using developer's own account. */
|
4253
|
+
modelName?: Maybe<Scalars['String']['output']>;
|
4254
|
+
};
|
4255
|
+
/** Represents Jina model properties. */
|
4256
|
+
export type JinaModelPropertiesInput = {
|
4257
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
4258
|
+
chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
4259
|
+
/** The Jina API key, if using developer's own account. */
|
4260
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
4261
|
+
/** The Jina model, or custom, when using developer's own account. */
|
4262
|
+
model: JinaModels;
|
4263
|
+
/** The Jina model name, if using developer's own account. */
|
4264
|
+
modelName?: InputMaybe<Scalars['String']['input']>;
|
4265
|
+
};
|
4266
|
+
/** Represents Jina model properties. */
|
4267
|
+
export type JinaModelPropertiesUpdateInput = {
|
4268
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
4269
|
+
chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
4270
|
+
/** The Jina API key, if using developer's own account. */
|
4271
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
4272
|
+
/** The Jina model, or custom, when using developer's own account. */
|
4273
|
+
model?: InputMaybe<JinaModels>;
|
4274
|
+
/** The Jina model name, if using developer's own account. */
|
4275
|
+
modelName?: InputMaybe<Scalars['String']['input']>;
|
4276
|
+
};
|
4277
|
+
/** Jina model type */
|
4278
|
+
export declare enum JinaModels {
|
4279
|
+
/** CLIP Image */
|
4280
|
+
ClipImage = "CLIP_IMAGE",
|
4281
|
+
/** Developer-specified model */
|
4282
|
+
Custom = "CUSTOM",
|
4283
|
+
/** Embed (Latest) */
|
4284
|
+
Embed = "EMBED",
|
4285
|
+
/** Embed 3.0 */
|
4286
|
+
Embed_3_0 = "EMBED_3_0"
|
4287
|
+
}
|
4196
4288
|
/** Represents a label. */
|
4197
4289
|
export type Label = {
|
4198
4290
|
__typename?: 'Label';
|
@@ -6254,6 +6346,8 @@ export type MicrosoftTeamsTeamsInput = {
|
|
6254
6346
|
/** Represents Mistral model properties. */
|
6255
6347
|
export type MistralModelProperties = {
|
6256
6348
|
__typename?: 'MistralModelProperties';
|
6349
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
6350
|
+
chunkTokenLimit?: Maybe<Scalars['Int']['output']>;
|
6257
6351
|
/** The limit of tokens generated by prompt completion. */
|
6258
6352
|
completionTokenLimit?: Maybe<Scalars['Int']['output']>;
|
6259
6353
|
/** The Mistral API endpoint, if using developer's own account. */
|
@@ -6273,6 +6367,8 @@ export type MistralModelProperties = {
|
|
6273
6367
|
};
|
6274
6368
|
/** Represents Mistral model properties. */
|
6275
6369
|
export type MistralModelPropertiesInput = {
|
6370
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
6371
|
+
chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
6276
6372
|
/** The limit of tokens generated by prompt completion. */
|
6277
6373
|
completionTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
6278
6374
|
/** The Mistral API endpoint, if using developer's own account. */
|
@@ -6292,6 +6388,8 @@ export type MistralModelPropertiesInput = {
|
|
6292
6388
|
};
|
6293
6389
|
/** Represents Mistral model properties. */
|
6294
6390
|
export type MistralModelPropertiesUpdateInput = {
|
6391
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
6392
|
+
chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
6295
6393
|
/** The limit of tokens generated by prompt completion. */
|
6296
6394
|
completionTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
6297
6395
|
/** The Mistral API endpoint, if using developer's own account. */
|
@@ -6313,6 +6411,8 @@ export type MistralModelPropertiesUpdateInput = {
|
|
6313
6411
|
export declare enum MistralModels {
|
6314
6412
|
/** Developer-specified model */
|
6315
6413
|
Custom = "CUSTOM",
|
6414
|
+
/** Mistral Embed */
|
6415
|
+
MistralEmbed = "MISTRAL_EMBED",
|
6316
6416
|
/** Mistral Large */
|
6317
6417
|
MistralLarge = "MISTRAL_LARGE",
|
6318
6418
|
/** Mistral Medium */
|
@@ -6366,12 +6466,16 @@ export declare enum ModelServiceTypes {
|
|
6366
6466
|
Google = "GOOGLE",
|
6367
6467
|
/** Groq */
|
6368
6468
|
Groq = "GROQ",
|
6469
|
+
/** Jina */
|
6470
|
+
Jina = "JINA",
|
6369
6471
|
/** Mistral */
|
6370
6472
|
Mistral = "MISTRAL",
|
6371
6473
|
/** OpenAI */
|
6372
6474
|
OpenAi = "OPEN_AI",
|
6373
6475
|
/** Replicate */
|
6374
|
-
Replicate = "REPLICATE"
|
6476
|
+
Replicate = "REPLICATE",
|
6477
|
+
/** Voyage */
|
6478
|
+
Voyage = "VOYAGE"
|
6375
6479
|
}
|
6376
6480
|
/** Represents an LLM text entity extraction connector. */
|
6377
6481
|
export type ModelTextExtractionProperties = {
|
@@ -6645,6 +6749,7 @@ export type Mutation = {
|
|
6645
6749
|
ingestPage?: Maybe<Content>;
|
6646
6750
|
/** Ingests text. */
|
6647
6751
|
ingestText?: Maybe<Content>;
|
6752
|
+
ingestTextBatch?: Maybe<Array<Maybe<Content>>>;
|
6648
6753
|
/** Ingests content by URI. Supports files and webpages. */
|
6649
6754
|
ingestUri?: Maybe<Content>;
|
6650
6755
|
/** Opens an existing collection. */
|
@@ -7234,6 +7339,13 @@ export type MutationIngestTextArgs = {
|
|
7234
7339
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
7235
7340
|
workflow?: InputMaybe<EntityReferenceInput>;
|
7236
7341
|
};
|
7342
|
+
export type MutationIngestTextBatchArgs = {
|
7343
|
+
batch: Array<TextContentInput>;
|
7344
|
+
collections?: InputMaybe<Array<EntityReferenceInput>>;
|
7345
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7346
|
+
textType?: InputMaybe<TextTypes>;
|
7347
|
+
workflow?: InputMaybe<EntityReferenceInput>;
|
7348
|
+
};
|
7237
7349
|
export type MutationIngestUriArgs = {
|
7238
7350
|
collections?: InputMaybe<Array<EntityReferenceInput>>;
|
7239
7351
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
@@ -7697,21 +7809,14 @@ export type OpenAiImageExtractionProperties = {
|
|
7697
7809
|
/** The OpenAI vision detail mode. */
|
7698
7810
|
detailLevel?: Maybe<OpenAiVisionDetailLevels>;
|
7699
7811
|
};
|
7700
|
-
/** Represents an OpenAI image entity extraction connector. */
|
7701
|
-
export type OpenAiImageExtractionPropertiesInput = {
|
7702
|
-
/** The confidence threshold for entity extraction. */
|
7703
|
-
confidenceThreshold?: InputMaybe<Scalars['Float']['input']>;
|
7704
|
-
/** Custom instructions which are injected into the LLM prompt. */
|
7705
|
-
customInstructions?: InputMaybe<Scalars['String']['input']>;
|
7706
|
-
/** The OpenAI vision detail mode. */
|
7707
|
-
detailLevel?: InputMaybe<OpenAiVisionDetailLevels>;
|
7708
|
-
};
|
7709
7812
|
/** Represents OpenAI model properties. */
|
7710
7813
|
export type OpenAiModelProperties = {
|
7711
7814
|
__typename?: 'OpenAIModelProperties';
|
7815
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
7816
|
+
chunkTokenLimit?: Maybe<Scalars['Int']['output']>;
|
7712
7817
|
/** The limit of tokens generated by prompt completion. */
|
7713
7818
|
completionTokenLimit?: Maybe<Scalars['Int']['output']>;
|
7714
|
-
/** The OpenAI vision detail mode. Only applies when using OpenAI for image
|
7819
|
+
/** The OpenAI vision detail mode. Only applies when using OpenAI for image completion. */
|
7715
7820
|
detailLevel?: Maybe<OpenAiVisionDetailLevels>;
|
7716
7821
|
/** The OpenAI API key, if using developer's own account. */
|
7717
7822
|
key?: Maybe<Scalars['String']['output']>;
|
@@ -7728,9 +7833,11 @@ export type OpenAiModelProperties = {
|
|
7728
7833
|
};
|
7729
7834
|
/** Represents OpenAI model properties. */
|
7730
7835
|
export type OpenAiModelPropertiesInput = {
|
7836
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
7837
|
+
chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
7731
7838
|
/** The limit of tokens generated by prompt completion. */
|
7732
7839
|
completionTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
7733
|
-
/** The OpenAI vision detail mode. Only applies when using OpenAI for image
|
7840
|
+
/** The OpenAI vision detail mode. Only applies when using OpenAI for image completion. */
|
7734
7841
|
detailLevel?: InputMaybe<OpenAiVisionDetailLevels>;
|
7735
7842
|
/** The OpenAI API key, if using developer's own account. */
|
7736
7843
|
key?: InputMaybe<Scalars['String']['input']>;
|
@@ -7747,9 +7854,11 @@ export type OpenAiModelPropertiesInput = {
|
|
7747
7854
|
};
|
7748
7855
|
/** Represents OpenAI model properties. */
|
7749
7856
|
export type OpenAiModelPropertiesUpdateInput = {
|
7857
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
7858
|
+
chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
7750
7859
|
/** The limit of tokens generated by prompt completion. */
|
7751
7860
|
completionTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
7752
|
-
/** The OpenAI vision detail mode. Only applies when using OpenAI for image
|
7861
|
+
/** The OpenAI vision detail mode. Only applies when using OpenAI for image completion. */
|
7753
7862
|
detailLevel?: InputMaybe<OpenAiVisionDetailLevels>;
|
7754
7863
|
/** The OpenAI API key, if using developer's own account. */
|
7755
7864
|
key?: InputMaybe<Scalars['String']['input']>;
|
@@ -7766,8 +7875,14 @@ export type OpenAiModelPropertiesUpdateInput = {
|
|
7766
7875
|
};
|
7767
7876
|
/** OpenAI model type */
|
7768
7877
|
export declare enum OpenAiModels {
|
7878
|
+
/** Embedding Ada-002 */
|
7879
|
+
Ada_002 = "ADA_002",
|
7769
7880
|
/** Developer-specified model */
|
7770
7881
|
Custom = "CUSTOM",
|
7882
|
+
/** Embedding 3 Large */
|
7883
|
+
Embedding_3Large = "EMBEDDING_3_LARGE",
|
7884
|
+
/** Embedding 3 Small */
|
7885
|
+
Embedding_3Small = "EMBEDDING_3_SMALL",
|
7771
7886
|
/**
|
7772
7887
|
* GPT-4 (Latest)
|
7773
7888
|
* @deprecated OpenAI has deprecated this model. Use the GPT-4o model instead.
|
@@ -8791,6 +8906,8 @@ export type Project = {
|
|
8791
8906
|
creationDate: Scalars['DateTime']['output'];
|
8792
8907
|
/** The project credit usage. */
|
8793
8908
|
credits?: Maybe<Scalars['Long']['output']>;
|
8909
|
+
/** The project vector storage embeddings strategy. */
|
8910
|
+
embeddings?: Maybe<EmbeddingsStrategy>;
|
8794
8911
|
/** The project environment type. */
|
8795
8912
|
environmentType?: Maybe<EnvironmentTypes>;
|
8796
8913
|
/** The ID of the project. */
|
@@ -9037,6 +9154,8 @@ export type ProjectStorageFileFacet = {
|
|
9037
9154
|
export type ProjectUpdateInput = {
|
9038
9155
|
/** The project callback URI, optional. The platform will callback to this webhook upon credit charges. */
|
9039
9156
|
callbackUri?: InputMaybe<Scalars['URL']['input']>;
|
9157
|
+
/** The project vector storage embeddings strategy. */
|
9158
|
+
embeddings?: InputMaybe<EmbeddingsStrategyInput>;
|
9040
9159
|
/** The default LLM specification for conversations. */
|
9041
9160
|
specification?: InputMaybe<EntityReferenceInput>;
|
9042
9161
|
/** The default content workflow. */
|
@@ -10082,8 +10201,8 @@ export declare enum RerankingModelServiceTypes {
|
|
10082
10201
|
Cohere = "COHERE",
|
10083
10202
|
/** Jina */
|
10084
10203
|
Jina = "JINA",
|
10085
|
-
/**
|
10086
|
-
|
10204
|
+
/** Voyage */
|
10205
|
+
Voyage = "VOYAGE"
|
10087
10206
|
}
|
10088
10207
|
/** Represents a reranking strategy. */
|
10089
10208
|
export type RerankingStrategy = {
|
@@ -10675,6 +10794,8 @@ export type Specification = {
|
|
10675
10794
|
groq?: Maybe<GroqModelProperties>;
|
10676
10795
|
/** The ID of the specification. */
|
10677
10796
|
id: Scalars['ID']['output'];
|
10797
|
+
/** The Jina model properties. */
|
10798
|
+
jina?: Maybe<JinaModelProperties>;
|
10678
10799
|
/** The Mistral model properties. */
|
10679
10800
|
mistral?: Maybe<MistralModelProperties>;
|
10680
10801
|
/** The modified date of the specification. */
|
@@ -10709,13 +10830,12 @@ export type Specification = {
|
|
10709
10830
|
strategy?: Maybe<ConversationStrategy>;
|
10710
10831
|
/** The LLM system prompt. */
|
10711
10832
|
systemPrompt?: Maybe<Scalars['String']['output']>;
|
10712
|
-
/**
|
10713
|
-
* The tool definitions.
|
10714
|
-
* @deprecated Tool definitions have been moved to prompt conversation mutation.
|
10715
|
-
*/
|
10833
|
+
/** @deprecated The tool definitions have been removed. Tools are now provided to the promptConversation or extractContents mutations. */
|
10716
10834
|
tools?: Maybe<Array<ToolDefinition>>;
|
10717
10835
|
/** The specification type. */
|
10718
10836
|
type?: Maybe<SpecificationTypes>;
|
10837
|
+
/** The Voyage model properties. */
|
10838
|
+
voyage?: Maybe<VoyageModelProperties>;
|
10719
10839
|
};
|
10720
10840
|
/** Represents a filter for LLM specifications. */
|
10721
10841
|
export type SpecificationFilter = {
|
@@ -10766,6 +10886,8 @@ export type SpecificationInput = {
|
|
10766
10886
|
graphStrategy?: InputMaybe<GraphStrategyInput>;
|
10767
10887
|
/** The Groq model properties. */
|
10768
10888
|
groq?: InputMaybe<GroqModelPropertiesInput>;
|
10889
|
+
/** The Jina model properties. */
|
10890
|
+
jina?: InputMaybe<JinaModelPropertiesInput>;
|
10769
10891
|
/** The Mistral model properties. */
|
10770
10892
|
mistral?: InputMaybe<MistralModelPropertiesInput>;
|
10771
10893
|
/** The name of the specification. */
|
@@ -10794,6 +10916,8 @@ export type SpecificationInput = {
|
|
10794
10916
|
systemPrompt?: InputMaybe<Scalars['String']['input']>;
|
10795
10917
|
/** The specification type. */
|
10796
10918
|
type?: InputMaybe<SpecificationTypes>;
|
10919
|
+
/** The Voyage model properties. */
|
10920
|
+
voyage?: InputMaybe<VoyageModelPropertiesInput>;
|
10797
10921
|
};
|
10798
10922
|
/** Represents LLM specification query results. */
|
10799
10923
|
export type SpecificationResults = {
|
@@ -10807,8 +10931,12 @@ export declare enum SpecificationTypes {
|
|
10807
10931
|
Completion = "COMPLETION",
|
10808
10932
|
/** Data extraction */
|
10809
10933
|
Extraction = "EXTRACTION",
|
10934
|
+
/** Image embedding */
|
10935
|
+
ImageEmbedding = "IMAGE_EMBEDDING",
|
10810
10936
|
/** Document preparation */
|
10811
|
-
Preparation = "PREPARATION"
|
10937
|
+
Preparation = "PREPARATION",
|
10938
|
+
/** Text embedding */
|
10939
|
+
TextEmbedding = "TEXT_EMBEDDING"
|
10812
10940
|
}
|
10813
10941
|
/** Represents an LLM specification. */
|
10814
10942
|
export type SpecificationUpdateInput = {
|
@@ -10836,6 +10964,8 @@ export type SpecificationUpdateInput = {
|
|
10836
10964
|
groq?: InputMaybe<GroqModelPropertiesUpdateInput>;
|
10837
10965
|
/** The ID of the specification to update. */
|
10838
10966
|
id: Scalars['ID']['input'];
|
10967
|
+
/** The Jina model properties. */
|
10968
|
+
jina?: InputMaybe<JinaModelPropertiesUpdateInput>;
|
10839
10969
|
/** The Mistral model properties. */
|
10840
10970
|
mistral?: InputMaybe<MistralModelPropertiesUpdateInput>;
|
10841
10971
|
/** The name of the specification. */
|
@@ -10864,18 +10994,15 @@ export type SpecificationUpdateInput = {
|
|
10864
10994
|
systemPrompt?: InputMaybe<Scalars['String']['input']>;
|
10865
10995
|
/** The specification type. */
|
10866
10996
|
type?: InputMaybe<SpecificationTypes>;
|
10997
|
+
/** The Voyage model properties. */
|
10998
|
+
voyage?: InputMaybe<VoyageModelPropertiesUpdateInput>;
|
10867
10999
|
};
|
10868
11000
|
/** Represents the storage workflow stage. */
|
10869
11001
|
export type StorageWorkflowStage = {
|
10870
11002
|
__typename?: 'StorageWorkflowStage';
|
10871
|
-
/** The vector storage embeddings strategy. */
|
11003
|
+
/** @deprecated The vector storage embeddings strategy has been removed. Embeddings can be configured through the project embeddings strategy. */
|
10872
11004
|
embeddings?: Maybe<EmbeddingsStrategy>;
|
10873
11005
|
};
|
10874
|
-
/** Represents the storage workflow stage. */
|
10875
|
-
export type StorageWorkflowStageInput = {
|
10876
|
-
/** The vector storage embeddings strategy. */
|
10877
|
-
embeddings?: InputMaybe<EmbeddingsStrategyInput>;
|
10878
|
-
};
|
10879
11006
|
/** Represents a range of string values. */
|
10880
11007
|
export type StringRange = {
|
10881
11008
|
__typename?: 'StringRange';
|
@@ -10966,6 +11093,13 @@ export type TextChunk = {
|
|
10966
11093
|
/** The text chunk. */
|
10967
11094
|
text?: Maybe<Scalars['String']['output']>;
|
10968
11095
|
};
|
11096
|
+
/** Represents text content. */
|
11097
|
+
export type TextContentInput = {
|
11098
|
+
/** The content name. */
|
11099
|
+
name: Scalars['String']['input'];
|
11100
|
+
/** The content text. */
|
11101
|
+
text: Scalars['String']['input'];
|
11102
|
+
};
|
10969
11103
|
/** Represents a frame of image or video. */
|
10970
11104
|
export type TextFrame = {
|
10971
11105
|
__typename?: 'TextFrame';
|
@@ -11117,15 +11251,6 @@ export type ToolDefinitionInput = {
|
|
11117
11251
|
/** The tool schema. */
|
11118
11252
|
schema: Scalars['String']['input'];
|
11119
11253
|
};
|
11120
|
-
/** Represents a tool definition. */
|
11121
|
-
export type ToolDefinitionUpdateInput = {
|
11122
|
-
/** The tool description. */
|
11123
|
-
description?: InputMaybe<Scalars['String']['input']>;
|
11124
|
-
/** The tool name. */
|
11125
|
-
name?: InputMaybe<Scalars['String']['input']>;
|
11126
|
-
/** The tool schema. */
|
11127
|
-
schema?: InputMaybe<Scalars['String']['input']>;
|
11128
|
-
};
|
11129
11254
|
/** Unit types */
|
11130
11255
|
export declare enum UnitTypes {
|
11131
11256
|
/** Angstrom */
|
@@ -11224,6 +11349,59 @@ export type VideoMetadataInput = {
|
|
11224
11349
|
/** The video width. */
|
11225
11350
|
width?: InputMaybe<Scalars['Int']['input']>;
|
11226
11351
|
};
|
11352
|
+
/** Represents Voyage model properties. */
|
11353
|
+
export type VoyageModelProperties = {
|
11354
|
+
__typename?: 'VoyageModelProperties';
|
11355
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
11356
|
+
chunkTokenLimit?: Maybe<Scalars['Int']['output']>;
|
11357
|
+
/** The Voyage API key, if using developer's own account. */
|
11358
|
+
key?: Maybe<Scalars['String']['output']>;
|
11359
|
+
/** The Voyage model, or custom, when using developer's own account. */
|
11360
|
+
model: VoyageModels;
|
11361
|
+
/** The Voyage model name, if using developer's own account. */
|
11362
|
+
modelName?: Maybe<Scalars['String']['output']>;
|
11363
|
+
};
|
11364
|
+
/** Represents Voyage model properties. */
|
11365
|
+
export type VoyageModelPropertiesInput = {
|
11366
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
11367
|
+
chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
11368
|
+
/** The Voyage API key, if using developer's own account. */
|
11369
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
11370
|
+
/** The Voyage model, or custom, when using developer's own account. */
|
11371
|
+
model: VoyageModels;
|
11372
|
+
/** The Voyage model name, if using developer's own account. */
|
11373
|
+
modelName?: InputMaybe<Scalars['String']['input']>;
|
11374
|
+
};
|
11375
|
+
/** Represents Voyage model properties. */
|
11376
|
+
export type VoyageModelPropertiesUpdateInput = {
|
11377
|
+
/** The limit of tokens per embedded text chunk, defaults to 600. */
|
11378
|
+
chunkTokenLimit?: InputMaybe<Scalars['Int']['input']>;
|
11379
|
+
/** The Voyage API key, if using developer's own account. */
|
11380
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
11381
|
+
/** The Voyage model, or custom, when using developer's own account. */
|
11382
|
+
model?: InputMaybe<VoyageModels>;
|
11383
|
+
/** The Voyage model name, if using developer's own account. */
|
11384
|
+
modelName?: InputMaybe<Scalars['String']['input']>;
|
11385
|
+
};
|
11386
|
+
/** Voyage model type */
|
11387
|
+
export declare enum VoyageModels {
|
11388
|
+
/** Developer-specified model */
|
11389
|
+
Custom = "CUSTOM",
|
11390
|
+
/** Voyage (Latest) */
|
11391
|
+
Voyage = "VOYAGE",
|
11392
|
+
/** Voyage 3.0 */
|
11393
|
+
Voyage_3_0 = "VOYAGE_3_0",
|
11394
|
+
/** Voyage Code 2.0 */
|
11395
|
+
VoyageCode_2_0 = "VOYAGE_CODE_2_0",
|
11396
|
+
/** Voyage Finance 2.0 */
|
11397
|
+
VoyageFinance_2_0 = "VOYAGE_FINANCE_2_0",
|
11398
|
+
/** Voyage Law 2.0 */
|
11399
|
+
VoyageLaw_2_0 = "VOYAGE_LAW_2_0",
|
11400
|
+
/** Voyage Lite 3.0 */
|
11401
|
+
VoyageLite_3_0 = "VOYAGE_LITE_3_0",
|
11402
|
+
/** Voyage Multilingual 2.0 */
|
11403
|
+
VoyageMultilingual_2_0 = "VOYAGE_MULTILINGUAL_2_0"
|
11404
|
+
}
|
11227
11405
|
/** Represents web feed properties. */
|
11228
11406
|
export type WebFeedProperties = {
|
11229
11407
|
__typename?: 'WebFeedProperties';
|
@@ -11293,7 +11471,7 @@ export type Workflow = {
|
|
11293
11471
|
relevance?: Maybe<Scalars['Float']['output']>;
|
11294
11472
|
/** The state of the workflow (i.e. created, finished). */
|
11295
11473
|
state: EntityState;
|
11296
|
-
/** The storage stage of the content workflow. */
|
11474
|
+
/** @deprecated The storage stage of the content workflow has been removed. Embeddings can be configured through the project embeddings strategy. */
|
11297
11475
|
storage?: Maybe<StorageWorkflowStage>;
|
11298
11476
|
};
|
11299
11477
|
/** Represents the workflow action. */
|
@@ -11344,8 +11522,6 @@ export type WorkflowInput = {
|
|
11344
11522
|
name: Scalars['String']['input'];
|
11345
11523
|
/** The preparation stage of the content workflow. */
|
11346
11524
|
preparation?: InputMaybe<PreparationWorkflowStageInput>;
|
11347
|
-
/** The storage stage of the content workflow. */
|
11348
|
-
storage?: InputMaybe<StorageWorkflowStageInput>;
|
11349
11525
|
};
|
11350
11526
|
/** Represents workflow query results. */
|
11351
11527
|
export type WorkflowResults = {
|
@@ -11371,8 +11547,6 @@ export type WorkflowUpdateInput = {
|
|
11371
11547
|
name?: InputMaybe<Scalars['String']['input']>;
|
11372
11548
|
/** The preparation stage of the content workflow. */
|
11373
11549
|
preparation?: InputMaybe<PreparationWorkflowStageInput>;
|
11374
|
-
/** The storage stage of the content workflow. */
|
11375
|
-
storage?: InputMaybe<StorageWorkflowStageInput>;
|
11376
11550
|
};
|
11377
11551
|
/** Represents YouTube feed properties. */
|
11378
11552
|
export type YouTubeFeedProperties = {
|
@@ -12490,6 +12664,31 @@ export type IngestTextMutation = {
|
|
12490
12664
|
} | null> | null;
|
12491
12665
|
} | null;
|
12492
12666
|
};
|
12667
|
+
export type IngestTextBatchMutationVariables = Exact<{
|
12668
|
+
batch: Array<TextContentInput> | TextContentInput;
|
12669
|
+
textType?: InputMaybe<TextTypes>;
|
12670
|
+
workflow?: InputMaybe<EntityReferenceInput>;
|
12671
|
+
collections?: InputMaybe<Array<EntityReferenceInput> | EntityReferenceInput>;
|
12672
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
12673
|
+
}>;
|
12674
|
+
export type IngestTextBatchMutation = {
|
12675
|
+
__typename?: 'Mutation';
|
12676
|
+
ingestTextBatch?: Array<{
|
12677
|
+
__typename?: 'Content';
|
12678
|
+
id: string;
|
12679
|
+
name: string;
|
12680
|
+
state: EntityState;
|
12681
|
+
type?: ContentTypes | null;
|
12682
|
+
fileType?: FileTypes | null;
|
12683
|
+
mimeType?: string | null;
|
12684
|
+
uri?: any | null;
|
12685
|
+
collections?: Array<{
|
12686
|
+
__typename?: 'Collection';
|
12687
|
+
id: string;
|
12688
|
+
name: string;
|
12689
|
+
} | null> | null;
|
12690
|
+
} | null> | null;
|
12691
|
+
};
|
12493
12692
|
export type IngestUriMutationVariables = Exact<{
|
12494
12693
|
name?: InputMaybe<Scalars['String']['input']>;
|
12495
12694
|
uri: Scalars['URL']['input'];
|
@@ -16936,6 +17135,17 @@ export type GetProjectQuery = {
|
|
16936
17135
|
id: string;
|
16937
17136
|
name: string;
|
16938
17137
|
} | null;
|
17138
|
+
embeddings?: {
|
17139
|
+
__typename?: 'EmbeddingsStrategy';
|
17140
|
+
textSpecification?: {
|
17141
|
+
__typename?: 'EntityReference';
|
17142
|
+
id: string;
|
17143
|
+
} | null;
|
17144
|
+
imageSpecification?: {
|
17145
|
+
__typename?: 'EntityReference';
|
17146
|
+
id: string;
|
17147
|
+
} | null;
|
17148
|
+
} | null;
|
16939
17149
|
quota?: {
|
16940
17150
|
__typename?: 'ProjectQuota';
|
16941
17151
|
storage?: any | null;
|
@@ -17421,6 +17631,7 @@ export type GetSpecificationQuery = {
|
|
17421
17631
|
endpoint: any;
|
17422
17632
|
temperature?: number | null;
|
17423
17633
|
probability?: number | null;
|
17634
|
+
chunkTokenLimit?: number | null;
|
17424
17635
|
} | null;
|
17425
17636
|
openAI?: {
|
17426
17637
|
__typename?: 'OpenAIModelProperties';
|
@@ -17431,6 +17642,7 @@ export type GetSpecificationQuery = {
|
|
17431
17642
|
modelName?: string | null;
|
17432
17643
|
temperature?: number | null;
|
17433
17644
|
probability?: number | null;
|
17645
|
+
chunkTokenLimit?: number | null;
|
17434
17646
|
} | null;
|
17435
17647
|
azureOpenAI?: {
|
17436
17648
|
__typename?: 'AzureOpenAIModelProperties';
|
@@ -17442,6 +17654,7 @@ export type GetSpecificationQuery = {
|
|
17442
17654
|
deploymentName?: string | null;
|
17443
17655
|
temperature?: number | null;
|
17444
17656
|
probability?: number | null;
|
17657
|
+
chunkTokenLimit?: number | null;
|
17445
17658
|
} | null;
|
17446
17659
|
cohere?: {
|
17447
17660
|
__typename?: 'CohereModelProperties';
|
@@ -17452,6 +17665,7 @@ export type GetSpecificationQuery = {
|
|
17452
17665
|
modelName?: string | null;
|
17453
17666
|
temperature?: number | null;
|
17454
17667
|
probability?: number | null;
|
17668
|
+
chunkTokenLimit?: number | null;
|
17455
17669
|
} | null;
|
17456
17670
|
anthropic?: {
|
17457
17671
|
__typename?: 'AnthropicModelProperties';
|
@@ -17472,6 +17686,7 @@ export type GetSpecificationQuery = {
|
|
17472
17686
|
modelName?: string | null;
|
17473
17687
|
temperature?: number | null;
|
17474
17688
|
probability?: number | null;
|
17689
|
+
chunkTokenLimit?: number | null;
|
17475
17690
|
} | null;
|
17476
17691
|
replicate?: {
|
17477
17692
|
__typename?: 'ReplicateModelProperties';
|
@@ -17493,6 +17708,7 @@ export type GetSpecificationQuery = {
|
|
17493
17708
|
endpoint?: any | null;
|
17494
17709
|
temperature?: number | null;
|
17495
17710
|
probability?: number | null;
|
17711
|
+
chunkTokenLimit?: number | null;
|
17496
17712
|
} | null;
|
17497
17713
|
groq?: {
|
17498
17714
|
__typename?: 'GroqModelProperties';
|
@@ -17526,12 +17742,20 @@ export type GetSpecificationQuery = {
|
|
17526
17742
|
temperature?: number | null;
|
17527
17743
|
probability?: number | null;
|
17528
17744
|
} | null;
|
17529
|
-
|
17530
|
-
__typename?: '
|
17531
|
-
|
17532
|
-
|
17533
|
-
|
17534
|
-
|
17745
|
+
jina?: {
|
17746
|
+
__typename?: 'JinaModelProperties';
|
17747
|
+
model: JinaModels;
|
17748
|
+
key?: string | null;
|
17749
|
+
modelName?: string | null;
|
17750
|
+
chunkTokenLimit?: number | null;
|
17751
|
+
} | null;
|
17752
|
+
voyage?: {
|
17753
|
+
__typename?: 'VoyageModelProperties';
|
17754
|
+
model: VoyageModels;
|
17755
|
+
key?: string | null;
|
17756
|
+
modelName?: string | null;
|
17757
|
+
chunkTokenLimit?: number | null;
|
17758
|
+
} | null;
|
17535
17759
|
} | null;
|
17536
17760
|
};
|
17537
17761
|
export type PromptSpecificationsMutationVariables = Exact<{
|
@@ -17746,6 +17970,7 @@ export type QuerySpecificationsQuery = {
|
|
17746
17970
|
endpoint: any;
|
17747
17971
|
temperature?: number | null;
|
17748
17972
|
probability?: number | null;
|
17973
|
+
chunkTokenLimit?: number | null;
|
17749
17974
|
} | null;
|
17750
17975
|
openAI?: {
|
17751
17976
|
__typename?: 'OpenAIModelProperties';
|
@@ -17756,6 +17981,7 @@ export type QuerySpecificationsQuery = {
|
|
17756
17981
|
modelName?: string | null;
|
17757
17982
|
temperature?: number | null;
|
17758
17983
|
probability?: number | null;
|
17984
|
+
chunkTokenLimit?: number | null;
|
17759
17985
|
} | null;
|
17760
17986
|
azureOpenAI?: {
|
17761
17987
|
__typename?: 'AzureOpenAIModelProperties';
|
@@ -17767,6 +17993,7 @@ export type QuerySpecificationsQuery = {
|
|
17767
17993
|
deploymentName?: string | null;
|
17768
17994
|
temperature?: number | null;
|
17769
17995
|
probability?: number | null;
|
17996
|
+
chunkTokenLimit?: number | null;
|
17770
17997
|
} | null;
|
17771
17998
|
cohere?: {
|
17772
17999
|
__typename?: 'CohereModelProperties';
|
@@ -17777,6 +18004,7 @@ export type QuerySpecificationsQuery = {
|
|
17777
18004
|
modelName?: string | null;
|
17778
18005
|
temperature?: number | null;
|
17779
18006
|
probability?: number | null;
|
18007
|
+
chunkTokenLimit?: number | null;
|
17780
18008
|
} | null;
|
17781
18009
|
anthropic?: {
|
17782
18010
|
__typename?: 'AnthropicModelProperties';
|
@@ -17797,6 +18025,7 @@ export type QuerySpecificationsQuery = {
|
|
17797
18025
|
modelName?: string | null;
|
17798
18026
|
temperature?: number | null;
|
17799
18027
|
probability?: number | null;
|
18028
|
+
chunkTokenLimit?: number | null;
|
17800
18029
|
} | null;
|
17801
18030
|
replicate?: {
|
17802
18031
|
__typename?: 'ReplicateModelProperties';
|
@@ -17818,6 +18047,7 @@ export type QuerySpecificationsQuery = {
|
|
17818
18047
|
endpoint?: any | null;
|
17819
18048
|
temperature?: number | null;
|
17820
18049
|
probability?: number | null;
|
18050
|
+
chunkTokenLimit?: number | null;
|
17821
18051
|
} | null;
|
17822
18052
|
groq?: {
|
17823
18053
|
__typename?: 'GroqModelProperties';
|
@@ -17851,12 +18081,20 @@ export type QuerySpecificationsQuery = {
|
|
17851
18081
|
temperature?: number | null;
|
17852
18082
|
probability?: number | null;
|
17853
18083
|
} | null;
|
17854
|
-
|
17855
|
-
__typename?: '
|
17856
|
-
|
17857
|
-
|
17858
|
-
|
17859
|
-
|
18084
|
+
jina?: {
|
18085
|
+
__typename?: 'JinaModelProperties';
|
18086
|
+
model: JinaModels;
|
18087
|
+
key?: string | null;
|
18088
|
+
modelName?: string | null;
|
18089
|
+
chunkTokenLimit?: number | null;
|
18090
|
+
} | null;
|
18091
|
+
voyage?: {
|
18092
|
+
__typename?: 'VoyageModelProperties';
|
18093
|
+
model: VoyageModels;
|
18094
|
+
key?: string | null;
|
18095
|
+
modelName?: string | null;
|
18096
|
+
chunkTokenLimit?: number | null;
|
18097
|
+
} | null;
|
17860
18098
|
} | null> | null;
|
17861
18099
|
} | null;
|
17862
18100
|
};
|
@@ -17992,12 +18230,6 @@ export type CreateWorkflowMutation = {
|
|
17992
18230
|
__typename?: 'AzureImageExtractionProperties';
|
17993
18231
|
confidenceThreshold?: number | null;
|
17994
18232
|
} | null;
|
17995
|
-
openAIImage?: {
|
17996
|
-
__typename?: 'OpenAIImageExtractionProperties';
|
17997
|
-
confidenceThreshold?: number | null;
|
17998
|
-
detailLevel?: OpenAiVisionDetailLevels | null;
|
17999
|
-
customInstructions?: string | null;
|
18000
|
-
} | null;
|
18001
18233
|
modelImage?: {
|
18002
18234
|
__typename?: 'ModelImageExtractionProperties';
|
18003
18235
|
specification?: {
|
@@ -18044,13 +18276,6 @@ export type CreateWorkflowMutation = {
|
|
18044
18276
|
} | null;
|
18045
18277
|
} | null> | null;
|
18046
18278
|
} | null;
|
18047
|
-
storage?: {
|
18048
|
-
__typename?: 'StorageWorkflowStage';
|
18049
|
-
embeddings?: {
|
18050
|
-
__typename?: 'EmbeddingsStrategy';
|
18051
|
-
chunkTokenLimit?: number | null;
|
18052
|
-
} | null;
|
18053
|
-
} | null;
|
18054
18279
|
actions?: Array<{
|
18055
18280
|
__typename?: 'WorkflowAction';
|
18056
18281
|
connector?: {
|
@@ -18216,12 +18441,6 @@ export type GetWorkflowQuery = {
|
|
18216
18441
|
__typename?: 'AzureImageExtractionProperties';
|
18217
18442
|
confidenceThreshold?: number | null;
|
18218
18443
|
} | null;
|
18219
|
-
openAIImage?: {
|
18220
|
-
__typename?: 'OpenAIImageExtractionProperties';
|
18221
|
-
confidenceThreshold?: number | null;
|
18222
|
-
detailLevel?: OpenAiVisionDetailLevels | null;
|
18223
|
-
customInstructions?: string | null;
|
18224
|
-
} | null;
|
18225
18444
|
modelImage?: {
|
18226
18445
|
__typename?: 'ModelImageExtractionProperties';
|
18227
18446
|
specification?: {
|
@@ -18268,13 +18487,6 @@ export type GetWorkflowQuery = {
|
|
18268
18487
|
} | null;
|
18269
18488
|
} | null> | null;
|
18270
18489
|
} | null;
|
18271
|
-
storage?: {
|
18272
|
-
__typename?: 'StorageWorkflowStage';
|
18273
|
-
embeddings?: {
|
18274
|
-
__typename?: 'EmbeddingsStrategy';
|
18275
|
-
chunkTokenLimit?: number | null;
|
18276
|
-
} | null;
|
18277
|
-
} | null;
|
18278
18490
|
actions?: Array<{
|
18279
18491
|
__typename?: 'WorkflowAction';
|
18280
18492
|
connector?: {
|
@@ -18406,12 +18618,6 @@ export type QueryWorkflowsQuery = {
|
|
18406
18618
|
__typename?: 'AzureImageExtractionProperties';
|
18407
18619
|
confidenceThreshold?: number | null;
|
18408
18620
|
} | null;
|
18409
|
-
openAIImage?: {
|
18410
|
-
__typename?: 'OpenAIImageExtractionProperties';
|
18411
|
-
confidenceThreshold?: number | null;
|
18412
|
-
detailLevel?: OpenAiVisionDetailLevels | null;
|
18413
|
-
customInstructions?: string | null;
|
18414
|
-
} | null;
|
18415
18621
|
modelImage?: {
|
18416
18622
|
__typename?: 'ModelImageExtractionProperties';
|
18417
18623
|
specification?: {
|
@@ -18458,13 +18664,6 @@ export type QueryWorkflowsQuery = {
|
|
18458
18664
|
} | null;
|
18459
18665
|
} | null> | null;
|
18460
18666
|
} | null;
|
18461
|
-
storage?: {
|
18462
|
-
__typename?: 'StorageWorkflowStage';
|
18463
|
-
embeddings?: {
|
18464
|
-
__typename?: 'EmbeddingsStrategy';
|
18465
|
-
chunkTokenLimit?: number | null;
|
18466
|
-
} | null;
|
18467
|
-
} | null;
|
18468
18667
|
actions?: Array<{
|
18469
18668
|
__typename?: 'WorkflowAction';
|
18470
18669
|
connector?: {
|
@@ -18589,12 +18788,6 @@ export type UpdateWorkflowMutation = {
|
|
18589
18788
|
__typename?: 'AzureImageExtractionProperties';
|
18590
18789
|
confidenceThreshold?: number | null;
|
18591
18790
|
} | null;
|
18592
|
-
openAIImage?: {
|
18593
|
-
__typename?: 'OpenAIImageExtractionProperties';
|
18594
|
-
confidenceThreshold?: number | null;
|
18595
|
-
detailLevel?: OpenAiVisionDetailLevels | null;
|
18596
|
-
customInstructions?: string | null;
|
18597
|
-
} | null;
|
18598
18791
|
modelImage?: {
|
18599
18792
|
__typename?: 'ModelImageExtractionProperties';
|
18600
18793
|
specification?: {
|
@@ -18641,13 +18834,6 @@ export type UpdateWorkflowMutation = {
|
|
18641
18834
|
} | null;
|
18642
18835
|
} | null> | null;
|
18643
18836
|
} | null;
|
18644
|
-
storage?: {
|
18645
|
-
__typename?: 'StorageWorkflowStage';
|
18646
|
-
embeddings?: {
|
18647
|
-
__typename?: 'EmbeddingsStrategy';
|
18648
|
-
chunkTokenLimit?: number | null;
|
18649
|
-
} | null;
|
18650
|
-
} | null;
|
18651
18837
|
actions?: Array<{
|
18652
18838
|
__typename?: 'WorkflowAction';
|
18653
18839
|
connector?: {
|