graphlit-client 1.0.20250531004 → 1.0.20250610001
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.
- package/CHANGELOG.md +64 -0
- package/README.md +441 -53
- package/dist/client.d.ts +128 -3
- package/dist/client.js +1616 -1567
- package/dist/generated/graphql-documents.d.ts +1 -0
- package/dist/generated/graphql-documents.js +376 -312
- package/dist/generated/graphql-types.d.ts +211 -23
- package/dist/generated/graphql-types.js +299 -246
- package/dist/model-mapping.d.ts +18 -0
- package/dist/model-mapping.js +95 -0
- package/dist/stream-helpers.d.ts +106 -0
- package/dist/stream-helpers.js +237 -0
- package/dist/streaming/chunk-buffer.d.ts +25 -0
- package/dist/streaming/chunk-buffer.js +170 -0
- package/dist/streaming/llm-formatters.d.ts +64 -0
- package/dist/streaming/llm-formatters.js +187 -0
- package/dist/streaming/providers.d.ts +18 -0
- package/dist/streaming/providers.js +353 -0
- package/dist/streaming/ui-event-adapter.d.ts +52 -0
- package/dist/streaming/ui-event-adapter.js +288 -0
- package/dist/types/agent.d.ts +39 -0
- package/dist/types/agent.js +1 -0
- package/dist/types/streaming.d.ts +58 -0
- package/dist/types/streaming.js +7 -0
- package/dist/types/ui-events.d.ts +38 -0
- package/dist/types/ui-events.js +1 -0
- package/package.json +32 -5
@@ -198,7 +198,7 @@ export type AlertInput = {
|
|
198
198
|
export type AlertResults = {
|
199
199
|
__typename?: 'AlertResults';
|
200
200
|
/** The list of alert query results. */
|
201
|
-
results?: Maybe<Array<
|
201
|
+
results?: Maybe<Array<Alert>>;
|
202
202
|
};
|
203
203
|
/** Represents an alert scheduling policy. */
|
204
204
|
export type AlertSchedulePolicy = {
|
@@ -901,11 +901,20 @@ export type AzureOpenAiModelPropertiesUpdateInput = {
|
|
901
901
|
export declare enum AzureOpenAiModels {
|
902
902
|
/** Developer-specified deployment */
|
903
903
|
Custom = "CUSTOM",
|
904
|
-
/**
|
904
|
+
/**
|
905
|
+
* GPT-4 (Latest)
|
906
|
+
* @deprecated Built-in Azure OpenAI models are longer supported. Use a developer-specified deployment instead.
|
907
|
+
*/
|
905
908
|
Gpt4 = "GPT4",
|
906
|
-
/**
|
909
|
+
/**
|
910
|
+
* GPT-4 Turbo 128k (Latest)
|
911
|
+
* @deprecated Built-in Azure OpenAI models are longer supported. Use a developer-specified deployment instead.
|
912
|
+
*/
|
907
913
|
Gpt4Turbo_128K = "GPT4_TURBO_128K",
|
908
|
-
/**
|
914
|
+
/**
|
915
|
+
* GPT-3.5 Turbo 16k (Latest)
|
916
|
+
* @deprecated Built-in Azure OpenAI models are longer supported. Use a developer-specified deployment instead.
|
917
|
+
*/
|
909
918
|
Gpt35Turbo_16K = "GPT35_TURBO_16K"
|
910
919
|
}
|
911
920
|
/** Represents an Azure Cognitive Services text entity extraction connector. */
|
@@ -1410,7 +1419,7 @@ export type CollectionInput = {
|
|
1410
1419
|
export type CollectionResults = {
|
1411
1420
|
__typename?: 'CollectionResults';
|
1412
1421
|
/** The list of collection query results. */
|
1413
|
-
results?: Maybe<Array<
|
1422
|
+
results?: Maybe<Array<Collection>>;
|
1414
1423
|
};
|
1415
1424
|
/** Collection type */
|
1416
1425
|
export declare enum CollectionTypes {
|
@@ -1492,7 +1501,7 @@ export type ConnectorInput = {
|
|
1492
1501
|
export type ConnectorResults = {
|
1493
1502
|
__typename?: 'ConnectorResults';
|
1494
1503
|
/** The list of connector query results. */
|
1495
|
-
results?: Maybe<Array<
|
1504
|
+
results?: Maybe<Array<Connector>>;
|
1496
1505
|
};
|
1497
1506
|
/** Connector type */
|
1498
1507
|
export declare enum ConnectorTypes {
|
@@ -1551,6 +1560,8 @@ export type Content = {
|
|
1551
1560
|
epsgCode?: Maybe<Scalars['Int']['output']>;
|
1552
1561
|
/** If workflow failed, the error message. */
|
1553
1562
|
error?: Maybe<Scalars['String']['output']>;
|
1563
|
+
/** The geo-tags of the content, as GeoJSON Features with Point geometry. */
|
1564
|
+
features?: Maybe<Scalars['String']['output']>;
|
1554
1565
|
/** The feed where this content was sourced from. */
|
1555
1566
|
feed?: Maybe<Feed>;
|
1556
1567
|
/** The date when the file was created. */
|
@@ -2349,6 +2360,8 @@ export type ConversationInput = {
|
|
2349
2360
|
name: Scalars['String']['input'];
|
2350
2361
|
/** The LLM specification used by this conversation, optional. */
|
2351
2362
|
specification?: InputMaybe<EntityReferenceInput>;
|
2363
|
+
/** The tool calling definitions. */
|
2364
|
+
tools?: InputMaybe<Array<ToolDefinitionInput>>;
|
2352
2365
|
/** The conversation type. */
|
2353
2366
|
type?: InputMaybe<ConversationTypes>;
|
2354
2367
|
};
|
@@ -2403,7 +2416,7 @@ export type ConversationMessageInput = {
|
|
2403
2416
|
export type ConversationResults = {
|
2404
2417
|
__typename?: 'ConversationResults';
|
2405
2418
|
/** The list of conversation query results. */
|
2406
|
-
results?: Maybe<Array<
|
2419
|
+
results?: Maybe<Array<Conversation>>;
|
2407
2420
|
};
|
2408
2421
|
/** Conversation message role type */
|
2409
2422
|
export declare enum ConversationRoleTypes {
|
@@ -2520,6 +2533,8 @@ export type ConversationUpdateInput = {
|
|
2520
2533
|
name?: InputMaybe<Scalars['String']['input']>;
|
2521
2534
|
/** The LLM specification used by this conversation, optional. */
|
2522
2535
|
specification?: InputMaybe<EntityReferenceInput>;
|
2536
|
+
/** The tool calling definitions. */
|
2537
|
+
tools?: InputMaybe<Array<ToolDefinitionInput>>;
|
2523
2538
|
};
|
2524
2539
|
/** Represents a count. */
|
2525
2540
|
export type CountResult = {
|
@@ -3891,7 +3906,7 @@ export declare enum FeedListingTypes {
|
|
3891
3906
|
export type FeedResults = {
|
3892
3907
|
__typename?: 'FeedResults';
|
3893
3908
|
/** The list of feed query results. */
|
3894
|
-
results?: Maybe<Array<
|
3909
|
+
results?: Maybe<Array<Feed>>;
|
3895
3910
|
};
|
3896
3911
|
/** Represents a feed schedule policy. */
|
3897
3912
|
export type FeedSchedulePolicy = {
|
@@ -4053,6 +4068,8 @@ export type FilePreparationConnector = {
|
|
4053
4068
|
modelDocument?: Maybe<ModelDocumentPreparationProperties>;
|
4054
4069
|
/** The specific properties for web page preparation. */
|
4055
4070
|
page?: Maybe<PagePreparationProperties>;
|
4071
|
+
/** The specific properties for Reducto document preparation. */
|
4072
|
+
reducto?: Maybe<ReductoDocumentPreparationProperties>;
|
4056
4073
|
/** The file preparation service type. */
|
4057
4074
|
type: FilePreparationServiceTypes;
|
4058
4075
|
};
|
@@ -4076,6 +4093,8 @@ export type FilePreparationConnectorInput = {
|
|
4076
4093
|
modelDocument?: InputMaybe<ModelDocumentPreparationPropertiesInput>;
|
4077
4094
|
/** The specific properties for web page preparation. */
|
4078
4095
|
page?: InputMaybe<PagePreparationPropertiesInput>;
|
4096
|
+
/** The specific properties for Reducto document preparation. */
|
4097
|
+
reducto?: InputMaybe<ReductoDocumentPreparationPropertiesInput>;
|
4079
4098
|
/** The file preparation service type. */
|
4080
4099
|
type: FilePreparationServiceTypes;
|
4081
4100
|
};
|
@@ -4096,7 +4115,9 @@ export declare enum FilePreparationServiceTypes {
|
|
4096
4115
|
/** LLM Document Preparation */
|
4097
4116
|
ModelDocument = "MODEL_DOCUMENT",
|
4098
4117
|
/** Web Page Preparation */
|
4099
|
-
Page = "PAGE"
|
4118
|
+
Page = "PAGE",
|
4119
|
+
/** Reducto Document Extraction */
|
4120
|
+
ReductoDocument = "REDUCTO_DOCUMENT"
|
4100
4121
|
}
|
4101
4122
|
/** File type */
|
4102
4123
|
export declare enum FileTypes {
|
@@ -4485,18 +4506,27 @@ export declare enum GoogleModels {
|
|
4485
4506
|
Gemini_2_0Flash = "GEMINI_2_0_FLASH",
|
4486
4507
|
/** Gemini 2.0 Flash (001 version) */
|
4487
4508
|
Gemini_2_0Flash_001 = "GEMINI_2_0_FLASH_001",
|
4488
|
-
/**
|
4509
|
+
/**
|
4510
|
+
* Gemini 2.0 Flash (Experimental)
|
4511
|
+
* @deprecated Use Gemini 2.0 Flash (Latest) instead.
|
4512
|
+
*/
|
4489
4513
|
Gemini_2_0FlashExperimental = "GEMINI_2_0_FLASH_EXPERIMENTAL",
|
4490
|
-
/**
|
4514
|
+
/**
|
4515
|
+
* Gemini 2.0 Flash Thinking (Experimental)
|
4516
|
+
* @deprecated Use Gemini 2.5 Flash (Preview) instead.
|
4517
|
+
*/
|
4491
4518
|
Gemini_2_0FlashThinkingExperimental = "GEMINI_2_0_FLASH_THINKING_EXPERIMENTAL",
|
4492
4519
|
/**
|
4493
4520
|
* Gemini 2.0 Pro (Experimental)
|
4494
|
-
* @deprecated Use Gemini 2.5 Pro (
|
4521
|
+
* @deprecated Use Gemini 2.5 Pro (Preview) instead.
|
4495
4522
|
*/
|
4496
4523
|
Gemini_2_0ProExperimental = "GEMINI_2_0_PRO_EXPERIMENTAL",
|
4497
4524
|
/** Gemini 2.5 Flash (Preview) */
|
4498
4525
|
Gemini_2_5FlashPreview = "GEMINI_2_5_FLASH_PREVIEW",
|
4499
|
-
/**
|
4526
|
+
/**
|
4527
|
+
* Gemini 2.5 Pro (Experimental)
|
4528
|
+
* @deprecated Use Gemini 2.5 Pro (Preview) instead.
|
4529
|
+
*/
|
4500
4530
|
Gemini_2_5ProExperimental = "GEMINI_2_5_PRO_EXPERIMENTAL",
|
4501
4531
|
/** Gemini 2.5 Pro (Preview) */
|
4502
4532
|
Gemini_2_5ProPreview = "GEMINI_2_5_PRO_PREVIEW"
|
@@ -7658,6 +7688,8 @@ export type Mutation = {
|
|
7658
7688
|
addContentsToCollections?: Maybe<Array<Maybe<Collection>>>;
|
7659
7689
|
/** Ask questions about the Graphlit API or SDKs. Can create code samples for any API call. */
|
7660
7690
|
askGraphlit?: Maybe<AskGraphlit>;
|
7691
|
+
/** Branches an existing conversation. */
|
7692
|
+
branchConversation?: Maybe<Conversation>;
|
7661
7693
|
/** Clears an existing conversation. */
|
7662
7694
|
clearConversation?: Maybe<Conversation>;
|
7663
7695
|
/** Closes an existing collection. */
|
@@ -8074,6 +8106,10 @@ export type MutationAskGraphlitArgs = {
|
|
8074
8106
|
specification?: InputMaybe<EntityReferenceInput>;
|
8075
8107
|
type?: InputMaybe<SdkTypes>;
|
8076
8108
|
};
|
8109
|
+
export type MutationBranchConversationArgs = {
|
8110
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
8111
|
+
id: Scalars['ID']['input'];
|
8112
|
+
};
|
8077
8113
|
export type MutationClearConversationArgs = {
|
8078
8114
|
id: Scalars['ID']['input'];
|
8079
8115
|
};
|
@@ -8569,6 +8605,7 @@ export type MutationFormatConversationArgs = {
|
|
8569
8605
|
includeDetails?: InputMaybe<Scalars['Boolean']['input']>;
|
8570
8606
|
prompt: Scalars['String']['input'];
|
8571
8607
|
specification?: InputMaybe<EntityReferenceInput>;
|
8608
|
+
tools?: InputMaybe<Array<ToolDefinitionInput>>;
|
8572
8609
|
};
|
8573
8610
|
export type MutationIngestBatchArgs = {
|
8574
8611
|
collections?: InputMaybe<Array<EntityReferenceInput>>;
|
@@ -8595,6 +8632,7 @@ export type MutationIngestEventArgs = {
|
|
8595
8632
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
8596
8633
|
description?: InputMaybe<Scalars['String']['input']>;
|
8597
8634
|
eventDate?: InputMaybe<Scalars['DateTime']['input']>;
|
8635
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
8598
8636
|
markdown: Scalars['String']['input'];
|
8599
8637
|
name?: InputMaybe<Scalars['String']['input']>;
|
8600
8638
|
};
|
@@ -8610,6 +8648,7 @@ export type MutationIngestFileArgs = {
|
|
8610
8648
|
export type MutationIngestMemoryArgs = {
|
8611
8649
|
collections?: InputMaybe<Array<EntityReferenceInput>>;
|
8612
8650
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
8651
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
8613
8652
|
name?: InputMaybe<Scalars['String']['input']>;
|
8614
8653
|
text: Scalars['String']['input'];
|
8615
8654
|
textType?: InputMaybe<TextTypes>;
|
@@ -11684,6 +11723,67 @@ export type RedditFeedPropertiesUpdateInput = {
|
|
11684
11723
|
/** The limit of items to be read from feed, defaults to 100. */
|
11685
11724
|
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
11686
11725
|
};
|
11726
|
+
/** Represents the Reducto document preparation properties. */
|
11727
|
+
export type ReductoDocumentPreparationProperties = {
|
11728
|
+
__typename?: 'ReductoDocumentPreparationProperties';
|
11729
|
+
/** Whether to enable Reducto enrichment, optional. */
|
11730
|
+
enableEnrichment?: Maybe<Scalars['Boolean']['output']>;
|
11731
|
+
/** The Reducto enrichment mode, optional. */
|
11732
|
+
enrichmentMode?: Maybe<ReductoEnrichmentModes>;
|
11733
|
+
/** The Reducto extraction mode, optional. */
|
11734
|
+
extractionMode?: Maybe<ReductoExtractionModes>;
|
11735
|
+
/** The Reducto API key, optional. */
|
11736
|
+
key?: Maybe<Scalars['String']['output']>;
|
11737
|
+
/** The Reducto OCR mode, optional. */
|
11738
|
+
ocrMode?: Maybe<ReductoOcrModes>;
|
11739
|
+
/** The Reducto OCR system, optional. */
|
11740
|
+
ocrSystem?: Maybe<ReductoOcrSystems>;
|
11741
|
+
};
|
11742
|
+
/** Represents the Reducto document preparation properties. */
|
11743
|
+
export type ReductoDocumentPreparationPropertiesInput = {
|
11744
|
+
/** Whether to enable Reducto enrichment, optional. */
|
11745
|
+
enableEnrichment?: InputMaybe<Scalars['Boolean']['input']>;
|
11746
|
+
/** The Reducto enrichment mode, optional. */
|
11747
|
+
enrichmentMode?: InputMaybe<ReductoEnrichmentModes>;
|
11748
|
+
/** The Reducto extraction mode, optional. */
|
11749
|
+
extractionMode?: InputMaybe<ReductoExtractionModes>;
|
11750
|
+
/** The Reducto API key, optional. */
|
11751
|
+
key?: InputMaybe<Scalars['String']['input']>;
|
11752
|
+
/** The Reducto OCR mode, optional. */
|
11753
|
+
ocrMode?: InputMaybe<ReductoOcrModes>;
|
11754
|
+
/** The Reducto OCR system, optional. */
|
11755
|
+
ocrSystem?: InputMaybe<ReductoOcrSystems>;
|
11756
|
+
};
|
11757
|
+
export declare enum ReductoEnrichmentModes {
|
11758
|
+
/** Page */
|
11759
|
+
Page = "PAGE",
|
11760
|
+
/** Standard */
|
11761
|
+
Standard = "STANDARD",
|
11762
|
+
/** Table */
|
11763
|
+
Table = "TABLE"
|
11764
|
+
}
|
11765
|
+
export declare enum ReductoExtractionModes {
|
11766
|
+
/** Hybrid */
|
11767
|
+
Hybrid = "HYBRID",
|
11768
|
+
/** Metadata */
|
11769
|
+
Metadata = "METADATA",
|
11770
|
+
/** OCR */
|
11771
|
+
Ocr = "OCR"
|
11772
|
+
}
|
11773
|
+
export declare enum ReductoOcrModes {
|
11774
|
+
/** Agentic */
|
11775
|
+
Agentic = "AGENTIC",
|
11776
|
+
/** Standard */
|
11777
|
+
Standard = "STANDARD"
|
11778
|
+
}
|
11779
|
+
export declare enum ReductoOcrSystems {
|
11780
|
+
/** Combined */
|
11781
|
+
Combined = "COMBINED",
|
11782
|
+
/** Highres */
|
11783
|
+
Highres = "HIGHRES",
|
11784
|
+
/** Multilingual */
|
11785
|
+
Multilingual = "MULTILINGUAL"
|
11786
|
+
}
|
11687
11787
|
/** Represents the regex prompt content classification rule. */
|
11688
11788
|
export type RegexClassificationRule = {
|
11689
11789
|
__typename?: 'RegexClassificationRule';
|
@@ -12767,7 +12867,7 @@ export type SpecificationInput = {
|
|
12767
12867
|
export type SpecificationResults = {
|
12768
12868
|
__typename?: 'SpecificationResults';
|
12769
12869
|
/** The list of specification query results. */
|
12770
|
-
results?: Maybe<Array<
|
12870
|
+
results?: Maybe<Array<Specification>>;
|
12771
12871
|
};
|
12772
12872
|
/** Specification type */
|
12773
12873
|
export declare enum SpecificationTypes {
|
@@ -12781,6 +12881,8 @@ export declare enum SpecificationTypes {
|
|
12781
12881
|
ImageEmbedding = "IMAGE_EMBEDDING",
|
12782
12882
|
/** Document preparation */
|
12783
12883
|
Preparation = "PREPARATION",
|
12884
|
+
/** Content summarization */
|
12885
|
+
Summarization = "SUMMARIZATION",
|
12784
12886
|
/** Text embedding */
|
12785
12887
|
TextEmbedding = "TEXT_EMBEDDING"
|
12786
12888
|
}
|
@@ -12927,6 +13029,8 @@ export declare enum SummarizationTypes {
|
|
12927
13029
|
Chapters = "CHAPTERS",
|
12928
13030
|
/** Custom prompt */
|
12929
13031
|
Custom = "CUSTOM",
|
13032
|
+
/** Geotag (from text) */
|
13033
|
+
Geotag = "GEOTAG",
|
12930
13034
|
/** Headlines */
|
12931
13035
|
Headlines = "HEADLINES",
|
12932
13036
|
/** Keywords */
|
@@ -13383,7 +13487,7 @@ export type UserInput = {
|
|
13383
13487
|
export type UserResults = {
|
13384
13488
|
__typename?: 'UserResults';
|
13385
13489
|
/** The list of user query results. */
|
13386
|
-
results?: Maybe<Array<
|
13490
|
+
results?: Maybe<Array<User>>;
|
13387
13491
|
};
|
13388
13492
|
/** User type */
|
13389
13493
|
export declare enum UserTypes {
|
@@ -13658,7 +13762,7 @@ export type WorkflowInput = {
|
|
13658
13762
|
export type WorkflowResults = {
|
13659
13763
|
__typename?: 'WorkflowResults';
|
13660
13764
|
/** The list of workflow query results. */
|
13661
|
-
results?: Maybe<Array<
|
13765
|
+
results?: Maybe<Array<Workflow>>;
|
13662
13766
|
};
|
13663
13767
|
/** Represents a workflow. */
|
13664
13768
|
export type WorkflowUpdateInput = {
|
@@ -14234,7 +14338,7 @@ export type QueryAlertsQuery = {
|
|
14234
14338
|
__typename?: 'EntityReference';
|
14235
14339
|
id: string;
|
14236
14340
|
} | null;
|
14237
|
-
}
|
14341
|
+
}> | null;
|
14238
14342
|
} | null;
|
14239
14343
|
};
|
14240
14344
|
export type UpdateAlertMutationVariables = Exact<{
|
@@ -14492,7 +14596,7 @@ export type QueryCollectionsQuery = {
|
|
14492
14596
|
id: string;
|
14493
14597
|
name: string;
|
14494
14598
|
} | null> | null;
|
14495
|
-
}
|
14599
|
+
}> | null;
|
14496
14600
|
} | null;
|
14497
14601
|
};
|
14498
14602
|
export type RemoveContentsFromCollectionMutationVariables = Exact<{
|
@@ -14935,6 +15039,10 @@ export type GetContentQuery = {
|
|
14935
15039
|
description?: string | null;
|
14936
15040
|
identifier?: string | null;
|
14937
15041
|
markdown?: string | null;
|
15042
|
+
boundary?: string | null;
|
15043
|
+
epsgCode?: number | null;
|
15044
|
+
path?: string | null;
|
15045
|
+
features?: string | null;
|
14938
15046
|
c4id?: string | null;
|
14939
15047
|
type?: ContentTypes | null;
|
14940
15048
|
fileType?: FileTypes | null;
|
@@ -14974,6 +15082,25 @@ export type GetContentQuery = {
|
|
14974
15082
|
latitude?: number | null;
|
14975
15083
|
longitude?: number | null;
|
14976
15084
|
} | null;
|
15085
|
+
h3?: {
|
15086
|
+
__typename?: 'H3';
|
15087
|
+
h3r0?: string | null;
|
15088
|
+
h3r1?: string | null;
|
15089
|
+
h3r2?: string | null;
|
15090
|
+
h3r3?: string | null;
|
15091
|
+
h3r4?: string | null;
|
15092
|
+
h3r5?: string | null;
|
15093
|
+
h3r6?: string | null;
|
15094
|
+
h3r7?: string | null;
|
15095
|
+
h3r8?: string | null;
|
15096
|
+
h3r9?: string | null;
|
15097
|
+
h3r10?: string | null;
|
15098
|
+
h3r11?: string | null;
|
15099
|
+
h3r12?: string | null;
|
15100
|
+
h3r13?: string | null;
|
15101
|
+
h3r14?: string | null;
|
15102
|
+
h3r15?: string | null;
|
15103
|
+
} | null;
|
14977
15104
|
video?: {
|
14978
15105
|
__typename?: 'VideoMetadata';
|
14979
15106
|
width?: number | null;
|
@@ -15339,6 +15466,7 @@ export type IngestEventMutationVariables = Exact<{
|
|
15339
15466
|
name?: InputMaybe<Scalars['String']['input']>;
|
15340
15467
|
description?: InputMaybe<Scalars['String']['input']>;
|
15341
15468
|
eventDate?: InputMaybe<Scalars['DateTime']['input']>;
|
15469
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
15342
15470
|
collections?: InputMaybe<Array<EntityReferenceInput> | EntityReferenceInput>;
|
15343
15471
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
15344
15472
|
}>;
|
@@ -15397,6 +15525,7 @@ export type IngestMemoryMutationVariables = Exact<{
|
|
15397
15525
|
text: Scalars['String']['input'];
|
15398
15526
|
name?: InputMaybe<Scalars['String']['input']>;
|
15399
15527
|
textType?: InputMaybe<TextTypes>;
|
15528
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
15400
15529
|
collections?: InputMaybe<Array<EntityReferenceInput> | EntityReferenceInput>;
|
15401
15530
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
15402
15531
|
}>;
|
@@ -16577,6 +16706,19 @@ export type AskGraphlitMutation = {
|
|
16577
16706
|
} | null;
|
16578
16707
|
} | null;
|
16579
16708
|
};
|
16709
|
+
export type BranchConversationMutationVariables = Exact<{
|
16710
|
+
id: Scalars['ID']['input'];
|
16711
|
+
}>;
|
16712
|
+
export type BranchConversationMutation = {
|
16713
|
+
__typename?: 'Mutation';
|
16714
|
+
branchConversation?: {
|
16715
|
+
__typename?: 'Conversation';
|
16716
|
+
id: string;
|
16717
|
+
name: string;
|
16718
|
+
state: EntityState;
|
16719
|
+
type?: ConversationTypes | null;
|
16720
|
+
} | null;
|
16721
|
+
};
|
16580
16722
|
export type ClearConversationMutationVariables = Exact<{
|
16581
16723
|
id: Scalars['ID']['input'];
|
16582
16724
|
}>;
|
@@ -17352,6 +17494,7 @@ export type FormatConversationMutationVariables = Exact<{
|
|
17352
17494
|
prompt: Scalars['String']['input'];
|
17353
17495
|
id?: InputMaybe<Scalars['ID']['input']>;
|
17354
17496
|
specification?: InputMaybe<EntityReferenceInput>;
|
17497
|
+
tools?: InputMaybe<Array<ToolDefinitionInput> | ToolDefinitionInput>;
|
17355
17498
|
includeDetails?: InputMaybe<Scalars['Boolean']['input']>;
|
17356
17499
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
17357
17500
|
}>;
|
@@ -19083,7 +19226,7 @@ export type QueryConversationsQuery = {
|
|
19083
19226
|
}> | null;
|
19084
19227
|
}> | null;
|
19085
19228
|
} | null;
|
19086
|
-
}
|
19229
|
+
}> | null;
|
19087
19230
|
} | null;
|
19088
19231
|
};
|
19089
19232
|
export type RetrieveSourcesMutationVariables = Exact<{
|
@@ -20566,7 +20709,7 @@ export type QueryFeedsQuery = {
|
|
20566
20709
|
recurrenceType?: TimedPolicyRecurrenceTypes | null;
|
20567
20710
|
repeatInterval?: any | null;
|
20568
20711
|
} | null;
|
20569
|
-
}
|
20712
|
+
}> | null;
|
20570
20713
|
} | null;
|
20571
20714
|
};
|
20572
20715
|
export type QueryLinearProjectsQueryVariables = Exact<{
|
@@ -23784,7 +23927,7 @@ export type QuerySpecificationsQuery = {
|
|
23784
23927
|
modelName?: string | null;
|
23785
23928
|
chunkTokenLimit?: number | null;
|
23786
23929
|
} | null;
|
23787
|
-
}
|
23930
|
+
}> | null;
|
23788
23931
|
} | null;
|
23789
23932
|
};
|
23790
23933
|
export type SpecificationExistsQueryVariables = Exact<{
|
@@ -24084,7 +24227,7 @@ export type QueryUsersQuery = {
|
|
24084
24227
|
} | null;
|
24085
24228
|
} | null;
|
24086
24229
|
} | null> | null;
|
24087
|
-
}
|
24230
|
+
}> | null;
|
24088
24231
|
} | null;
|
24089
24232
|
};
|
24090
24233
|
export type UpdateUserMutationVariables = Exact<{
|
@@ -24226,6 +24369,15 @@ export type CreateWorkflowMutation = {
|
|
24226
24369
|
id: string;
|
24227
24370
|
} | null;
|
24228
24371
|
} | null;
|
24372
|
+
reducto?: {
|
24373
|
+
__typename?: 'ReductoDocumentPreparationProperties';
|
24374
|
+
ocrMode?: ReductoOcrModes | null;
|
24375
|
+
ocrSystem?: ReductoOcrSystems | null;
|
24376
|
+
extractionMode?: ReductoExtractionModes | null;
|
24377
|
+
enableEnrichment?: boolean | null;
|
24378
|
+
enrichmentMode?: ReductoEnrichmentModes | null;
|
24379
|
+
key?: string | null;
|
24380
|
+
} | null;
|
24229
24381
|
mistral?: {
|
24230
24382
|
__typename?: 'MistralDocumentPreparationProperties';
|
24231
24383
|
key?: string | null;
|
@@ -24529,6 +24681,15 @@ export type GetWorkflowQuery = {
|
|
24529
24681
|
id: string;
|
24530
24682
|
} | null;
|
24531
24683
|
} | null;
|
24684
|
+
reducto?: {
|
24685
|
+
__typename?: 'ReductoDocumentPreparationProperties';
|
24686
|
+
ocrMode?: ReductoOcrModes | null;
|
24687
|
+
ocrSystem?: ReductoOcrSystems | null;
|
24688
|
+
extractionMode?: ReductoExtractionModes | null;
|
24689
|
+
enableEnrichment?: boolean | null;
|
24690
|
+
enrichmentMode?: ReductoEnrichmentModes | null;
|
24691
|
+
key?: string | null;
|
24692
|
+
} | null;
|
24532
24693
|
mistral?: {
|
24533
24694
|
__typename?: 'MistralDocumentPreparationProperties';
|
24534
24695
|
key?: string | null;
|
@@ -24798,6 +24959,15 @@ export type QueryWorkflowsQuery = {
|
|
24798
24959
|
id: string;
|
24799
24960
|
} | null;
|
24800
24961
|
} | null;
|
24962
|
+
reducto?: {
|
24963
|
+
__typename?: 'ReductoDocumentPreparationProperties';
|
24964
|
+
ocrMode?: ReductoOcrModes | null;
|
24965
|
+
ocrSystem?: ReductoOcrSystems | null;
|
24966
|
+
extractionMode?: ReductoExtractionModes | null;
|
24967
|
+
enableEnrichment?: boolean | null;
|
24968
|
+
enrichmentMode?: ReductoEnrichmentModes | null;
|
24969
|
+
key?: string | null;
|
24970
|
+
} | null;
|
24801
24971
|
mistral?: {
|
24802
24972
|
__typename?: 'MistralDocumentPreparationProperties';
|
24803
24973
|
key?: string | null;
|
@@ -24943,7 +25113,7 @@ export type QueryWorkflowsQuery = {
|
|
24943
25113
|
} | null;
|
24944
25114
|
} | null;
|
24945
25115
|
} | null> | null;
|
24946
|
-
}
|
25116
|
+
}> | null;
|
24947
25117
|
} | null;
|
24948
25118
|
};
|
24949
25119
|
export type UpdateWorkflowMutationVariables = Exact<{
|
@@ -25059,6 +25229,15 @@ export type UpdateWorkflowMutation = {
|
|
25059
25229
|
id: string;
|
25060
25230
|
} | null;
|
25061
25231
|
} | null;
|
25232
|
+
reducto?: {
|
25233
|
+
__typename?: 'ReductoDocumentPreparationProperties';
|
25234
|
+
ocrMode?: ReductoOcrModes | null;
|
25235
|
+
ocrSystem?: ReductoOcrSystems | null;
|
25236
|
+
extractionMode?: ReductoExtractionModes | null;
|
25237
|
+
enableEnrichment?: boolean | null;
|
25238
|
+
enrichmentMode?: ReductoEnrichmentModes | null;
|
25239
|
+
key?: string | null;
|
25240
|
+
} | null;
|
25062
25241
|
mistral?: {
|
25063
25242
|
__typename?: 'MistralDocumentPreparationProperties';
|
25064
25243
|
key?: string | null;
|
@@ -25319,6 +25498,15 @@ export type UpsertWorkflowMutation = {
|
|
25319
25498
|
id: string;
|
25320
25499
|
} | null;
|
25321
25500
|
} | null;
|
25501
|
+
reducto?: {
|
25502
|
+
__typename?: 'ReductoDocumentPreparationProperties';
|
25503
|
+
ocrMode?: ReductoOcrModes | null;
|
25504
|
+
ocrSystem?: ReductoOcrSystems | null;
|
25505
|
+
extractionMode?: ReductoExtractionModes | null;
|
25506
|
+
enableEnrichment?: boolean | null;
|
25507
|
+
enrichmentMode?: ReductoEnrichmentModes | null;
|
25508
|
+
key?: string | null;
|
25509
|
+
} | null;
|
25322
25510
|
mistral?: {
|
25323
25511
|
__typename?: 'MistralDocumentPreparationProperties';
|
25324
25512
|
key?: string | null;
|