graphlit-client 1.0.20241104001 → 1.0.20241116001

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.
@@ -392,9 +392,13 @@ export declare enum AnthropicModels {
392
392
  /** Developer-specified model */
393
393
  Custom = "CUSTOM"
394
394
  }
395
+ /** Defines when a policy shall be executed. */
395
396
  export declare enum ApplyPolicy {
397
+ /** After the resolver was executed. */
396
398
  AfterResolver = "AFTER_RESOLVER",
399
+ /** Before the resolver was executed. */
397
400
  BeforeResolver = "BEFORE_RESOLVER",
401
+ /** The policy is applied in the validation step before the execution. */
398
402
  Validation = "VALIDATION"
399
403
  }
400
404
  /** Represents Atlassian Jira feed properties. */
@@ -1991,23 +1995,31 @@ export type DateRangeInput = {
1991
1995
  /** Represents the Deepgram preparation properties. */
1992
1996
  export type DeepgramAudioPreparationProperties = {
1993
1997
  __typename?: 'DeepgramAudioPreparationProperties';
1998
+ /** Whether to auto-detect the speaker(s) language during Deepgram audio transcription. */
1999
+ detectLanguage?: Maybe<Scalars['Boolean']['output']>;
1994
2000
  /** Whether to enable redaction during Deepgram audio transcription. */
1995
2001
  enableRedaction?: Maybe<Scalars['Boolean']['output']>;
1996
2002
  /** Whether to enable speaker diarization during Deepgram audio transcription. */
1997
2003
  enableSpeakerDiarization?: Maybe<Scalars['Boolean']['output']>;
1998
2004
  /** The Deepgram API key, optional. */
1999
2005
  key?: Maybe<Scalars['String']['output']>;
2006
+ /** Specify the language to transcribe during Deepgram audio transcription. Expected language in BCP 47 format, such as 'en' or 'en-US'. */
2007
+ language?: Maybe<Scalars['String']['output']>;
2000
2008
  /** The Deepgram transcription model. */
2001
2009
  model?: Maybe<DeepgramModels>;
2002
2010
  };
2003
2011
  /** Represents the Deepgram preparation properties. */
2004
2012
  export type DeepgramAudioPreparationPropertiesInput = {
2013
+ /** Whether to auto-detect the speaker(s) language during Deepgram audio transcription. */
2014
+ detectLanguage?: InputMaybe<Scalars['Boolean']['input']>;
2005
2015
  /** Whether to enable redaction during Deepgram audio transcription. */
2006
2016
  enableRedaction?: InputMaybe<Scalars['Boolean']['input']>;
2007
2017
  /** Whether to enable speaker diarization during Deepgram audio transcription. */
2008
2018
  enableSpeakerDiarization?: InputMaybe<Scalars['Boolean']['input']>;
2009
2019
  /** The Deepgram API key, optional. */
2010
2020
  key?: InputMaybe<Scalars['String']['input']>;
2021
+ /** Specify the language to transcribe during Deepgram audio transcription. Expected language in BCP 47 format, such as 'en' or 'en-US'. */
2022
+ language?: InputMaybe<Scalars['String']['input']>;
2011
2023
  /** The Deepgram transcription model. */
2012
2024
  model?: InputMaybe<DeepgramModels>;
2013
2025
  };
@@ -6727,6 +6739,10 @@ export type Mutation = {
6727
6739
  deleteWorkflow?: Maybe<Workflow>;
6728
6740
  /** Deletes multiple workflows given their IDs. */
6729
6741
  deleteWorkflows?: Maybe<Array<Maybe<Workflow>>>;
6742
+ /** Describes Base64-encoded image using LLM via prompt. */
6743
+ describeEncodedImage?: Maybe<ConversationMessage>;
6744
+ /** Describes image using LLM via prompt. */
6745
+ describeImage?: Maybe<ConversationMessage>;
6730
6746
  /** Disables an alert. */
6731
6747
  disableAlert?: Maybe<Alert>;
6732
6748
  /** Disables a feed. */
@@ -6781,6 +6797,10 @@ export type Mutation = {
6781
6797
  restartAllContents?: Maybe<Array<Maybe<Content>>>;
6782
6798
  /** Restarts workflow on content. */
6783
6799
  restartContent?: Maybe<Content>;
6800
+ /** Revise content via prompted conversation. */
6801
+ reviseContent?: Maybe<ReviseContent>;
6802
+ /** Revise text via prompted conversation. */
6803
+ reviseText?: Maybe<ReviseContent>;
6784
6804
  /** Suggest prompts for a conversation. */
6785
6805
  suggestConversation?: Maybe<PromptSuggestion>;
6786
6806
  /** Summarizes contents based on the provided filter criteria. */
@@ -7279,6 +7299,19 @@ export type MutationDeleteWorkflowsArgs = {
7279
7299
  ids: Array<Scalars['ID']['input']>;
7280
7300
  isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
7281
7301
  };
7302
+ export type MutationDescribeEncodedImageArgs = {
7303
+ correlationId?: InputMaybe<Scalars['String']['input']>;
7304
+ data: Scalars['String']['input'];
7305
+ mimeType: Scalars['String']['input'];
7306
+ prompt: Scalars['String']['input'];
7307
+ specification?: InputMaybe<EntityReferenceInput>;
7308
+ };
7309
+ export type MutationDescribeImageArgs = {
7310
+ correlationId?: InputMaybe<Scalars['String']['input']>;
7311
+ prompt: Scalars['String']['input'];
7312
+ specification?: InputMaybe<EntityReferenceInput>;
7313
+ uri: Scalars['URL']['input'];
7314
+ };
7282
7315
  export type MutationDisableAlertArgs = {
7283
7316
  id: Scalars['ID']['input'];
7284
7317
  };
@@ -7369,6 +7402,7 @@ export type MutationPromptConversationArgs = {
7369
7402
  correlationId?: InputMaybe<Scalars['String']['input']>;
7370
7403
  id?: InputMaybe<Scalars['ID']['input']>;
7371
7404
  prompt: Scalars['String']['input'];
7405
+ requireTool?: InputMaybe<Scalars['Boolean']['input']>;
7372
7406
  specification?: InputMaybe<EntityReferenceInput>;
7373
7407
  tools?: InputMaybe<Array<ToolDefinitionInput>>;
7374
7408
  };
@@ -7421,6 +7455,20 @@ export type MutationRestartAllContentsArgs = {
7421
7455
  export type MutationRestartContentArgs = {
7422
7456
  id: Scalars['ID']['input'];
7423
7457
  };
7458
+ export type MutationReviseContentArgs = {
7459
+ content: EntityReferenceInput;
7460
+ correlationId?: InputMaybe<Scalars['String']['input']>;
7461
+ id?: InputMaybe<Scalars['ID']['input']>;
7462
+ prompt: Scalars['String']['input'];
7463
+ specification?: InputMaybe<EntityReferenceInput>;
7464
+ };
7465
+ export type MutationReviseTextArgs = {
7466
+ correlationId?: InputMaybe<Scalars['String']['input']>;
7467
+ id?: InputMaybe<Scalars['ID']['input']>;
7468
+ prompt: Scalars['String']['input'];
7469
+ specification?: InputMaybe<EntityReferenceInput>;
7470
+ text: Scalars['String']['input'];
7471
+ };
7424
7472
  export type MutationSuggestConversationArgs = {
7425
7473
  correlationId?: InputMaybe<Scalars['String']['input']>;
7426
7474
  count?: InputMaybe<Scalars['Int']['input']>;
@@ -9474,6 +9522,8 @@ export type Query = {
9474
9522
  repo?: Maybe<Repo>;
9475
9523
  /** Retrieves code repositories based on the provided filter criteria. */
9476
9524
  repos?: Maybe<RepoResults>;
9525
+ /** Searches the web based on the provided properties. */
9526
+ searchWeb?: Maybe<WebSearchResults>;
9477
9527
  /** Retrieves Microsoft SharePoint consent URI. Visit URI to provide administrator consent for feeds which use the Microsoft Graph API. */
9478
9528
  sharePointConsentUri?: Maybe<UriResult>;
9479
9529
  /** Retrieves available SharePoint document library folders. */
@@ -9862,6 +9912,12 @@ export type QueryReposArgs = {
9862
9912
  facets?: InputMaybe<Array<RepoFacetInput>>;
9863
9913
  filter?: InputMaybe<RepoFilter>;
9864
9914
  };
9915
+ export type QuerySearchWebArgs = {
9916
+ correlationId?: InputMaybe<Scalars['String']['input']>;
9917
+ limit?: InputMaybe<Scalars['Int']['input']>;
9918
+ service?: InputMaybe<SearchServiceTypes>;
9919
+ text: Scalars['String']['input'];
9920
+ };
9865
9921
  export type QuerySharePointConsentUriArgs = {
9866
9922
  tenantId: Scalars['ID']['input'];
9867
9923
  };
@@ -10274,6 +10330,16 @@ export type RetrievalStrategyUpdateInput = {
10274
10330
  /** The retrieval strategy type. */
10275
10331
  type?: InputMaybe<RetrievalStrategyTypes>;
10276
10332
  };
10333
+ /** Represents a prompted content revision. */
10334
+ export type ReviseContent = {
10335
+ __typename?: 'ReviseContent';
10336
+ /** The completed conversation. */
10337
+ conversation?: Maybe<EntityReference>;
10338
+ /** The completed conversation message. */
10339
+ message?: Maybe<ConversationMessage>;
10340
+ /** The conversation message count, after completion. */
10341
+ messageCount?: Maybe<Scalars['Int']['output']>;
10342
+ };
10277
10343
  /** Represents a revision strategy. */
10278
10344
  export type RevisionStrategy = {
10279
10345
  __typename?: 'RevisionStrategy';
@@ -10327,7 +10393,7 @@ export type SearchFeedPropertiesInput = {
10327
10393
  readLimit?: InputMaybe<Scalars['Int']['input']>;
10328
10394
  /** The web search text. */
10329
10395
  text: Scalars['String']['input'];
10330
- /** Search service type, defaults to Tavily. */
10396
+ /** Web search service type, defaults to Tavily. */
10331
10397
  type?: InputMaybe<SearchServiceTypes>;
10332
10398
  };
10333
10399
  /** Represents web search feed properties. */
@@ -11450,6 +11516,24 @@ export type WebFeedPropertiesUpdateInput = {
11450
11516
  /** The web URI. */
11451
11517
  uri?: InputMaybe<Scalars['URL']['input']>;
11452
11518
  };
11519
+ /** Represents web search result. */
11520
+ export type WebSearchResult = {
11521
+ __typename?: 'WebSearchResult';
11522
+ /** The search relevance score. */
11523
+ score?: Maybe<Scalars['Float']['output']>;
11524
+ /** The relevant web page text. */
11525
+ text?: Maybe<Scalars['String']['output']>;
11526
+ /** The web page title. */
11527
+ title?: Maybe<Scalars['String']['output']>;
11528
+ /** The web page URI. */
11529
+ uri: Scalars['URL']['output'];
11530
+ };
11531
+ /** Represents web search results. */
11532
+ export type WebSearchResults = {
11533
+ __typename?: 'WebSearchResults';
11534
+ /** The list of web search results. */
11535
+ results?: Maybe<Array<WebSearchResult>>;
11536
+ };
11453
11537
  /** Represents a workflow. */
11454
11538
  export type Workflow = {
11455
11539
  __typename?: 'Workflow';
@@ -12292,6 +12376,283 @@ export type DeleteContentsMutation = {
12292
12376
  state: EntityState;
12293
12377
  } | null> | null;
12294
12378
  };
12379
+ export type DescribeEncodedImageMutationVariables = Exact<{
12380
+ prompt: Scalars['String']['input'];
12381
+ mimeType: Scalars['String']['input'];
12382
+ data: Scalars['String']['input'];
12383
+ specification?: InputMaybe<EntityReferenceInput>;
12384
+ correlationId?: InputMaybe<Scalars['String']['input']>;
12385
+ }>;
12386
+ export type DescribeEncodedImageMutation = {
12387
+ __typename?: 'Mutation';
12388
+ describeEncodedImage?: {
12389
+ __typename?: 'ConversationMessage';
12390
+ role: ConversationRoleTypes;
12391
+ author?: string | null;
12392
+ message?: string | null;
12393
+ tokens?: number | null;
12394
+ throughput?: number | null;
12395
+ completionTime?: any | null;
12396
+ timestamp?: any | null;
12397
+ modelService?: ModelServiceTypes | null;
12398
+ model?: string | null;
12399
+ citations?: Array<{
12400
+ __typename?: 'ConversationCitation';
12401
+ index?: number | null;
12402
+ text: string;
12403
+ startTime?: any | null;
12404
+ endTime?: any | null;
12405
+ pageNumber?: number | null;
12406
+ frameNumber?: number | null;
12407
+ content?: {
12408
+ __typename?: 'Content';
12409
+ id: string;
12410
+ name: string;
12411
+ state: EntityState;
12412
+ originalDate?: any | null;
12413
+ identifier?: string | null;
12414
+ uri?: any | null;
12415
+ type?: ContentTypes | null;
12416
+ fileType?: FileTypes | null;
12417
+ mimeType?: string | null;
12418
+ format?: string | null;
12419
+ formatName?: string | null;
12420
+ fileExtension?: string | null;
12421
+ fileName?: string | null;
12422
+ fileSize?: any | null;
12423
+ masterUri?: any | null;
12424
+ imageUri?: any | null;
12425
+ textUri?: any | null;
12426
+ audioUri?: any | null;
12427
+ transcriptUri?: any | null;
12428
+ summary?: string | null;
12429
+ customSummary?: string | null;
12430
+ keywords?: Array<string> | null;
12431
+ bullets?: Array<string> | null;
12432
+ headlines?: Array<string> | null;
12433
+ posts?: Array<string> | null;
12434
+ chapters?: Array<string> | null;
12435
+ questions?: Array<string> | null;
12436
+ video?: {
12437
+ __typename?: 'VideoMetadata';
12438
+ width?: number | null;
12439
+ height?: number | null;
12440
+ duration?: any | null;
12441
+ make?: string | null;
12442
+ model?: string | null;
12443
+ software?: string | null;
12444
+ title?: string | null;
12445
+ description?: string | null;
12446
+ keywords?: Array<string | null> | null;
12447
+ author?: string | null;
12448
+ } | null;
12449
+ audio?: {
12450
+ __typename?: 'AudioMetadata';
12451
+ keywords?: Array<string | null> | null;
12452
+ author?: string | null;
12453
+ series?: string | null;
12454
+ episode?: string | null;
12455
+ episodeType?: string | null;
12456
+ season?: string | null;
12457
+ publisher?: string | null;
12458
+ copyright?: string | null;
12459
+ genre?: string | null;
12460
+ title?: string | null;
12461
+ description?: string | null;
12462
+ bitrate?: number | null;
12463
+ channels?: number | null;
12464
+ sampleRate?: number | null;
12465
+ bitsPerSample?: number | null;
12466
+ duration?: any | null;
12467
+ } | null;
12468
+ image?: {
12469
+ __typename?: 'ImageMetadata';
12470
+ width?: number | null;
12471
+ height?: number | null;
12472
+ resolutionX?: number | null;
12473
+ resolutionY?: number | null;
12474
+ bitsPerComponent?: number | null;
12475
+ components?: number | null;
12476
+ projectionType?: ImageProjectionTypes | null;
12477
+ orientation?: OrientationTypes | null;
12478
+ description?: string | null;
12479
+ make?: string | null;
12480
+ model?: string | null;
12481
+ software?: string | null;
12482
+ lens?: string | null;
12483
+ focalLength?: number | null;
12484
+ exposureTime?: string | null;
12485
+ fNumber?: string | null;
12486
+ iso?: string | null;
12487
+ heading?: number | null;
12488
+ pitch?: number | null;
12489
+ } | null;
12490
+ document?: {
12491
+ __typename?: 'DocumentMetadata';
12492
+ title?: string | null;
12493
+ subject?: string | null;
12494
+ summary?: string | null;
12495
+ author?: string | null;
12496
+ publisher?: string | null;
12497
+ description?: string | null;
12498
+ keywords?: Array<string | null> | null;
12499
+ pageCount?: number | null;
12500
+ worksheetCount?: number | null;
12501
+ slideCount?: number | null;
12502
+ wordCount?: number | null;
12503
+ lineCount?: number | null;
12504
+ paragraphCount?: number | null;
12505
+ isEncrypted?: boolean | null;
12506
+ hasDigitalSignature?: boolean | null;
12507
+ } | null;
12508
+ } | null;
12509
+ } | null> | null;
12510
+ toolCalls?: Array<{
12511
+ __typename?: 'ConversationToolCall';
12512
+ id: string;
12513
+ name: string;
12514
+ arguments: string;
12515
+ } | null> | null;
12516
+ } | null;
12517
+ };
12518
+ export type DescribeImageMutationVariables = Exact<{
12519
+ prompt: Scalars['String']['input'];
12520
+ uri: Scalars['URL']['input'];
12521
+ specification?: InputMaybe<EntityReferenceInput>;
12522
+ correlationId?: InputMaybe<Scalars['String']['input']>;
12523
+ }>;
12524
+ export type DescribeImageMutation = {
12525
+ __typename?: 'Mutation';
12526
+ describeImage?: {
12527
+ __typename?: 'ConversationMessage';
12528
+ role: ConversationRoleTypes;
12529
+ author?: string | null;
12530
+ message?: string | null;
12531
+ tokens?: number | null;
12532
+ throughput?: number | null;
12533
+ completionTime?: any | null;
12534
+ timestamp?: any | null;
12535
+ modelService?: ModelServiceTypes | null;
12536
+ model?: string | null;
12537
+ citations?: Array<{
12538
+ __typename?: 'ConversationCitation';
12539
+ index?: number | null;
12540
+ text: string;
12541
+ startTime?: any | null;
12542
+ endTime?: any | null;
12543
+ pageNumber?: number | null;
12544
+ frameNumber?: number | null;
12545
+ content?: {
12546
+ __typename?: 'Content';
12547
+ id: string;
12548
+ name: string;
12549
+ state: EntityState;
12550
+ originalDate?: any | null;
12551
+ identifier?: string | null;
12552
+ uri?: any | null;
12553
+ type?: ContentTypes | null;
12554
+ fileType?: FileTypes | null;
12555
+ mimeType?: string | null;
12556
+ format?: string | null;
12557
+ formatName?: string | null;
12558
+ fileExtension?: string | null;
12559
+ fileName?: string | null;
12560
+ fileSize?: any | null;
12561
+ masterUri?: any | null;
12562
+ imageUri?: any | null;
12563
+ textUri?: any | null;
12564
+ audioUri?: any | null;
12565
+ transcriptUri?: any | null;
12566
+ summary?: string | null;
12567
+ customSummary?: string | null;
12568
+ keywords?: Array<string> | null;
12569
+ bullets?: Array<string> | null;
12570
+ headlines?: Array<string> | null;
12571
+ posts?: Array<string> | null;
12572
+ chapters?: Array<string> | null;
12573
+ questions?: Array<string> | null;
12574
+ video?: {
12575
+ __typename?: 'VideoMetadata';
12576
+ width?: number | null;
12577
+ height?: number | null;
12578
+ duration?: any | null;
12579
+ make?: string | null;
12580
+ model?: string | null;
12581
+ software?: string | null;
12582
+ title?: string | null;
12583
+ description?: string | null;
12584
+ keywords?: Array<string | null> | null;
12585
+ author?: string | null;
12586
+ } | null;
12587
+ audio?: {
12588
+ __typename?: 'AudioMetadata';
12589
+ keywords?: Array<string | null> | null;
12590
+ author?: string | null;
12591
+ series?: string | null;
12592
+ episode?: string | null;
12593
+ episodeType?: string | null;
12594
+ season?: string | null;
12595
+ publisher?: string | null;
12596
+ copyright?: string | null;
12597
+ genre?: string | null;
12598
+ title?: string | null;
12599
+ description?: string | null;
12600
+ bitrate?: number | null;
12601
+ channels?: number | null;
12602
+ sampleRate?: number | null;
12603
+ bitsPerSample?: number | null;
12604
+ duration?: any | null;
12605
+ } | null;
12606
+ image?: {
12607
+ __typename?: 'ImageMetadata';
12608
+ width?: number | null;
12609
+ height?: number | null;
12610
+ resolutionX?: number | null;
12611
+ resolutionY?: number | null;
12612
+ bitsPerComponent?: number | null;
12613
+ components?: number | null;
12614
+ projectionType?: ImageProjectionTypes | null;
12615
+ orientation?: OrientationTypes | null;
12616
+ description?: string | null;
12617
+ make?: string | null;
12618
+ model?: string | null;
12619
+ software?: string | null;
12620
+ lens?: string | null;
12621
+ focalLength?: number | null;
12622
+ exposureTime?: string | null;
12623
+ fNumber?: string | null;
12624
+ iso?: string | null;
12625
+ heading?: number | null;
12626
+ pitch?: number | null;
12627
+ } | null;
12628
+ document?: {
12629
+ __typename?: 'DocumentMetadata';
12630
+ title?: string | null;
12631
+ subject?: string | null;
12632
+ summary?: string | null;
12633
+ author?: string | null;
12634
+ publisher?: string | null;
12635
+ description?: string | null;
12636
+ keywords?: Array<string | null> | null;
12637
+ pageCount?: number | null;
12638
+ worksheetCount?: number | null;
12639
+ slideCount?: number | null;
12640
+ wordCount?: number | null;
12641
+ lineCount?: number | null;
12642
+ paragraphCount?: number | null;
12643
+ isEncrypted?: boolean | null;
12644
+ hasDigitalSignature?: boolean | null;
12645
+ } | null;
12646
+ } | null;
12647
+ } | null> | null;
12648
+ toolCalls?: Array<{
12649
+ __typename?: 'ConversationToolCall';
12650
+ id: string;
12651
+ name: string;
12652
+ arguments: string;
12653
+ } | null> | null;
12654
+ } | null;
12655
+ };
12295
12656
  export type ExtractContentsMutationVariables = Exact<{
12296
12657
  prompt: Scalars['String']['input'];
12297
12658
  filter?: InputMaybe<ContentFilter>;
@@ -14048,6 +14409,7 @@ export type PromptConversationMutationVariables = Exact<{
14048
14409
  id?: InputMaybe<Scalars['ID']['input']>;
14049
14410
  specification?: InputMaybe<EntityReferenceInput>;
14050
14411
  tools?: InputMaybe<Array<ToolDefinitionInput> | ToolDefinitionInput>;
14412
+ requireTool?: InputMaybe<Scalars['Boolean']['input']>;
14051
14413
  correlationId?: InputMaybe<Scalars['String']['input']>;
14052
14414
  }>;
14053
14415
  export type PromptConversationMutation = {
@@ -14589,6 +14951,300 @@ export type QueryConversationsQuery = {
14589
14951
  } | null> | null;
14590
14952
  } | null;
14591
14953
  };
14954
+ export type ReviseContentMutationVariables = Exact<{
14955
+ prompt: Scalars['String']['input'];
14956
+ content: EntityReferenceInput;
14957
+ id?: InputMaybe<Scalars['ID']['input']>;
14958
+ specification?: InputMaybe<EntityReferenceInput>;
14959
+ correlationId?: InputMaybe<Scalars['String']['input']>;
14960
+ }>;
14961
+ export type ReviseContentMutation = {
14962
+ __typename?: 'Mutation';
14963
+ reviseContent?: {
14964
+ __typename?: 'ReviseContent';
14965
+ messageCount?: number | null;
14966
+ conversation?: {
14967
+ __typename?: 'EntityReference';
14968
+ id: string;
14969
+ } | null;
14970
+ message?: {
14971
+ __typename?: 'ConversationMessage';
14972
+ role: ConversationRoleTypes;
14973
+ author?: string | null;
14974
+ message?: string | null;
14975
+ tokens?: number | null;
14976
+ throughput?: number | null;
14977
+ completionTime?: any | null;
14978
+ timestamp?: any | null;
14979
+ modelService?: ModelServiceTypes | null;
14980
+ model?: string | null;
14981
+ citations?: Array<{
14982
+ __typename?: 'ConversationCitation';
14983
+ index?: number | null;
14984
+ text: string;
14985
+ startTime?: any | null;
14986
+ endTime?: any | null;
14987
+ pageNumber?: number | null;
14988
+ frameNumber?: number | null;
14989
+ content?: {
14990
+ __typename?: 'Content';
14991
+ id: string;
14992
+ name: string;
14993
+ state: EntityState;
14994
+ originalDate?: any | null;
14995
+ identifier?: string | null;
14996
+ uri?: any | null;
14997
+ type?: ContentTypes | null;
14998
+ fileType?: FileTypes | null;
14999
+ mimeType?: string | null;
15000
+ format?: string | null;
15001
+ formatName?: string | null;
15002
+ fileExtension?: string | null;
15003
+ fileName?: string | null;
15004
+ fileSize?: any | null;
15005
+ masterUri?: any | null;
15006
+ imageUri?: any | null;
15007
+ textUri?: any | null;
15008
+ audioUri?: any | null;
15009
+ transcriptUri?: any | null;
15010
+ summary?: string | null;
15011
+ customSummary?: string | null;
15012
+ keywords?: Array<string> | null;
15013
+ bullets?: Array<string> | null;
15014
+ headlines?: Array<string> | null;
15015
+ posts?: Array<string> | null;
15016
+ chapters?: Array<string> | null;
15017
+ questions?: Array<string> | null;
15018
+ video?: {
15019
+ __typename?: 'VideoMetadata';
15020
+ width?: number | null;
15021
+ height?: number | null;
15022
+ duration?: any | null;
15023
+ make?: string | null;
15024
+ model?: string | null;
15025
+ software?: string | null;
15026
+ title?: string | null;
15027
+ description?: string | null;
15028
+ keywords?: Array<string | null> | null;
15029
+ author?: string | null;
15030
+ } | null;
15031
+ audio?: {
15032
+ __typename?: 'AudioMetadata';
15033
+ keywords?: Array<string | null> | null;
15034
+ author?: string | null;
15035
+ series?: string | null;
15036
+ episode?: string | null;
15037
+ episodeType?: string | null;
15038
+ season?: string | null;
15039
+ publisher?: string | null;
15040
+ copyright?: string | null;
15041
+ genre?: string | null;
15042
+ title?: string | null;
15043
+ description?: string | null;
15044
+ bitrate?: number | null;
15045
+ channels?: number | null;
15046
+ sampleRate?: number | null;
15047
+ bitsPerSample?: number | null;
15048
+ duration?: any | null;
15049
+ } | null;
15050
+ image?: {
15051
+ __typename?: 'ImageMetadata';
15052
+ width?: number | null;
15053
+ height?: number | null;
15054
+ resolutionX?: number | null;
15055
+ resolutionY?: number | null;
15056
+ bitsPerComponent?: number | null;
15057
+ components?: number | null;
15058
+ projectionType?: ImageProjectionTypes | null;
15059
+ orientation?: OrientationTypes | null;
15060
+ description?: string | null;
15061
+ make?: string | null;
15062
+ model?: string | null;
15063
+ software?: string | null;
15064
+ lens?: string | null;
15065
+ focalLength?: number | null;
15066
+ exposureTime?: string | null;
15067
+ fNumber?: string | null;
15068
+ iso?: string | null;
15069
+ heading?: number | null;
15070
+ pitch?: number | null;
15071
+ } | null;
15072
+ document?: {
15073
+ __typename?: 'DocumentMetadata';
15074
+ title?: string | null;
15075
+ subject?: string | null;
15076
+ summary?: string | null;
15077
+ author?: string | null;
15078
+ publisher?: string | null;
15079
+ description?: string | null;
15080
+ keywords?: Array<string | null> | null;
15081
+ pageCount?: number | null;
15082
+ worksheetCount?: number | null;
15083
+ slideCount?: number | null;
15084
+ wordCount?: number | null;
15085
+ lineCount?: number | null;
15086
+ paragraphCount?: number | null;
15087
+ isEncrypted?: boolean | null;
15088
+ hasDigitalSignature?: boolean | null;
15089
+ } | null;
15090
+ } | null;
15091
+ } | null> | null;
15092
+ toolCalls?: Array<{
15093
+ __typename?: 'ConversationToolCall';
15094
+ id: string;
15095
+ name: string;
15096
+ arguments: string;
15097
+ } | null> | null;
15098
+ } | null;
15099
+ } | null;
15100
+ };
15101
+ export type ReviseTextMutationVariables = Exact<{
15102
+ prompt: Scalars['String']['input'];
15103
+ text: Scalars['String']['input'];
15104
+ id?: InputMaybe<Scalars['ID']['input']>;
15105
+ specification?: InputMaybe<EntityReferenceInput>;
15106
+ correlationId?: InputMaybe<Scalars['String']['input']>;
15107
+ }>;
15108
+ export type ReviseTextMutation = {
15109
+ __typename?: 'Mutation';
15110
+ reviseText?: {
15111
+ __typename?: 'ReviseContent';
15112
+ messageCount?: number | null;
15113
+ conversation?: {
15114
+ __typename?: 'EntityReference';
15115
+ id: string;
15116
+ } | null;
15117
+ message?: {
15118
+ __typename?: 'ConversationMessage';
15119
+ role: ConversationRoleTypes;
15120
+ author?: string | null;
15121
+ message?: string | null;
15122
+ tokens?: number | null;
15123
+ throughput?: number | null;
15124
+ completionTime?: any | null;
15125
+ timestamp?: any | null;
15126
+ modelService?: ModelServiceTypes | null;
15127
+ model?: string | null;
15128
+ citations?: Array<{
15129
+ __typename?: 'ConversationCitation';
15130
+ index?: number | null;
15131
+ text: string;
15132
+ startTime?: any | null;
15133
+ endTime?: any | null;
15134
+ pageNumber?: number | null;
15135
+ frameNumber?: number | null;
15136
+ content?: {
15137
+ __typename?: 'Content';
15138
+ id: string;
15139
+ name: string;
15140
+ state: EntityState;
15141
+ originalDate?: any | null;
15142
+ identifier?: string | null;
15143
+ uri?: any | null;
15144
+ type?: ContentTypes | null;
15145
+ fileType?: FileTypes | null;
15146
+ mimeType?: string | null;
15147
+ format?: string | null;
15148
+ formatName?: string | null;
15149
+ fileExtension?: string | null;
15150
+ fileName?: string | null;
15151
+ fileSize?: any | null;
15152
+ masterUri?: any | null;
15153
+ imageUri?: any | null;
15154
+ textUri?: any | null;
15155
+ audioUri?: any | null;
15156
+ transcriptUri?: any | null;
15157
+ summary?: string | null;
15158
+ customSummary?: string | null;
15159
+ keywords?: Array<string> | null;
15160
+ bullets?: Array<string> | null;
15161
+ headlines?: Array<string> | null;
15162
+ posts?: Array<string> | null;
15163
+ chapters?: Array<string> | null;
15164
+ questions?: Array<string> | null;
15165
+ video?: {
15166
+ __typename?: 'VideoMetadata';
15167
+ width?: number | null;
15168
+ height?: number | null;
15169
+ duration?: any | null;
15170
+ make?: string | null;
15171
+ model?: string | null;
15172
+ software?: string | null;
15173
+ title?: string | null;
15174
+ description?: string | null;
15175
+ keywords?: Array<string | null> | null;
15176
+ author?: string | null;
15177
+ } | null;
15178
+ audio?: {
15179
+ __typename?: 'AudioMetadata';
15180
+ keywords?: Array<string | null> | null;
15181
+ author?: string | null;
15182
+ series?: string | null;
15183
+ episode?: string | null;
15184
+ episodeType?: string | null;
15185
+ season?: string | null;
15186
+ publisher?: string | null;
15187
+ copyright?: string | null;
15188
+ genre?: string | null;
15189
+ title?: string | null;
15190
+ description?: string | null;
15191
+ bitrate?: number | null;
15192
+ channels?: number | null;
15193
+ sampleRate?: number | null;
15194
+ bitsPerSample?: number | null;
15195
+ duration?: any | null;
15196
+ } | null;
15197
+ image?: {
15198
+ __typename?: 'ImageMetadata';
15199
+ width?: number | null;
15200
+ height?: number | null;
15201
+ resolutionX?: number | null;
15202
+ resolutionY?: number | null;
15203
+ bitsPerComponent?: number | null;
15204
+ components?: number | null;
15205
+ projectionType?: ImageProjectionTypes | null;
15206
+ orientation?: OrientationTypes | null;
15207
+ description?: string | null;
15208
+ make?: string | null;
15209
+ model?: string | null;
15210
+ software?: string | null;
15211
+ lens?: string | null;
15212
+ focalLength?: number | null;
15213
+ exposureTime?: string | null;
15214
+ fNumber?: string | null;
15215
+ iso?: string | null;
15216
+ heading?: number | null;
15217
+ pitch?: number | null;
15218
+ } | null;
15219
+ document?: {
15220
+ __typename?: 'DocumentMetadata';
15221
+ title?: string | null;
15222
+ subject?: string | null;
15223
+ summary?: string | null;
15224
+ author?: string | null;
15225
+ publisher?: string | null;
15226
+ description?: string | null;
15227
+ keywords?: Array<string | null> | null;
15228
+ pageCount?: number | null;
15229
+ worksheetCount?: number | null;
15230
+ slideCount?: number | null;
15231
+ wordCount?: number | null;
15232
+ lineCount?: number | null;
15233
+ paragraphCount?: number | null;
15234
+ isEncrypted?: boolean | null;
15235
+ hasDigitalSignature?: boolean | null;
15236
+ } | null;
15237
+ } | null;
15238
+ } | null> | null;
15239
+ toolCalls?: Array<{
15240
+ __typename?: 'ConversationToolCall';
15241
+ id: string;
15242
+ name: string;
15243
+ arguments: string;
15244
+ } | null> | null;
15245
+ } | null;
15246
+ } | null;
15247
+ };
14592
15248
  export type SuggestConversationMutationVariables = Exact<{
14593
15249
  id: Scalars['ID']['input'];
14594
15250
  count?: InputMaybe<Scalars['Int']['input']>;
@@ -17408,6 +18064,24 @@ export type UpdateRepoMutation = {
17408
18064
  name: string;
17409
18065
  } | null;
17410
18066
  };
18067
+ export type SearchWebQueryVariables = Exact<{
18068
+ text: Scalars['String']['input'];
18069
+ service?: InputMaybe<SearchServiceTypes>;
18070
+ limit?: InputMaybe<Scalars['Int']['input']>;
18071
+ }>;
18072
+ export type SearchWebQuery = {
18073
+ __typename?: 'Query';
18074
+ searchWeb?: {
18075
+ __typename?: 'WebSearchResults';
18076
+ results?: Array<{
18077
+ __typename?: 'WebSearchResult';
18078
+ uri: any;
18079
+ text?: string | null;
18080
+ title?: string | null;
18081
+ score?: number | null;
18082
+ }> | null;
18083
+ } | null;
18084
+ };
17411
18085
  export type CountSoftwaresQueryVariables = Exact<{
17412
18086
  filter?: InputMaybe<SoftwareFilter>;
17413
18087
  }>;
@@ -18201,6 +18875,8 @@ export type CreateWorkflowMutation = {
18201
18875
  key?: string | null;
18202
18876
  enableRedaction?: boolean | null;
18203
18877
  enableSpeakerDiarization?: boolean | null;
18878
+ detectLanguage?: boolean | null;
18879
+ language?: string | null;
18204
18880
  } | null;
18205
18881
  document?: {
18206
18882
  __typename?: 'DocumentPreparationProperties';
@@ -18412,6 +19088,8 @@ export type GetWorkflowQuery = {
18412
19088
  key?: string | null;
18413
19089
  enableRedaction?: boolean | null;
18414
19090
  enableSpeakerDiarization?: boolean | null;
19091
+ detectLanguage?: boolean | null;
19092
+ language?: string | null;
18415
19093
  } | null;
18416
19094
  document?: {
18417
19095
  __typename?: 'DocumentPreparationProperties';
@@ -18589,6 +19267,8 @@ export type QueryWorkflowsQuery = {
18589
19267
  key?: string | null;
18590
19268
  enableRedaction?: boolean | null;
18591
19269
  enableSpeakerDiarization?: boolean | null;
19270
+ detectLanguage?: boolean | null;
19271
+ language?: string | null;
18592
19272
  } | null;
18593
19273
  document?: {
18594
19274
  __typename?: 'DocumentPreparationProperties';
@@ -18759,6 +19439,8 @@ export type UpdateWorkflowMutation = {
18759
19439
  key?: string | null;
18760
19440
  enableRedaction?: boolean | null;
18761
19441
  enableSpeakerDiarization?: boolean | null;
19442
+ detectLanguage?: boolean | null;
19443
+ language?: string | null;
18762
19444
  } | null;
18763
19445
  document?: {
18764
19446
  __typename?: 'DocumentPreparationProperties';