graphlit-client 1.0.20241110001 → 1.0.20241124001
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.
@@ -6440,7 +6440,9 @@ export declare enum MistralModels {
|
|
6440
6440
|
/** Mixtral 8x7b Instruct */
|
6441
6441
|
Mixtral_8X7BInstruct = "MIXTRAL_8X7B_INSTRUCT",
|
6442
6442
|
/** Pixtral 12b (2024-09 version) */
|
6443
|
-
Pixtral_12B_2409 = "PIXTRAL_12B_2409"
|
6443
|
+
Pixtral_12B_2409 = "PIXTRAL_12B_2409",
|
6444
|
+
/** Pixtral Large */
|
6445
|
+
PixtralLarge = "PIXTRAL_LARGE"
|
6444
6446
|
}
|
6445
6447
|
/** Represents the LLM document preparation properties. */
|
6446
6448
|
export type ModelDocumentPreparationProperties = {
|
@@ -6739,6 +6741,10 @@ export type Mutation = {
|
|
6739
6741
|
deleteWorkflow?: Maybe<Workflow>;
|
6740
6742
|
/** Deletes multiple workflows given their IDs. */
|
6741
6743
|
deleteWorkflows?: Maybe<Array<Maybe<Workflow>>>;
|
6744
|
+
/** Describes Base64-encoded image using LLM via prompt. */
|
6745
|
+
describeEncodedImage?: Maybe<ConversationMessage>;
|
6746
|
+
/** Describes image using LLM via prompt. */
|
6747
|
+
describeImage?: Maybe<ConversationMessage>;
|
6742
6748
|
/** Disables an alert. */
|
6743
6749
|
disableAlert?: Maybe<Alert>;
|
6744
6750
|
/** Disables a feed. */
|
@@ -6772,6 +6778,8 @@ export type Mutation = {
|
|
6772
6778
|
openCollection?: Maybe<Collection>;
|
6773
6779
|
/** Opens an existing conversation. */
|
6774
6780
|
openConversation?: Maybe<Conversation>;
|
6781
|
+
/** Prompts LLM without content retrieval. Accepts optional list of previous conversation messages with User or Assistant roles. */
|
6782
|
+
prompt?: Maybe<PromptCompletion>;
|
6775
6783
|
/** Prompts a conversation. */
|
6776
6784
|
promptConversation?: Maybe<PromptConversation>;
|
6777
6785
|
/** Prompts one or more LLM specifications, 10 maximum. */
|
@@ -6795,6 +6803,12 @@ export type Mutation = {
|
|
6795
6803
|
restartContent?: Maybe<Content>;
|
6796
6804
|
/** Revise content via prompted conversation. */
|
6797
6805
|
reviseContent?: Maybe<ReviseContent>;
|
6806
|
+
/** Revise encoded image via prompted conversation. */
|
6807
|
+
reviseEncodedImage?: Maybe<ReviseContent>;
|
6808
|
+
/** Revise image via prompted conversation. */
|
6809
|
+
reviseImage?: Maybe<ReviseContent>;
|
6810
|
+
/** Revise text via prompted conversation. */
|
6811
|
+
reviseText?: Maybe<ReviseContent>;
|
6798
6812
|
/** Suggest prompts for a conversation. */
|
6799
6813
|
suggestConversation?: Maybe<PromptSuggestion>;
|
6800
6814
|
/** Summarizes contents based on the provided filter criteria. */
|
@@ -7293,6 +7307,19 @@ export type MutationDeleteWorkflowsArgs = {
|
|
7293
7307
|
ids: Array<Scalars['ID']['input']>;
|
7294
7308
|
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
7295
7309
|
};
|
7310
|
+
export type MutationDescribeEncodedImageArgs = {
|
7311
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7312
|
+
data: Scalars['String']['input'];
|
7313
|
+
mimeType: Scalars['String']['input'];
|
7314
|
+
prompt: Scalars['String']['input'];
|
7315
|
+
specification?: InputMaybe<EntityReferenceInput>;
|
7316
|
+
};
|
7317
|
+
export type MutationDescribeImageArgs = {
|
7318
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7319
|
+
prompt: Scalars['String']['input'];
|
7320
|
+
specification?: InputMaybe<EntityReferenceInput>;
|
7321
|
+
uri: Scalars['URL']['input'];
|
7322
|
+
};
|
7296
7323
|
export type MutationDisableAlertArgs = {
|
7297
7324
|
id: Scalars['ID']['input'];
|
7298
7325
|
};
|
@@ -7379,6 +7406,12 @@ export type MutationOpenCollectionArgs = {
|
|
7379
7406
|
export type MutationOpenConversationArgs = {
|
7380
7407
|
id: Scalars['ID']['input'];
|
7381
7408
|
};
|
7409
|
+
export type MutationPromptArgs = {
|
7410
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7411
|
+
messages?: InputMaybe<Array<InputMaybe<ConversationMessageInput>>>;
|
7412
|
+
prompt: Scalars['String']['input'];
|
7413
|
+
specification?: InputMaybe<EntityReferenceInput>;
|
7414
|
+
};
|
7382
7415
|
export type MutationPromptConversationArgs = {
|
7383
7416
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7384
7417
|
id?: InputMaybe<Scalars['ID']['input']>;
|
@@ -7443,6 +7476,28 @@ export type MutationReviseContentArgs = {
|
|
7443
7476
|
prompt: Scalars['String']['input'];
|
7444
7477
|
specification?: InputMaybe<EntityReferenceInput>;
|
7445
7478
|
};
|
7479
|
+
export type MutationReviseEncodedImageArgs = {
|
7480
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7481
|
+
data: Scalars['String']['input'];
|
7482
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
7483
|
+
mimeType: Scalars['String']['input'];
|
7484
|
+
prompt: Scalars['String']['input'];
|
7485
|
+
specification?: InputMaybe<EntityReferenceInput>;
|
7486
|
+
};
|
7487
|
+
export type MutationReviseImageArgs = {
|
7488
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7489
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
7490
|
+
prompt: Scalars['String']['input'];
|
7491
|
+
specification?: InputMaybe<EntityReferenceInput>;
|
7492
|
+
uri: Scalars['URL']['input'];
|
7493
|
+
};
|
7494
|
+
export type MutationReviseTextArgs = {
|
7495
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7496
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
7497
|
+
prompt: Scalars['String']['input'];
|
7498
|
+
specification?: InputMaybe<EntityReferenceInput>;
|
7499
|
+
text: Scalars['String']['input'];
|
7500
|
+
};
|
7446
7501
|
export type MutationSuggestConversationArgs = {
|
7447
7502
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7448
7503
|
count?: InputMaybe<Scalars['Int']['input']>;
|
@@ -7920,6 +7975,8 @@ export declare enum OpenAiModels {
|
|
7920
7975
|
Gpt4O_128K_20240513 = "GPT4O_128K_20240513",
|
7921
7976
|
/** GPT-4o 128k (2024-08-06 version) */
|
7922
7977
|
Gpt4O_128K_20240806 = "GPT4O_128K_20240806",
|
7978
|
+
/** GPT-4o 128k (2024-11-20 version) */
|
7979
|
+
Gpt4O_128K_20241120 = "GPT4O_128K_20241120",
|
7923
7980
|
/** ChatGPT-4o 128k (Latest) */
|
7924
7981
|
Gpt4OChat_128K = "GPT4O_CHAT_128K",
|
7925
7982
|
/** GPT-4o Mini 128k (Latest) */
|
@@ -10438,13 +10495,17 @@ export type SharePointFeedProperties = {
|
|
10438
10495
|
accountName: Scalars['String']['output'];
|
10439
10496
|
/** SharePoint authentication type. */
|
10440
10497
|
authenticationType: SharePointAuthenticationTypes;
|
10498
|
+
/** Microsoft Entra ID client identifier, when using user authentication type. */
|
10499
|
+
clientId?: Maybe<Scalars['String']['output']>;
|
10500
|
+
/** Microsoft Entra ID client secret, when using user authentication type. */
|
10501
|
+
clientSecret?: Maybe<Scalars['String']['output']>;
|
10441
10502
|
/** SharePoint folder identifier. */
|
10442
10503
|
folderId?: Maybe<Scalars['ID']['output']>;
|
10443
10504
|
/** SharePoint library identifier. */
|
10444
10505
|
libraryId: Scalars['ID']['output'];
|
10445
|
-
/**
|
10506
|
+
/** Microsoft Entra ID refresh token, when using user authentication type. */
|
10446
10507
|
refreshToken?: Maybe<Scalars['String']['output']>;
|
10447
|
-
/**
|
10508
|
+
/** Microsoft Entra ID tenant identifier, when using application authentication type. */
|
10448
10509
|
tenantId?: Maybe<Scalars['ID']['output']>;
|
10449
10510
|
};
|
10450
10511
|
/** Represents SharePoint properties. */
|
@@ -10453,13 +10514,17 @@ export type SharePointFeedPropertiesInput = {
|
|
10453
10514
|
accountName: Scalars['String']['input'];
|
10454
10515
|
/** SharePoint authentication type. */
|
10455
10516
|
authenticationType: SharePointAuthenticationTypes;
|
10517
|
+
/** Microsoft Entra ID client identifier, when using user authentication type. */
|
10518
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
10519
|
+
/** Microsoft Entra ID client secret, when using user authentication type. */
|
10520
|
+
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
10456
10521
|
/** SharePoint folder identifier. */
|
10457
10522
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
10458
10523
|
/** SharePoint library identifier. */
|
10459
10524
|
libraryId: Scalars['ID']['input'];
|
10460
|
-
/**
|
10525
|
+
/** Microsoft Entra ID refresh token, when using user authentication type. */
|
10461
10526
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
10462
|
-
/**
|
10527
|
+
/** Microsoft Entra ID tenant identifier, when using application authentication type. */
|
10463
10528
|
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
10464
10529
|
};
|
10465
10530
|
/** Represents SharePoint properties. */
|
@@ -10472,9 +10537,9 @@ export type SharePointFeedPropertiesUpdateInput = {
|
|
10472
10537
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
10473
10538
|
/** SharePoint library identifier. */
|
10474
10539
|
libraryId?: InputMaybe<Scalars['ID']['input']>;
|
10475
|
-
/**
|
10540
|
+
/** Microsoft Entra ID refresh token, when using user authentication type. */
|
10476
10541
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
10477
|
-
/**
|
10542
|
+
/** Microsoft Entra ID tenant identifier, when using application authentication type. */
|
10478
10543
|
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
10479
10544
|
};
|
10480
10545
|
/** Represents a SharePoint folder. */
|
@@ -10497,18 +10562,18 @@ export type SharePointFolderResults = {
|
|
10497
10562
|
export type SharePointFoldersInput = {
|
10498
10563
|
/** SharePoint authentication type. */
|
10499
10564
|
authenticationType: SharePointAuthenticationTypes;
|
10500
|
-
/**
|
10565
|
+
/** Microsoft Entra ID refresh token, when using user authentication type. */
|
10501
10566
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
10502
|
-
/**
|
10567
|
+
/** Microsoft Entra ID tenant identifier, when using application authentication type. */
|
10503
10568
|
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
10504
10569
|
};
|
10505
10570
|
/** Represents SharePoint libraries properties. */
|
10506
10571
|
export type SharePointLibrariesInput = {
|
10507
10572
|
/** SharePoint authentication type. */
|
10508
10573
|
authenticationType: SharePointAuthenticationTypes;
|
10509
|
-
/**
|
10574
|
+
/** Microsoft Entra ID refresh token, when using user authentication type. */
|
10510
10575
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
10511
|
-
/**
|
10576
|
+
/** Microsoft Entra ID tenant identifier, when using application authentication type. */
|
10512
10577
|
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
10513
10578
|
};
|
10514
10579
|
/** Represents a SharePoint library. */
|
@@ -11186,10 +11251,14 @@ export declare enum TextRoles {
|
|
11186
11251
|
CornerHeader = "CORNER_HEADER",
|
11187
11252
|
/** Diagram */
|
11188
11253
|
Diagram = "DIAGRAM",
|
11254
|
+
/** Diagram Caption */
|
11255
|
+
DiagramCaption = "DIAGRAM_CAPTION",
|
11189
11256
|
/** Equation */
|
11190
11257
|
Equation = "EQUATION",
|
11191
11258
|
/** Figure */
|
11192
11259
|
Figure = "FIGURE",
|
11260
|
+
/** Figure Caption */
|
11261
|
+
FigureCaption = "FIGURE_CAPTION",
|
11193
11262
|
/** Footnote */
|
11194
11263
|
Footnote = "FOOTNOTE",
|
11195
11264
|
/** Heading 1 */
|
@@ -11228,6 +11297,8 @@ export declare enum TextRoles {
|
|
11228
11297
|
TableColumnHeader = "TABLE_COLUMN_HEADER",
|
11229
11298
|
/** Table Corner Header */
|
11230
11299
|
TableCornerHeader = "TABLE_CORNER_HEADER",
|
11300
|
+
/** Table Header */
|
11301
|
+
TableHeader = "TABLE_HEADER",
|
11231
11302
|
/** Table Row Header */
|
11232
11303
|
TableRowHeader = "TABLE_ROW_HEADER",
|
11233
11304
|
/** Title */
|
@@ -12350,6 +12421,283 @@ export type DeleteContentsMutation = {
|
|
12350
12421
|
state: EntityState;
|
12351
12422
|
} | null> | null;
|
12352
12423
|
};
|
12424
|
+
export type DescribeEncodedImageMutationVariables = Exact<{
|
12425
|
+
prompt: Scalars['String']['input'];
|
12426
|
+
mimeType: Scalars['String']['input'];
|
12427
|
+
data: Scalars['String']['input'];
|
12428
|
+
specification?: InputMaybe<EntityReferenceInput>;
|
12429
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
12430
|
+
}>;
|
12431
|
+
export type DescribeEncodedImageMutation = {
|
12432
|
+
__typename?: 'Mutation';
|
12433
|
+
describeEncodedImage?: {
|
12434
|
+
__typename?: 'ConversationMessage';
|
12435
|
+
role: ConversationRoleTypes;
|
12436
|
+
author?: string | null;
|
12437
|
+
message?: string | null;
|
12438
|
+
tokens?: number | null;
|
12439
|
+
throughput?: number | null;
|
12440
|
+
completionTime?: any | null;
|
12441
|
+
timestamp?: any | null;
|
12442
|
+
modelService?: ModelServiceTypes | null;
|
12443
|
+
model?: string | null;
|
12444
|
+
citations?: Array<{
|
12445
|
+
__typename?: 'ConversationCitation';
|
12446
|
+
index?: number | null;
|
12447
|
+
text: string;
|
12448
|
+
startTime?: any | null;
|
12449
|
+
endTime?: any | null;
|
12450
|
+
pageNumber?: number | null;
|
12451
|
+
frameNumber?: number | null;
|
12452
|
+
content?: {
|
12453
|
+
__typename?: 'Content';
|
12454
|
+
id: string;
|
12455
|
+
name: string;
|
12456
|
+
state: EntityState;
|
12457
|
+
originalDate?: any | null;
|
12458
|
+
identifier?: string | null;
|
12459
|
+
uri?: any | null;
|
12460
|
+
type?: ContentTypes | null;
|
12461
|
+
fileType?: FileTypes | null;
|
12462
|
+
mimeType?: string | null;
|
12463
|
+
format?: string | null;
|
12464
|
+
formatName?: string | null;
|
12465
|
+
fileExtension?: string | null;
|
12466
|
+
fileName?: string | null;
|
12467
|
+
fileSize?: any | null;
|
12468
|
+
masterUri?: any | null;
|
12469
|
+
imageUri?: any | null;
|
12470
|
+
textUri?: any | null;
|
12471
|
+
audioUri?: any | null;
|
12472
|
+
transcriptUri?: any | null;
|
12473
|
+
summary?: string | null;
|
12474
|
+
customSummary?: string | null;
|
12475
|
+
keywords?: Array<string> | null;
|
12476
|
+
bullets?: Array<string> | null;
|
12477
|
+
headlines?: Array<string> | null;
|
12478
|
+
posts?: Array<string> | null;
|
12479
|
+
chapters?: Array<string> | null;
|
12480
|
+
questions?: Array<string> | null;
|
12481
|
+
video?: {
|
12482
|
+
__typename?: 'VideoMetadata';
|
12483
|
+
width?: number | null;
|
12484
|
+
height?: number | null;
|
12485
|
+
duration?: any | null;
|
12486
|
+
make?: string | null;
|
12487
|
+
model?: string | null;
|
12488
|
+
software?: string | null;
|
12489
|
+
title?: string | null;
|
12490
|
+
description?: string | null;
|
12491
|
+
keywords?: Array<string | null> | null;
|
12492
|
+
author?: string | null;
|
12493
|
+
} | null;
|
12494
|
+
audio?: {
|
12495
|
+
__typename?: 'AudioMetadata';
|
12496
|
+
keywords?: Array<string | null> | null;
|
12497
|
+
author?: string | null;
|
12498
|
+
series?: string | null;
|
12499
|
+
episode?: string | null;
|
12500
|
+
episodeType?: string | null;
|
12501
|
+
season?: string | null;
|
12502
|
+
publisher?: string | null;
|
12503
|
+
copyright?: string | null;
|
12504
|
+
genre?: string | null;
|
12505
|
+
title?: string | null;
|
12506
|
+
description?: string | null;
|
12507
|
+
bitrate?: number | null;
|
12508
|
+
channels?: number | null;
|
12509
|
+
sampleRate?: number | null;
|
12510
|
+
bitsPerSample?: number | null;
|
12511
|
+
duration?: any | null;
|
12512
|
+
} | null;
|
12513
|
+
image?: {
|
12514
|
+
__typename?: 'ImageMetadata';
|
12515
|
+
width?: number | null;
|
12516
|
+
height?: number | null;
|
12517
|
+
resolutionX?: number | null;
|
12518
|
+
resolutionY?: number | null;
|
12519
|
+
bitsPerComponent?: number | null;
|
12520
|
+
components?: number | null;
|
12521
|
+
projectionType?: ImageProjectionTypes | null;
|
12522
|
+
orientation?: OrientationTypes | null;
|
12523
|
+
description?: string | null;
|
12524
|
+
make?: string | null;
|
12525
|
+
model?: string | null;
|
12526
|
+
software?: string | null;
|
12527
|
+
lens?: string | null;
|
12528
|
+
focalLength?: number | null;
|
12529
|
+
exposureTime?: string | null;
|
12530
|
+
fNumber?: string | null;
|
12531
|
+
iso?: string | null;
|
12532
|
+
heading?: number | null;
|
12533
|
+
pitch?: number | null;
|
12534
|
+
} | null;
|
12535
|
+
document?: {
|
12536
|
+
__typename?: 'DocumentMetadata';
|
12537
|
+
title?: string | null;
|
12538
|
+
subject?: string | null;
|
12539
|
+
summary?: string | null;
|
12540
|
+
author?: string | null;
|
12541
|
+
publisher?: string | null;
|
12542
|
+
description?: string | null;
|
12543
|
+
keywords?: Array<string | null> | null;
|
12544
|
+
pageCount?: number | null;
|
12545
|
+
worksheetCount?: number | null;
|
12546
|
+
slideCount?: number | null;
|
12547
|
+
wordCount?: number | null;
|
12548
|
+
lineCount?: number | null;
|
12549
|
+
paragraphCount?: number | null;
|
12550
|
+
isEncrypted?: boolean | null;
|
12551
|
+
hasDigitalSignature?: boolean | null;
|
12552
|
+
} | null;
|
12553
|
+
} | null;
|
12554
|
+
} | null> | null;
|
12555
|
+
toolCalls?: Array<{
|
12556
|
+
__typename?: 'ConversationToolCall';
|
12557
|
+
id: string;
|
12558
|
+
name: string;
|
12559
|
+
arguments: string;
|
12560
|
+
} | null> | null;
|
12561
|
+
} | null;
|
12562
|
+
};
|
12563
|
+
export type DescribeImageMutationVariables = Exact<{
|
12564
|
+
prompt: Scalars['String']['input'];
|
12565
|
+
uri: Scalars['URL']['input'];
|
12566
|
+
specification?: InputMaybe<EntityReferenceInput>;
|
12567
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
12568
|
+
}>;
|
12569
|
+
export type DescribeImageMutation = {
|
12570
|
+
__typename?: 'Mutation';
|
12571
|
+
describeImage?: {
|
12572
|
+
__typename?: 'ConversationMessage';
|
12573
|
+
role: ConversationRoleTypes;
|
12574
|
+
author?: string | null;
|
12575
|
+
message?: string | null;
|
12576
|
+
tokens?: number | null;
|
12577
|
+
throughput?: number | null;
|
12578
|
+
completionTime?: any | null;
|
12579
|
+
timestamp?: any | null;
|
12580
|
+
modelService?: ModelServiceTypes | null;
|
12581
|
+
model?: string | null;
|
12582
|
+
citations?: Array<{
|
12583
|
+
__typename?: 'ConversationCitation';
|
12584
|
+
index?: number | null;
|
12585
|
+
text: string;
|
12586
|
+
startTime?: any | null;
|
12587
|
+
endTime?: any | null;
|
12588
|
+
pageNumber?: number | null;
|
12589
|
+
frameNumber?: number | null;
|
12590
|
+
content?: {
|
12591
|
+
__typename?: 'Content';
|
12592
|
+
id: string;
|
12593
|
+
name: string;
|
12594
|
+
state: EntityState;
|
12595
|
+
originalDate?: any | null;
|
12596
|
+
identifier?: string | null;
|
12597
|
+
uri?: any | null;
|
12598
|
+
type?: ContentTypes | null;
|
12599
|
+
fileType?: FileTypes | null;
|
12600
|
+
mimeType?: string | null;
|
12601
|
+
format?: string | null;
|
12602
|
+
formatName?: string | null;
|
12603
|
+
fileExtension?: string | null;
|
12604
|
+
fileName?: string | null;
|
12605
|
+
fileSize?: any | null;
|
12606
|
+
masterUri?: any | null;
|
12607
|
+
imageUri?: any | null;
|
12608
|
+
textUri?: any | null;
|
12609
|
+
audioUri?: any | null;
|
12610
|
+
transcriptUri?: any | null;
|
12611
|
+
summary?: string | null;
|
12612
|
+
customSummary?: string | null;
|
12613
|
+
keywords?: Array<string> | null;
|
12614
|
+
bullets?: Array<string> | null;
|
12615
|
+
headlines?: Array<string> | null;
|
12616
|
+
posts?: Array<string> | null;
|
12617
|
+
chapters?: Array<string> | null;
|
12618
|
+
questions?: Array<string> | null;
|
12619
|
+
video?: {
|
12620
|
+
__typename?: 'VideoMetadata';
|
12621
|
+
width?: number | null;
|
12622
|
+
height?: number | null;
|
12623
|
+
duration?: any | null;
|
12624
|
+
make?: string | null;
|
12625
|
+
model?: string | null;
|
12626
|
+
software?: string | null;
|
12627
|
+
title?: string | null;
|
12628
|
+
description?: string | null;
|
12629
|
+
keywords?: Array<string | null> | null;
|
12630
|
+
author?: string | null;
|
12631
|
+
} | null;
|
12632
|
+
audio?: {
|
12633
|
+
__typename?: 'AudioMetadata';
|
12634
|
+
keywords?: Array<string | null> | null;
|
12635
|
+
author?: string | null;
|
12636
|
+
series?: string | null;
|
12637
|
+
episode?: string | null;
|
12638
|
+
episodeType?: string | null;
|
12639
|
+
season?: string | null;
|
12640
|
+
publisher?: string | null;
|
12641
|
+
copyright?: string | null;
|
12642
|
+
genre?: string | null;
|
12643
|
+
title?: string | null;
|
12644
|
+
description?: string | null;
|
12645
|
+
bitrate?: number | null;
|
12646
|
+
channels?: number | null;
|
12647
|
+
sampleRate?: number | null;
|
12648
|
+
bitsPerSample?: number | null;
|
12649
|
+
duration?: any | null;
|
12650
|
+
} | null;
|
12651
|
+
image?: {
|
12652
|
+
__typename?: 'ImageMetadata';
|
12653
|
+
width?: number | null;
|
12654
|
+
height?: number | null;
|
12655
|
+
resolutionX?: number | null;
|
12656
|
+
resolutionY?: number | null;
|
12657
|
+
bitsPerComponent?: number | null;
|
12658
|
+
components?: number | null;
|
12659
|
+
projectionType?: ImageProjectionTypes | null;
|
12660
|
+
orientation?: OrientationTypes | null;
|
12661
|
+
description?: string | null;
|
12662
|
+
make?: string | null;
|
12663
|
+
model?: string | null;
|
12664
|
+
software?: string | null;
|
12665
|
+
lens?: string | null;
|
12666
|
+
focalLength?: number | null;
|
12667
|
+
exposureTime?: string | null;
|
12668
|
+
fNumber?: string | null;
|
12669
|
+
iso?: string | null;
|
12670
|
+
heading?: number | null;
|
12671
|
+
pitch?: number | null;
|
12672
|
+
} | null;
|
12673
|
+
document?: {
|
12674
|
+
__typename?: 'DocumentMetadata';
|
12675
|
+
title?: string | null;
|
12676
|
+
subject?: string | null;
|
12677
|
+
summary?: string | null;
|
12678
|
+
author?: string | null;
|
12679
|
+
publisher?: string | null;
|
12680
|
+
description?: string | null;
|
12681
|
+
keywords?: Array<string | null> | null;
|
12682
|
+
pageCount?: number | null;
|
12683
|
+
worksheetCount?: number | null;
|
12684
|
+
slideCount?: number | null;
|
12685
|
+
wordCount?: number | null;
|
12686
|
+
lineCount?: number | null;
|
12687
|
+
paragraphCount?: number | null;
|
12688
|
+
isEncrypted?: boolean | null;
|
12689
|
+
hasDigitalSignature?: boolean | null;
|
12690
|
+
} | null;
|
12691
|
+
} | null;
|
12692
|
+
} | null> | null;
|
12693
|
+
toolCalls?: Array<{
|
12694
|
+
__typename?: 'ConversationToolCall';
|
12695
|
+
id: string;
|
12696
|
+
name: string;
|
12697
|
+
arguments: string;
|
12698
|
+
} | null> | null;
|
12699
|
+
} | null;
|
12700
|
+
};
|
12353
12701
|
export type ExtractContentsMutationVariables = Exact<{
|
12354
12702
|
prompt: Scalars['String']['input'];
|
12355
12703
|
filter?: InputMaybe<ContentFilter>;
|
@@ -14101,6 +14449,152 @@ export type GetConversationQuery = {
|
|
14101
14449
|
} | null;
|
14102
14450
|
} | null;
|
14103
14451
|
};
|
14452
|
+
export type PromptMutationVariables = Exact<{
|
14453
|
+
prompt: Scalars['String']['input'];
|
14454
|
+
specification?: InputMaybe<EntityReferenceInput>;
|
14455
|
+
messages?: InputMaybe<Array<ConversationMessageInput> | ConversationMessageInput>;
|
14456
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
14457
|
+
}>;
|
14458
|
+
export type PromptMutation = {
|
14459
|
+
__typename?: 'Mutation';
|
14460
|
+
prompt?: {
|
14461
|
+
__typename?: 'PromptCompletion';
|
14462
|
+
error?: string | null;
|
14463
|
+
specification?: {
|
14464
|
+
__typename?: 'EntityReference';
|
14465
|
+
id: string;
|
14466
|
+
} | null;
|
14467
|
+
messages?: Array<{
|
14468
|
+
__typename?: 'ConversationMessage';
|
14469
|
+
role: ConversationRoleTypes;
|
14470
|
+
author?: string | null;
|
14471
|
+
message?: string | null;
|
14472
|
+
tokens?: number | null;
|
14473
|
+
throughput?: number | null;
|
14474
|
+
completionTime?: any | null;
|
14475
|
+
timestamp?: any | null;
|
14476
|
+
modelService?: ModelServiceTypes | null;
|
14477
|
+
model?: string | null;
|
14478
|
+
citations?: Array<{
|
14479
|
+
__typename?: 'ConversationCitation';
|
14480
|
+
index?: number | null;
|
14481
|
+
text: string;
|
14482
|
+
startTime?: any | null;
|
14483
|
+
endTime?: any | null;
|
14484
|
+
pageNumber?: number | null;
|
14485
|
+
frameNumber?: number | null;
|
14486
|
+
content?: {
|
14487
|
+
__typename?: 'Content';
|
14488
|
+
id: string;
|
14489
|
+
name: string;
|
14490
|
+
state: EntityState;
|
14491
|
+
originalDate?: any | null;
|
14492
|
+
identifier?: string | null;
|
14493
|
+
uri?: any | null;
|
14494
|
+
type?: ContentTypes | null;
|
14495
|
+
fileType?: FileTypes | null;
|
14496
|
+
mimeType?: string | null;
|
14497
|
+
format?: string | null;
|
14498
|
+
formatName?: string | null;
|
14499
|
+
fileExtension?: string | null;
|
14500
|
+
fileName?: string | null;
|
14501
|
+
fileSize?: any | null;
|
14502
|
+
masterUri?: any | null;
|
14503
|
+
imageUri?: any | null;
|
14504
|
+
textUri?: any | null;
|
14505
|
+
audioUri?: any | null;
|
14506
|
+
transcriptUri?: any | null;
|
14507
|
+
summary?: string | null;
|
14508
|
+
customSummary?: string | null;
|
14509
|
+
keywords?: Array<string> | null;
|
14510
|
+
bullets?: Array<string> | null;
|
14511
|
+
headlines?: Array<string> | null;
|
14512
|
+
posts?: Array<string> | null;
|
14513
|
+
chapters?: Array<string> | null;
|
14514
|
+
questions?: Array<string> | null;
|
14515
|
+
video?: {
|
14516
|
+
__typename?: 'VideoMetadata';
|
14517
|
+
width?: number | null;
|
14518
|
+
height?: number | null;
|
14519
|
+
duration?: any | null;
|
14520
|
+
make?: string | null;
|
14521
|
+
model?: string | null;
|
14522
|
+
software?: string | null;
|
14523
|
+
title?: string | null;
|
14524
|
+
description?: string | null;
|
14525
|
+
keywords?: Array<string | null> | null;
|
14526
|
+
author?: string | null;
|
14527
|
+
} | null;
|
14528
|
+
audio?: {
|
14529
|
+
__typename?: 'AudioMetadata';
|
14530
|
+
keywords?: Array<string | null> | null;
|
14531
|
+
author?: string | null;
|
14532
|
+
series?: string | null;
|
14533
|
+
episode?: string | null;
|
14534
|
+
episodeType?: string | null;
|
14535
|
+
season?: string | null;
|
14536
|
+
publisher?: string | null;
|
14537
|
+
copyright?: string | null;
|
14538
|
+
genre?: string | null;
|
14539
|
+
title?: string | null;
|
14540
|
+
description?: string | null;
|
14541
|
+
bitrate?: number | null;
|
14542
|
+
channels?: number | null;
|
14543
|
+
sampleRate?: number | null;
|
14544
|
+
bitsPerSample?: number | null;
|
14545
|
+
duration?: any | null;
|
14546
|
+
} | null;
|
14547
|
+
image?: {
|
14548
|
+
__typename?: 'ImageMetadata';
|
14549
|
+
width?: number | null;
|
14550
|
+
height?: number | null;
|
14551
|
+
resolutionX?: number | null;
|
14552
|
+
resolutionY?: number | null;
|
14553
|
+
bitsPerComponent?: number | null;
|
14554
|
+
components?: number | null;
|
14555
|
+
projectionType?: ImageProjectionTypes | null;
|
14556
|
+
orientation?: OrientationTypes | null;
|
14557
|
+
description?: string | null;
|
14558
|
+
make?: string | null;
|
14559
|
+
model?: string | null;
|
14560
|
+
software?: string | null;
|
14561
|
+
lens?: string | null;
|
14562
|
+
focalLength?: number | null;
|
14563
|
+
exposureTime?: string | null;
|
14564
|
+
fNumber?: string | null;
|
14565
|
+
iso?: string | null;
|
14566
|
+
heading?: number | null;
|
14567
|
+
pitch?: number | null;
|
14568
|
+
} | null;
|
14569
|
+
document?: {
|
14570
|
+
__typename?: 'DocumentMetadata';
|
14571
|
+
title?: string | null;
|
14572
|
+
subject?: string | null;
|
14573
|
+
summary?: string | null;
|
14574
|
+
author?: string | null;
|
14575
|
+
publisher?: string | null;
|
14576
|
+
description?: string | null;
|
14577
|
+
keywords?: Array<string | null> | null;
|
14578
|
+
pageCount?: number | null;
|
14579
|
+
worksheetCount?: number | null;
|
14580
|
+
slideCount?: number | null;
|
14581
|
+
wordCount?: number | null;
|
14582
|
+
lineCount?: number | null;
|
14583
|
+
paragraphCount?: number | null;
|
14584
|
+
isEncrypted?: boolean | null;
|
14585
|
+
hasDigitalSignature?: boolean | null;
|
14586
|
+
} | null;
|
14587
|
+
} | null;
|
14588
|
+
} | null> | null;
|
14589
|
+
toolCalls?: Array<{
|
14590
|
+
__typename?: 'ConversationToolCall';
|
14591
|
+
id: string;
|
14592
|
+
name: string;
|
14593
|
+
arguments: string;
|
14594
|
+
} | null> | null;
|
14595
|
+
} | null> | null;
|
14596
|
+
} | null;
|
14597
|
+
};
|
14104
14598
|
export type PromptConversationMutationVariables = Exact<{
|
14105
14599
|
prompt: Scalars['String']['input'];
|
14106
14600
|
id?: InputMaybe<Scalars['ID']['input']>;
|
@@ -14795,6 +15289,448 @@ export type ReviseContentMutation = {
|
|
14795
15289
|
} | null;
|
14796
15290
|
} | null;
|
14797
15291
|
};
|
15292
|
+
export type ReviseEncodedImageMutationVariables = Exact<{
|
15293
|
+
prompt: Scalars['String']['input'];
|
15294
|
+
mimeType: Scalars['String']['input'];
|
15295
|
+
data: Scalars['String']['input'];
|
15296
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
15297
|
+
specification?: InputMaybe<EntityReferenceInput>;
|
15298
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
15299
|
+
}>;
|
15300
|
+
export type ReviseEncodedImageMutation = {
|
15301
|
+
__typename?: 'Mutation';
|
15302
|
+
reviseEncodedImage?: {
|
15303
|
+
__typename?: 'ReviseContent';
|
15304
|
+
messageCount?: number | null;
|
15305
|
+
conversation?: {
|
15306
|
+
__typename?: 'EntityReference';
|
15307
|
+
id: string;
|
15308
|
+
} | null;
|
15309
|
+
message?: {
|
15310
|
+
__typename?: 'ConversationMessage';
|
15311
|
+
role: ConversationRoleTypes;
|
15312
|
+
author?: string | null;
|
15313
|
+
message?: string | null;
|
15314
|
+
tokens?: number | null;
|
15315
|
+
throughput?: number | null;
|
15316
|
+
completionTime?: any | null;
|
15317
|
+
timestamp?: any | null;
|
15318
|
+
modelService?: ModelServiceTypes | null;
|
15319
|
+
model?: string | null;
|
15320
|
+
citations?: Array<{
|
15321
|
+
__typename?: 'ConversationCitation';
|
15322
|
+
index?: number | null;
|
15323
|
+
text: string;
|
15324
|
+
startTime?: any | null;
|
15325
|
+
endTime?: any | null;
|
15326
|
+
pageNumber?: number | null;
|
15327
|
+
frameNumber?: number | null;
|
15328
|
+
content?: {
|
15329
|
+
__typename?: 'Content';
|
15330
|
+
id: string;
|
15331
|
+
name: string;
|
15332
|
+
state: EntityState;
|
15333
|
+
originalDate?: any | null;
|
15334
|
+
identifier?: string | null;
|
15335
|
+
uri?: any | null;
|
15336
|
+
type?: ContentTypes | null;
|
15337
|
+
fileType?: FileTypes | null;
|
15338
|
+
mimeType?: string | null;
|
15339
|
+
format?: string | null;
|
15340
|
+
formatName?: string | null;
|
15341
|
+
fileExtension?: string | null;
|
15342
|
+
fileName?: string | null;
|
15343
|
+
fileSize?: any | null;
|
15344
|
+
masterUri?: any | null;
|
15345
|
+
imageUri?: any | null;
|
15346
|
+
textUri?: any | null;
|
15347
|
+
audioUri?: any | null;
|
15348
|
+
transcriptUri?: any | null;
|
15349
|
+
summary?: string | null;
|
15350
|
+
customSummary?: string | null;
|
15351
|
+
keywords?: Array<string> | null;
|
15352
|
+
bullets?: Array<string> | null;
|
15353
|
+
headlines?: Array<string> | null;
|
15354
|
+
posts?: Array<string> | null;
|
15355
|
+
chapters?: Array<string> | null;
|
15356
|
+
questions?: Array<string> | null;
|
15357
|
+
video?: {
|
15358
|
+
__typename?: 'VideoMetadata';
|
15359
|
+
width?: number | null;
|
15360
|
+
height?: number | null;
|
15361
|
+
duration?: any | null;
|
15362
|
+
make?: string | null;
|
15363
|
+
model?: string | null;
|
15364
|
+
software?: string | null;
|
15365
|
+
title?: string | null;
|
15366
|
+
description?: string | null;
|
15367
|
+
keywords?: Array<string | null> | null;
|
15368
|
+
author?: string | null;
|
15369
|
+
} | null;
|
15370
|
+
audio?: {
|
15371
|
+
__typename?: 'AudioMetadata';
|
15372
|
+
keywords?: Array<string | null> | null;
|
15373
|
+
author?: string | null;
|
15374
|
+
series?: string | null;
|
15375
|
+
episode?: string | null;
|
15376
|
+
episodeType?: string | null;
|
15377
|
+
season?: string | null;
|
15378
|
+
publisher?: string | null;
|
15379
|
+
copyright?: string | null;
|
15380
|
+
genre?: string | null;
|
15381
|
+
title?: string | null;
|
15382
|
+
description?: string | null;
|
15383
|
+
bitrate?: number | null;
|
15384
|
+
channels?: number | null;
|
15385
|
+
sampleRate?: number | null;
|
15386
|
+
bitsPerSample?: number | null;
|
15387
|
+
duration?: any | null;
|
15388
|
+
} | null;
|
15389
|
+
image?: {
|
15390
|
+
__typename?: 'ImageMetadata';
|
15391
|
+
width?: number | null;
|
15392
|
+
height?: number | null;
|
15393
|
+
resolutionX?: number | null;
|
15394
|
+
resolutionY?: number | null;
|
15395
|
+
bitsPerComponent?: number | null;
|
15396
|
+
components?: number | null;
|
15397
|
+
projectionType?: ImageProjectionTypes | null;
|
15398
|
+
orientation?: OrientationTypes | null;
|
15399
|
+
description?: string | null;
|
15400
|
+
make?: string | null;
|
15401
|
+
model?: string | null;
|
15402
|
+
software?: string | null;
|
15403
|
+
lens?: string | null;
|
15404
|
+
focalLength?: number | null;
|
15405
|
+
exposureTime?: string | null;
|
15406
|
+
fNumber?: string | null;
|
15407
|
+
iso?: string | null;
|
15408
|
+
heading?: number | null;
|
15409
|
+
pitch?: number | null;
|
15410
|
+
} | null;
|
15411
|
+
document?: {
|
15412
|
+
__typename?: 'DocumentMetadata';
|
15413
|
+
title?: string | null;
|
15414
|
+
subject?: string | null;
|
15415
|
+
summary?: string | null;
|
15416
|
+
author?: string | null;
|
15417
|
+
publisher?: string | null;
|
15418
|
+
description?: string | null;
|
15419
|
+
keywords?: Array<string | null> | null;
|
15420
|
+
pageCount?: number | null;
|
15421
|
+
worksheetCount?: number | null;
|
15422
|
+
slideCount?: number | null;
|
15423
|
+
wordCount?: number | null;
|
15424
|
+
lineCount?: number | null;
|
15425
|
+
paragraphCount?: number | null;
|
15426
|
+
isEncrypted?: boolean | null;
|
15427
|
+
hasDigitalSignature?: boolean | null;
|
15428
|
+
} | null;
|
15429
|
+
} | null;
|
15430
|
+
} | null> | null;
|
15431
|
+
toolCalls?: Array<{
|
15432
|
+
__typename?: 'ConversationToolCall';
|
15433
|
+
id: string;
|
15434
|
+
name: string;
|
15435
|
+
arguments: string;
|
15436
|
+
} | null> | null;
|
15437
|
+
} | null;
|
15438
|
+
} | null;
|
15439
|
+
};
|
15440
|
+
export type ReviseImageMutationVariables = Exact<{
|
15441
|
+
prompt: Scalars['String']['input'];
|
15442
|
+
uri: Scalars['URL']['input'];
|
15443
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
15444
|
+
specification?: InputMaybe<EntityReferenceInput>;
|
15445
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
15446
|
+
}>;
|
15447
|
+
export type ReviseImageMutation = {
|
15448
|
+
__typename?: 'Mutation';
|
15449
|
+
reviseImage?: {
|
15450
|
+
__typename?: 'ReviseContent';
|
15451
|
+
messageCount?: number | null;
|
15452
|
+
conversation?: {
|
15453
|
+
__typename?: 'EntityReference';
|
15454
|
+
id: string;
|
15455
|
+
} | null;
|
15456
|
+
message?: {
|
15457
|
+
__typename?: 'ConversationMessage';
|
15458
|
+
role: ConversationRoleTypes;
|
15459
|
+
author?: string | null;
|
15460
|
+
message?: string | null;
|
15461
|
+
tokens?: number | null;
|
15462
|
+
throughput?: number | null;
|
15463
|
+
completionTime?: any | null;
|
15464
|
+
timestamp?: any | null;
|
15465
|
+
modelService?: ModelServiceTypes | null;
|
15466
|
+
model?: string | null;
|
15467
|
+
citations?: Array<{
|
15468
|
+
__typename?: 'ConversationCitation';
|
15469
|
+
index?: number | null;
|
15470
|
+
text: string;
|
15471
|
+
startTime?: any | null;
|
15472
|
+
endTime?: any | null;
|
15473
|
+
pageNumber?: number | null;
|
15474
|
+
frameNumber?: number | null;
|
15475
|
+
content?: {
|
15476
|
+
__typename?: 'Content';
|
15477
|
+
id: string;
|
15478
|
+
name: string;
|
15479
|
+
state: EntityState;
|
15480
|
+
originalDate?: any | null;
|
15481
|
+
identifier?: string | null;
|
15482
|
+
uri?: any | null;
|
15483
|
+
type?: ContentTypes | null;
|
15484
|
+
fileType?: FileTypes | null;
|
15485
|
+
mimeType?: string | null;
|
15486
|
+
format?: string | null;
|
15487
|
+
formatName?: string | null;
|
15488
|
+
fileExtension?: string | null;
|
15489
|
+
fileName?: string | null;
|
15490
|
+
fileSize?: any | null;
|
15491
|
+
masterUri?: any | null;
|
15492
|
+
imageUri?: any | null;
|
15493
|
+
textUri?: any | null;
|
15494
|
+
audioUri?: any | null;
|
15495
|
+
transcriptUri?: any | null;
|
15496
|
+
summary?: string | null;
|
15497
|
+
customSummary?: string | null;
|
15498
|
+
keywords?: Array<string> | null;
|
15499
|
+
bullets?: Array<string> | null;
|
15500
|
+
headlines?: Array<string> | null;
|
15501
|
+
posts?: Array<string> | null;
|
15502
|
+
chapters?: Array<string> | null;
|
15503
|
+
questions?: Array<string> | null;
|
15504
|
+
video?: {
|
15505
|
+
__typename?: 'VideoMetadata';
|
15506
|
+
width?: number | null;
|
15507
|
+
height?: number | null;
|
15508
|
+
duration?: any | null;
|
15509
|
+
make?: string | null;
|
15510
|
+
model?: string | null;
|
15511
|
+
software?: string | null;
|
15512
|
+
title?: string | null;
|
15513
|
+
description?: string | null;
|
15514
|
+
keywords?: Array<string | null> | null;
|
15515
|
+
author?: string | null;
|
15516
|
+
} | null;
|
15517
|
+
audio?: {
|
15518
|
+
__typename?: 'AudioMetadata';
|
15519
|
+
keywords?: Array<string | null> | null;
|
15520
|
+
author?: string | null;
|
15521
|
+
series?: string | null;
|
15522
|
+
episode?: string | null;
|
15523
|
+
episodeType?: string | null;
|
15524
|
+
season?: string | null;
|
15525
|
+
publisher?: string | null;
|
15526
|
+
copyright?: string | null;
|
15527
|
+
genre?: string | null;
|
15528
|
+
title?: string | null;
|
15529
|
+
description?: string | null;
|
15530
|
+
bitrate?: number | null;
|
15531
|
+
channels?: number | null;
|
15532
|
+
sampleRate?: number | null;
|
15533
|
+
bitsPerSample?: number | null;
|
15534
|
+
duration?: any | null;
|
15535
|
+
} | null;
|
15536
|
+
image?: {
|
15537
|
+
__typename?: 'ImageMetadata';
|
15538
|
+
width?: number | null;
|
15539
|
+
height?: number | null;
|
15540
|
+
resolutionX?: number | null;
|
15541
|
+
resolutionY?: number | null;
|
15542
|
+
bitsPerComponent?: number | null;
|
15543
|
+
components?: number | null;
|
15544
|
+
projectionType?: ImageProjectionTypes | null;
|
15545
|
+
orientation?: OrientationTypes | null;
|
15546
|
+
description?: string | null;
|
15547
|
+
make?: string | null;
|
15548
|
+
model?: string | null;
|
15549
|
+
software?: string | null;
|
15550
|
+
lens?: string | null;
|
15551
|
+
focalLength?: number | null;
|
15552
|
+
exposureTime?: string | null;
|
15553
|
+
fNumber?: string | null;
|
15554
|
+
iso?: string | null;
|
15555
|
+
heading?: number | null;
|
15556
|
+
pitch?: number | null;
|
15557
|
+
} | null;
|
15558
|
+
document?: {
|
15559
|
+
__typename?: 'DocumentMetadata';
|
15560
|
+
title?: string | null;
|
15561
|
+
subject?: string | null;
|
15562
|
+
summary?: string | null;
|
15563
|
+
author?: string | null;
|
15564
|
+
publisher?: string | null;
|
15565
|
+
description?: string | null;
|
15566
|
+
keywords?: Array<string | null> | null;
|
15567
|
+
pageCount?: number | null;
|
15568
|
+
worksheetCount?: number | null;
|
15569
|
+
slideCount?: number | null;
|
15570
|
+
wordCount?: number | null;
|
15571
|
+
lineCount?: number | null;
|
15572
|
+
paragraphCount?: number | null;
|
15573
|
+
isEncrypted?: boolean | null;
|
15574
|
+
hasDigitalSignature?: boolean | null;
|
15575
|
+
} | null;
|
15576
|
+
} | null;
|
15577
|
+
} | null> | null;
|
15578
|
+
toolCalls?: Array<{
|
15579
|
+
__typename?: 'ConversationToolCall';
|
15580
|
+
id: string;
|
15581
|
+
name: string;
|
15582
|
+
arguments: string;
|
15583
|
+
} | null> | null;
|
15584
|
+
} | null;
|
15585
|
+
} | null;
|
15586
|
+
};
|
15587
|
+
export type ReviseTextMutationVariables = Exact<{
|
15588
|
+
prompt: Scalars['String']['input'];
|
15589
|
+
text: Scalars['String']['input'];
|
15590
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
15591
|
+
specification?: InputMaybe<EntityReferenceInput>;
|
15592
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
15593
|
+
}>;
|
15594
|
+
export type ReviseTextMutation = {
|
15595
|
+
__typename?: 'Mutation';
|
15596
|
+
reviseText?: {
|
15597
|
+
__typename?: 'ReviseContent';
|
15598
|
+
messageCount?: number | null;
|
15599
|
+
conversation?: {
|
15600
|
+
__typename?: 'EntityReference';
|
15601
|
+
id: string;
|
15602
|
+
} | null;
|
15603
|
+
message?: {
|
15604
|
+
__typename?: 'ConversationMessage';
|
15605
|
+
role: ConversationRoleTypes;
|
15606
|
+
author?: string | null;
|
15607
|
+
message?: string | null;
|
15608
|
+
tokens?: number | null;
|
15609
|
+
throughput?: number | null;
|
15610
|
+
completionTime?: any | null;
|
15611
|
+
timestamp?: any | null;
|
15612
|
+
modelService?: ModelServiceTypes | null;
|
15613
|
+
model?: string | null;
|
15614
|
+
citations?: Array<{
|
15615
|
+
__typename?: 'ConversationCitation';
|
15616
|
+
index?: number | null;
|
15617
|
+
text: string;
|
15618
|
+
startTime?: any | null;
|
15619
|
+
endTime?: any | null;
|
15620
|
+
pageNumber?: number | null;
|
15621
|
+
frameNumber?: number | null;
|
15622
|
+
content?: {
|
15623
|
+
__typename?: 'Content';
|
15624
|
+
id: string;
|
15625
|
+
name: string;
|
15626
|
+
state: EntityState;
|
15627
|
+
originalDate?: any | null;
|
15628
|
+
identifier?: string | null;
|
15629
|
+
uri?: any | null;
|
15630
|
+
type?: ContentTypes | null;
|
15631
|
+
fileType?: FileTypes | null;
|
15632
|
+
mimeType?: string | null;
|
15633
|
+
format?: string | null;
|
15634
|
+
formatName?: string | null;
|
15635
|
+
fileExtension?: string | null;
|
15636
|
+
fileName?: string | null;
|
15637
|
+
fileSize?: any | null;
|
15638
|
+
masterUri?: any | null;
|
15639
|
+
imageUri?: any | null;
|
15640
|
+
textUri?: any | null;
|
15641
|
+
audioUri?: any | null;
|
15642
|
+
transcriptUri?: any | null;
|
15643
|
+
summary?: string | null;
|
15644
|
+
customSummary?: string | null;
|
15645
|
+
keywords?: Array<string> | null;
|
15646
|
+
bullets?: Array<string> | null;
|
15647
|
+
headlines?: Array<string> | null;
|
15648
|
+
posts?: Array<string> | null;
|
15649
|
+
chapters?: Array<string> | null;
|
15650
|
+
questions?: Array<string> | null;
|
15651
|
+
video?: {
|
15652
|
+
__typename?: 'VideoMetadata';
|
15653
|
+
width?: number | null;
|
15654
|
+
height?: number | null;
|
15655
|
+
duration?: any | null;
|
15656
|
+
make?: string | null;
|
15657
|
+
model?: string | null;
|
15658
|
+
software?: string | null;
|
15659
|
+
title?: string | null;
|
15660
|
+
description?: string | null;
|
15661
|
+
keywords?: Array<string | null> | null;
|
15662
|
+
author?: string | null;
|
15663
|
+
} | null;
|
15664
|
+
audio?: {
|
15665
|
+
__typename?: 'AudioMetadata';
|
15666
|
+
keywords?: Array<string | null> | null;
|
15667
|
+
author?: string | null;
|
15668
|
+
series?: string | null;
|
15669
|
+
episode?: string | null;
|
15670
|
+
episodeType?: string | null;
|
15671
|
+
season?: string | null;
|
15672
|
+
publisher?: string | null;
|
15673
|
+
copyright?: string | null;
|
15674
|
+
genre?: string | null;
|
15675
|
+
title?: string | null;
|
15676
|
+
description?: string | null;
|
15677
|
+
bitrate?: number | null;
|
15678
|
+
channels?: number | null;
|
15679
|
+
sampleRate?: number | null;
|
15680
|
+
bitsPerSample?: number | null;
|
15681
|
+
duration?: any | null;
|
15682
|
+
} | null;
|
15683
|
+
image?: {
|
15684
|
+
__typename?: 'ImageMetadata';
|
15685
|
+
width?: number | null;
|
15686
|
+
height?: number | null;
|
15687
|
+
resolutionX?: number | null;
|
15688
|
+
resolutionY?: number | null;
|
15689
|
+
bitsPerComponent?: number | null;
|
15690
|
+
components?: number | null;
|
15691
|
+
projectionType?: ImageProjectionTypes | null;
|
15692
|
+
orientation?: OrientationTypes | null;
|
15693
|
+
description?: string | null;
|
15694
|
+
make?: string | null;
|
15695
|
+
model?: string | null;
|
15696
|
+
software?: string | null;
|
15697
|
+
lens?: string | null;
|
15698
|
+
focalLength?: number | null;
|
15699
|
+
exposureTime?: string | null;
|
15700
|
+
fNumber?: string | null;
|
15701
|
+
iso?: string | null;
|
15702
|
+
heading?: number | null;
|
15703
|
+
pitch?: number | null;
|
15704
|
+
} | null;
|
15705
|
+
document?: {
|
15706
|
+
__typename?: 'DocumentMetadata';
|
15707
|
+
title?: string | null;
|
15708
|
+
subject?: string | null;
|
15709
|
+
summary?: string | null;
|
15710
|
+
author?: string | null;
|
15711
|
+
publisher?: string | null;
|
15712
|
+
description?: string | null;
|
15713
|
+
keywords?: Array<string | null> | null;
|
15714
|
+
pageCount?: number | null;
|
15715
|
+
worksheetCount?: number | null;
|
15716
|
+
slideCount?: number | null;
|
15717
|
+
wordCount?: number | null;
|
15718
|
+
lineCount?: number | null;
|
15719
|
+
paragraphCount?: number | null;
|
15720
|
+
isEncrypted?: boolean | null;
|
15721
|
+
hasDigitalSignature?: boolean | null;
|
15722
|
+
} | null;
|
15723
|
+
} | null;
|
15724
|
+
} | null> | null;
|
15725
|
+
toolCalls?: Array<{
|
15726
|
+
__typename?: 'ConversationToolCall';
|
15727
|
+
id: string;
|
15728
|
+
name: string;
|
15729
|
+
arguments: string;
|
15730
|
+
} | null> | null;
|
15731
|
+
} | null;
|
15732
|
+
} | null;
|
15733
|
+
};
|
14798
15734
|
export type SuggestConversationMutationVariables = Exact<{
|
14799
15735
|
id: Scalars['ID']['input'];
|
14800
15736
|
count?: InputMaybe<Scalars['Int']['input']>;
|
@@ -15103,6 +16039,8 @@ export type GetFeedQuery = {
|
|
15103
16039
|
libraryId: string;
|
15104
16040
|
folderId?: string | null;
|
15105
16041
|
tenantId?: string | null;
|
16042
|
+
clientId?: string | null;
|
16043
|
+
clientSecret?: string | null;
|
15106
16044
|
refreshToken?: string | null;
|
15107
16045
|
} | null;
|
15108
16046
|
oneDrive?: {
|
@@ -15324,6 +16262,8 @@ export type QueryFeedsQuery = {
|
|
15324
16262
|
libraryId: string;
|
15325
16263
|
folderId?: string | null;
|
15326
16264
|
tenantId?: string | null;
|
16265
|
+
clientId?: string | null;
|
16266
|
+
clientSecret?: string | null;
|
15327
16267
|
refreshToken?: string | null;
|
15328
16268
|
} | null;
|
15329
16269
|
oneDrive?: {
|