graphlit-client 1.0.20241116001 → 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.
package/dist/client.d.ts
CHANGED
@@ -64,8 +64,11 @@ declare class Graphlit {
|
|
64
64
|
closeConversation(id: string): Promise<Types.CloseConversationMutation>;
|
65
65
|
getConversation(id: string): Promise<Types.GetConversationQuery>;
|
66
66
|
queryConversations(filter?: Types.ConversationFilter): Promise<Types.QueryConversationsQuery>;
|
67
|
+
reviseImage(prompt: string, uri: string, id?: string, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.ReviseImageMutation>;
|
68
|
+
reviseEncodedImage(prompt: string, mimeType: string, data: string, id?: string, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.ReviseEncodedImageMutation>;
|
67
69
|
reviseText(prompt: string, text: string, id?: string, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.ReviseTextMutation>;
|
68
70
|
reviseContent(prompt: string, content: Types.EntityReferenceInput, id?: string, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.ReviseContentMutation>;
|
71
|
+
prompt(prompt: string, specification?: Types.EntityReferenceInput, messages?: [Types.ConversationMessageInput], correlationId?: string): Promise<Types.PromptMutation>;
|
69
72
|
promptConversation(prompt: string, id?: string, specification?: Types.EntityReferenceInput, tools?: [Types.ToolDefinitionInput], requireTool?: boolean, correlationId?: string): Promise<Types.PromptConversationMutation>;
|
70
73
|
continueConversation(id: string, responses: [Types.ConversationToolResponseInput], correlationId?: string): Promise<Types.ContinueConversationMutation>;
|
71
74
|
publishConversation(id: string, connector: Types.ContentPublishingConnectorInput, name?: string, workflow?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.PublishConversationMutation>;
|
package/dist/client.js
CHANGED
@@ -378,6 +378,16 @@ class Graphlit {
|
|
378
378
|
return this.queryAndCheckError(Documents.QueryConversations, { filter: filter });
|
379
379
|
});
|
380
380
|
}
|
381
|
+
reviseImage(prompt, uri, id, specification, correlationId) {
|
382
|
+
return __awaiter(this, void 0, void 0, function* () {
|
383
|
+
return this.mutateAndCheckError(Documents.ReviseImage, { prompt: prompt, uri: uri, id: id, specification: specification, correlationId: correlationId });
|
384
|
+
});
|
385
|
+
}
|
386
|
+
reviseEncodedImage(prompt, mimeType, data, id, specification, correlationId) {
|
387
|
+
return __awaiter(this, void 0, void 0, function* () {
|
388
|
+
return this.mutateAndCheckError(Documents.ReviseEncodedImage, { prompt: prompt, mimeType: mimeType, data: data, id: id, specification: specification, correlationId: correlationId });
|
389
|
+
});
|
390
|
+
}
|
381
391
|
reviseText(prompt, text, id, specification, correlationId) {
|
382
392
|
return __awaiter(this, void 0, void 0, function* () {
|
383
393
|
return this.mutateAndCheckError(Documents.ReviseText, { prompt: prompt, text: text, id: id, specification: specification, correlationId: correlationId });
|
@@ -388,6 +398,11 @@ class Graphlit {
|
|
388
398
|
return this.mutateAndCheckError(Documents.ReviseContent, { prompt: prompt, content: content, id: id, specification: specification, correlationId: correlationId });
|
389
399
|
});
|
390
400
|
}
|
401
|
+
prompt(prompt, specification, messages, correlationId) {
|
402
|
+
return __awaiter(this, void 0, void 0, function* () {
|
403
|
+
return this.mutateAndCheckError(Documents.Prompt, { prompt: prompt, specification: specification, messages: messages, correlationId: correlationId });
|
404
|
+
});
|
405
|
+
}
|
391
406
|
promptConversation(prompt, id, specification, tools, requireTool, correlationId) {
|
392
407
|
return __awaiter(this, void 0, void 0, function* () {
|
393
408
|
return this.mutateAndCheckError(Documents.PromptConversation, { prompt: prompt, id: id, specification: specification, tools: tools, requireTool: requireTool, correlationId: correlationId });
|
@@ -56,10 +56,13 @@ export declare const DeleteAllConversations: import("graphql").DocumentNode;
|
|
56
56
|
export declare const DeleteConversation: import("graphql").DocumentNode;
|
57
57
|
export declare const DeleteConversations: import("graphql").DocumentNode;
|
58
58
|
export declare const GetConversation: import("graphql").DocumentNode;
|
59
|
+
export declare const Prompt: import("graphql").DocumentNode;
|
59
60
|
export declare const PromptConversation: import("graphql").DocumentNode;
|
60
61
|
export declare const PublishConversation: import("graphql").DocumentNode;
|
61
62
|
export declare const QueryConversations: import("graphql").DocumentNode;
|
62
63
|
export declare const ReviseContent: import("graphql").DocumentNode;
|
64
|
+
export declare const ReviseEncodedImage: import("graphql").DocumentNode;
|
65
|
+
export declare const ReviseImage: import("graphql").DocumentNode;
|
63
66
|
export declare const ReviseText: import("graphql").DocumentNode;
|
64
67
|
export declare const SuggestConversation: import("graphql").DocumentNode;
|
65
68
|
export declare const UpdateConversation: import("graphql").DocumentNode;
|
@@ -4,11 +4,11 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4
4
|
};
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
6
6
|
exports.ClearConversation = exports.UpdateContent = exports.SummarizeContents = exports.QueryContentsGraph = exports.QueryContentsFacets = exports.QueryContents = exports.PublishText = exports.PublishContents = exports.IsContentDone = exports.IngestUri = exports.IngestTextBatch = exports.IngestText = exports.IngestEncodedFile = exports.IngestBatch = exports.GetContent = exports.ExtractContents = exports.DescribeImage = exports.DescribeEncodedImage = exports.DeleteContents = exports.DeleteContent = exports.DeleteAllContents = exports.CountContents = exports.UpdateCollection = exports.RemoveContentsFromCollection = exports.QueryCollections = exports.GetCollection = exports.DeleteCollections = exports.DeleteCollection = exports.DeleteAllCollections = exports.CreateCollection = exports.CountCollections = exports.AddContentsToCollections = exports.UpdateCategory = exports.QueryCategories = exports.GetCategory = exports.DeleteCategory = exports.DeleteCategories = exports.DeleteAllCategories = exports.CreateCategory = exports.CountCategories = exports.UpdateAlert = exports.QueryAlerts = exports.GetAlert = exports.EnableAlert = exports.DisableAlert = exports.DeleteAllAlerts = exports.DeleteAlerts = exports.DeleteAlert = exports.CreateAlert = exports.CountAlerts = void 0;
|
7
|
-
exports.
|
8
|
-
exports.
|
9
|
-
exports.
|
10
|
-
exports.
|
11
|
-
exports.UpdateWorkflow = exports.QueryWorkflows = exports.GetWorkflow = exports.DeleteWorkflows = exports.DeleteWorkflow = exports.DeleteAllWorkflows = exports.CreateWorkflow = exports.CountWorkflows = exports.UpdateSpecification = exports.QuerySpecifications = exports.PromptSpecifications = void 0;
|
7
|
+
exports.QueryLabels = exports.GetLabel = exports.DeleteLabels = exports.DeleteLabel = exports.DeleteAllLabels = exports.CreateLabel = exports.CountLabels = exports.UpdateFeed = exports.QuerySharePointLibraries = exports.QuerySharePointFolders = exports.QueryOneDriveFolders = exports.QueryMicrosoftTeamsTeams = exports.QueryMicrosoftTeamsChannels = exports.QueryFeeds = exports.IsFeedDone = exports.GetSharePointConsentUri = exports.GetFeed = exports.EnableFeed = exports.DisableFeed = exports.DeleteFeeds = exports.DeleteFeed = exports.DeleteAllFeeds = exports.CreateFeed = exports.CountFeeds = exports.UpdateEvent = exports.QueryEvents = exports.GetEvent = exports.DeleteEvents = exports.DeleteEvent = exports.DeleteAllEvents = exports.CreateEvent = exports.CountEvents = exports.UpdateConversation = exports.SuggestConversation = exports.ReviseText = exports.ReviseImage = exports.ReviseEncodedImage = exports.ReviseContent = exports.QueryConversations = exports.PublishConversation = exports.PromptConversation = exports.Prompt = exports.GetConversation = exports.DeleteConversations = exports.DeleteConversation = exports.DeleteAllConversations = exports.CreateConversation = exports.CountConversations = exports.ContinueConversation = exports.CloseConversation = void 0;
|
8
|
+
exports.CountMedicalIndications = exports.UpdateMedicalGuideline = exports.QueryMedicalGuidelines = exports.GetMedicalGuideline = exports.DeleteMedicalGuidelines = exports.DeleteMedicalGuideline = exports.DeleteAllMedicalGuidelines = exports.CreateMedicalGuideline = exports.CountMedicalGuidelines = exports.UpdateMedicalDrugClass = exports.QueryMedicalDrugClasses = exports.GetMedicalDrugClass = exports.DeleteMedicalDrugClasses = exports.DeleteMedicalDrugClass = exports.DeleteAllMedicalDrugClasses = exports.CreateMedicalDrugClass = exports.CountMedicalDrugClasses = exports.UpdateMedicalDrug = exports.QueryMedicalDrugs = exports.GetMedicalDrug = exports.DeleteMedicalDrugs = exports.DeleteMedicalDrug = exports.DeleteAllMedicalDrugs = exports.CreateMedicalDrug = exports.CountMedicalDrugs = exports.UpdateMedicalDevice = exports.QueryMedicalDevices = exports.GetMedicalDevice = exports.DeleteMedicalDevices = exports.DeleteMedicalDevice = exports.DeleteAllMedicalDevices = exports.CreateMedicalDevice = exports.CountMedicalDevices = exports.UpdateMedicalContraindication = exports.QueryMedicalContraindications = exports.GetMedicalContraindication = exports.DeleteMedicalContraindications = exports.DeleteMedicalContraindication = exports.DeleteAllMedicalContraindications = exports.CreateMedicalContraindication = exports.CountMedicalContraindications = exports.UpdateMedicalCondition = exports.QueryMedicalConditions = exports.GetMedicalCondition = exports.DeleteMedicalConditions = exports.DeleteMedicalCondition = exports.DeleteAllMedicalConditions = exports.CreateMedicalCondition = exports.CountMedicalConditions = exports.UpdateLabel = void 0;
|
9
|
+
exports.UpdateOrganization = exports.QueryOrganizations = exports.GetOrganization = exports.DeleteOrganizations = exports.DeleteOrganization = exports.DeleteAllOrganizations = exports.CreateOrganization = exports.CountOrganizations = exports.UpdateObservation = exports.DeleteObservation = exports.CreateObservation = exports.UpdateMedicalTherapy = exports.QueryMedicalTherapies = exports.GetMedicalTherapy = exports.DeleteMedicalTherapy = exports.DeleteMedicalTherapies = exports.DeleteAllMedicalTherapies = exports.CreateMedicalTherapy = exports.CountMedicalTherapies = exports.UpdateMedicalTest = exports.QueryMedicalTests = exports.GetMedicalTest = exports.DeleteMedicalTests = exports.DeleteMedicalTest = exports.DeleteAllMedicalTests = exports.CreateMedicalTest = exports.CountMedicalTests = exports.UpdateMedicalStudy = exports.QueryMedicalStudies = exports.GetMedicalStudy = exports.DeleteMedicalStudy = exports.DeleteMedicalStudies = exports.DeleteAllMedicalStudies = exports.CreateMedicalStudy = exports.CountMedicalStudies = exports.UpdateMedicalProcedure = exports.QueryMedicalProcedures = exports.GetMedicalProcedure = exports.DeleteMedicalProcedures = exports.DeleteMedicalProcedure = exports.DeleteAllMedicalProcedures = exports.CreateMedicalProcedure = exports.CountMedicalProcedures = exports.UpdateMedicalIndication = exports.QueryMedicalIndications = exports.GetMedicalIndication = exports.DeleteMedicalIndications = exports.DeleteMedicalIndication = exports.DeleteAllMedicalIndications = exports.CreateMedicalIndication = void 0;
|
10
|
+
exports.DeleteAllSpecifications = exports.CreateSpecification = exports.CountSpecifications = exports.UpdateSoftware = exports.QuerySoftwares = exports.GetSoftware = exports.DeleteSoftwares = exports.DeleteSoftware = exports.DeleteAllSoftwares = exports.CreateSoftware = exports.CountSoftwares = exports.SearchWeb = exports.UpdateRepo = exports.QueryRepos = exports.GetRepo = exports.DeleteRepos = exports.DeleteRepo = exports.DeleteAllRepos = exports.CreateRepo = exports.CountRepos = exports.UpdateProject = exports.QueryUsage = exports.QueryCredits = exports.LookupUsage = exports.LookupCredits = exports.GetProject = exports.UpdateProduct = exports.QueryProducts = exports.GetProduct = exports.DeleteProducts = exports.DeleteProduct = exports.DeleteAllProducts = exports.CreateProduct = exports.CountProducts = exports.UpdatePlace = exports.QueryPlaces = exports.GetPlace = exports.DeletePlaces = exports.DeletePlace = exports.DeleteAllPlaces = exports.CreatePlace = exports.CountPlaces = exports.UpdatePerson = exports.QueryPersons = exports.GetPerson = exports.DeletePersons = exports.DeletePerson = exports.DeleteAllPersons = exports.CreatePerson = exports.CountPersons = void 0;
|
11
|
+
exports.UpdateWorkflow = exports.QueryWorkflows = exports.GetWorkflow = exports.DeleteWorkflows = exports.DeleteWorkflow = exports.DeleteAllWorkflows = exports.CreateWorkflow = exports.CountWorkflows = exports.UpdateSpecification = exports.QuerySpecifications = exports.PromptSpecifications = exports.GetSpecification = exports.DeleteSpecifications = exports.DeleteSpecification = void 0;
|
12
12
|
const graphql_tag_1 = __importDefault(require("graphql-tag"));
|
13
13
|
exports.CountAlerts = (0, graphql_tag_1.default) `
|
14
14
|
query CountAlerts($filter: AlertFilter) {
|
@@ -2311,6 +2311,142 @@ exports.GetConversation = (0, graphql_tag_1.default) `
|
|
2311
2311
|
}
|
2312
2312
|
}
|
2313
2313
|
`;
|
2314
|
+
exports.Prompt = (0, graphql_tag_1.default) `
|
2315
|
+
mutation Prompt($prompt: String!, $specification: EntityReferenceInput, $messages: [ConversationMessageInput!], $correlationId: String) {
|
2316
|
+
prompt(
|
2317
|
+
prompt: $prompt
|
2318
|
+
specification: $specification
|
2319
|
+
messages: $messages
|
2320
|
+
correlationId: $correlationId
|
2321
|
+
) {
|
2322
|
+
specification {
|
2323
|
+
id
|
2324
|
+
}
|
2325
|
+
messages {
|
2326
|
+
role
|
2327
|
+
author
|
2328
|
+
message
|
2329
|
+
citations {
|
2330
|
+
content {
|
2331
|
+
id
|
2332
|
+
name
|
2333
|
+
state
|
2334
|
+
originalDate
|
2335
|
+
identifier
|
2336
|
+
uri
|
2337
|
+
type
|
2338
|
+
fileType
|
2339
|
+
mimeType
|
2340
|
+
format
|
2341
|
+
formatName
|
2342
|
+
fileExtension
|
2343
|
+
fileName
|
2344
|
+
fileSize
|
2345
|
+
masterUri
|
2346
|
+
imageUri
|
2347
|
+
textUri
|
2348
|
+
audioUri
|
2349
|
+
transcriptUri
|
2350
|
+
summary
|
2351
|
+
customSummary
|
2352
|
+
keywords
|
2353
|
+
bullets
|
2354
|
+
headlines
|
2355
|
+
posts
|
2356
|
+
chapters
|
2357
|
+
questions
|
2358
|
+
video {
|
2359
|
+
width
|
2360
|
+
height
|
2361
|
+
duration
|
2362
|
+
make
|
2363
|
+
model
|
2364
|
+
software
|
2365
|
+
title
|
2366
|
+
description
|
2367
|
+
keywords
|
2368
|
+
author
|
2369
|
+
}
|
2370
|
+
audio {
|
2371
|
+
keywords
|
2372
|
+
author
|
2373
|
+
series
|
2374
|
+
episode
|
2375
|
+
episodeType
|
2376
|
+
season
|
2377
|
+
publisher
|
2378
|
+
copyright
|
2379
|
+
genre
|
2380
|
+
title
|
2381
|
+
description
|
2382
|
+
bitrate
|
2383
|
+
channels
|
2384
|
+
sampleRate
|
2385
|
+
bitsPerSample
|
2386
|
+
duration
|
2387
|
+
}
|
2388
|
+
image {
|
2389
|
+
width
|
2390
|
+
height
|
2391
|
+
resolutionX
|
2392
|
+
resolutionY
|
2393
|
+
bitsPerComponent
|
2394
|
+
components
|
2395
|
+
projectionType
|
2396
|
+
orientation
|
2397
|
+
description
|
2398
|
+
make
|
2399
|
+
model
|
2400
|
+
software
|
2401
|
+
lens
|
2402
|
+
focalLength
|
2403
|
+
exposureTime
|
2404
|
+
fNumber
|
2405
|
+
iso
|
2406
|
+
heading
|
2407
|
+
pitch
|
2408
|
+
}
|
2409
|
+
document {
|
2410
|
+
title
|
2411
|
+
subject
|
2412
|
+
summary
|
2413
|
+
author
|
2414
|
+
publisher
|
2415
|
+
description
|
2416
|
+
keywords
|
2417
|
+
pageCount
|
2418
|
+
worksheetCount
|
2419
|
+
slideCount
|
2420
|
+
wordCount
|
2421
|
+
lineCount
|
2422
|
+
paragraphCount
|
2423
|
+
isEncrypted
|
2424
|
+
hasDigitalSignature
|
2425
|
+
}
|
2426
|
+
}
|
2427
|
+
index
|
2428
|
+
text
|
2429
|
+
startTime
|
2430
|
+
endTime
|
2431
|
+
pageNumber
|
2432
|
+
frameNumber
|
2433
|
+
}
|
2434
|
+
toolCalls {
|
2435
|
+
id
|
2436
|
+
name
|
2437
|
+
arguments
|
2438
|
+
}
|
2439
|
+
tokens
|
2440
|
+
throughput
|
2441
|
+
completionTime
|
2442
|
+
timestamp
|
2443
|
+
modelService
|
2444
|
+
model
|
2445
|
+
}
|
2446
|
+
error
|
2447
|
+
}
|
2448
|
+
}
|
2449
|
+
`;
|
2314
2450
|
exports.PromptConversation = (0, graphql_tag_1.default) `
|
2315
2451
|
mutation PromptConversation($prompt: String!, $id: ID, $specification: EntityReferenceInput, $tools: [ToolDefinitionInput!], $requireTool: Boolean, $correlationId: String) {
|
2316
2452
|
promptConversation(
|
@@ -2920,6 +3056,281 @@ exports.ReviseContent = (0, graphql_tag_1.default) `
|
|
2920
3056
|
}
|
2921
3057
|
}
|
2922
3058
|
`;
|
3059
|
+
exports.ReviseEncodedImage = (0, graphql_tag_1.default) `
|
3060
|
+
mutation ReviseEncodedImage($prompt: String!, $mimeType: String!, $data: String!, $id: ID, $specification: EntityReferenceInput, $correlationId: String) {
|
3061
|
+
reviseEncodedImage(
|
3062
|
+
prompt: $prompt
|
3063
|
+
mimeType: $mimeType
|
3064
|
+
data: $data
|
3065
|
+
id: $id
|
3066
|
+
specification: $specification
|
3067
|
+
correlationId: $correlationId
|
3068
|
+
) {
|
3069
|
+
conversation {
|
3070
|
+
id
|
3071
|
+
}
|
3072
|
+
message {
|
3073
|
+
role
|
3074
|
+
author
|
3075
|
+
message
|
3076
|
+
citations {
|
3077
|
+
content {
|
3078
|
+
id
|
3079
|
+
name
|
3080
|
+
state
|
3081
|
+
originalDate
|
3082
|
+
identifier
|
3083
|
+
uri
|
3084
|
+
type
|
3085
|
+
fileType
|
3086
|
+
mimeType
|
3087
|
+
format
|
3088
|
+
formatName
|
3089
|
+
fileExtension
|
3090
|
+
fileName
|
3091
|
+
fileSize
|
3092
|
+
masterUri
|
3093
|
+
imageUri
|
3094
|
+
textUri
|
3095
|
+
audioUri
|
3096
|
+
transcriptUri
|
3097
|
+
summary
|
3098
|
+
customSummary
|
3099
|
+
keywords
|
3100
|
+
bullets
|
3101
|
+
headlines
|
3102
|
+
posts
|
3103
|
+
chapters
|
3104
|
+
questions
|
3105
|
+
video {
|
3106
|
+
width
|
3107
|
+
height
|
3108
|
+
duration
|
3109
|
+
make
|
3110
|
+
model
|
3111
|
+
software
|
3112
|
+
title
|
3113
|
+
description
|
3114
|
+
keywords
|
3115
|
+
author
|
3116
|
+
}
|
3117
|
+
audio {
|
3118
|
+
keywords
|
3119
|
+
author
|
3120
|
+
series
|
3121
|
+
episode
|
3122
|
+
episodeType
|
3123
|
+
season
|
3124
|
+
publisher
|
3125
|
+
copyright
|
3126
|
+
genre
|
3127
|
+
title
|
3128
|
+
description
|
3129
|
+
bitrate
|
3130
|
+
channels
|
3131
|
+
sampleRate
|
3132
|
+
bitsPerSample
|
3133
|
+
duration
|
3134
|
+
}
|
3135
|
+
image {
|
3136
|
+
width
|
3137
|
+
height
|
3138
|
+
resolutionX
|
3139
|
+
resolutionY
|
3140
|
+
bitsPerComponent
|
3141
|
+
components
|
3142
|
+
projectionType
|
3143
|
+
orientation
|
3144
|
+
description
|
3145
|
+
make
|
3146
|
+
model
|
3147
|
+
software
|
3148
|
+
lens
|
3149
|
+
focalLength
|
3150
|
+
exposureTime
|
3151
|
+
fNumber
|
3152
|
+
iso
|
3153
|
+
heading
|
3154
|
+
pitch
|
3155
|
+
}
|
3156
|
+
document {
|
3157
|
+
title
|
3158
|
+
subject
|
3159
|
+
summary
|
3160
|
+
author
|
3161
|
+
publisher
|
3162
|
+
description
|
3163
|
+
keywords
|
3164
|
+
pageCount
|
3165
|
+
worksheetCount
|
3166
|
+
slideCount
|
3167
|
+
wordCount
|
3168
|
+
lineCount
|
3169
|
+
paragraphCount
|
3170
|
+
isEncrypted
|
3171
|
+
hasDigitalSignature
|
3172
|
+
}
|
3173
|
+
}
|
3174
|
+
index
|
3175
|
+
text
|
3176
|
+
startTime
|
3177
|
+
endTime
|
3178
|
+
pageNumber
|
3179
|
+
frameNumber
|
3180
|
+
}
|
3181
|
+
toolCalls {
|
3182
|
+
id
|
3183
|
+
name
|
3184
|
+
arguments
|
3185
|
+
}
|
3186
|
+
tokens
|
3187
|
+
throughput
|
3188
|
+
completionTime
|
3189
|
+
timestamp
|
3190
|
+
modelService
|
3191
|
+
model
|
3192
|
+
}
|
3193
|
+
messageCount
|
3194
|
+
}
|
3195
|
+
}
|
3196
|
+
`;
|
3197
|
+
exports.ReviseImage = (0, graphql_tag_1.default) `
|
3198
|
+
mutation ReviseImage($prompt: String!, $uri: URL!, $id: ID, $specification: EntityReferenceInput, $correlationId: String) {
|
3199
|
+
reviseImage(
|
3200
|
+
prompt: $prompt
|
3201
|
+
uri: $uri
|
3202
|
+
id: $id
|
3203
|
+
specification: $specification
|
3204
|
+
correlationId: $correlationId
|
3205
|
+
) {
|
3206
|
+
conversation {
|
3207
|
+
id
|
3208
|
+
}
|
3209
|
+
message {
|
3210
|
+
role
|
3211
|
+
author
|
3212
|
+
message
|
3213
|
+
citations {
|
3214
|
+
content {
|
3215
|
+
id
|
3216
|
+
name
|
3217
|
+
state
|
3218
|
+
originalDate
|
3219
|
+
identifier
|
3220
|
+
uri
|
3221
|
+
type
|
3222
|
+
fileType
|
3223
|
+
mimeType
|
3224
|
+
format
|
3225
|
+
formatName
|
3226
|
+
fileExtension
|
3227
|
+
fileName
|
3228
|
+
fileSize
|
3229
|
+
masterUri
|
3230
|
+
imageUri
|
3231
|
+
textUri
|
3232
|
+
audioUri
|
3233
|
+
transcriptUri
|
3234
|
+
summary
|
3235
|
+
customSummary
|
3236
|
+
keywords
|
3237
|
+
bullets
|
3238
|
+
headlines
|
3239
|
+
posts
|
3240
|
+
chapters
|
3241
|
+
questions
|
3242
|
+
video {
|
3243
|
+
width
|
3244
|
+
height
|
3245
|
+
duration
|
3246
|
+
make
|
3247
|
+
model
|
3248
|
+
software
|
3249
|
+
title
|
3250
|
+
description
|
3251
|
+
keywords
|
3252
|
+
author
|
3253
|
+
}
|
3254
|
+
audio {
|
3255
|
+
keywords
|
3256
|
+
author
|
3257
|
+
series
|
3258
|
+
episode
|
3259
|
+
episodeType
|
3260
|
+
season
|
3261
|
+
publisher
|
3262
|
+
copyright
|
3263
|
+
genre
|
3264
|
+
title
|
3265
|
+
description
|
3266
|
+
bitrate
|
3267
|
+
channels
|
3268
|
+
sampleRate
|
3269
|
+
bitsPerSample
|
3270
|
+
duration
|
3271
|
+
}
|
3272
|
+
image {
|
3273
|
+
width
|
3274
|
+
height
|
3275
|
+
resolutionX
|
3276
|
+
resolutionY
|
3277
|
+
bitsPerComponent
|
3278
|
+
components
|
3279
|
+
projectionType
|
3280
|
+
orientation
|
3281
|
+
description
|
3282
|
+
make
|
3283
|
+
model
|
3284
|
+
software
|
3285
|
+
lens
|
3286
|
+
focalLength
|
3287
|
+
exposureTime
|
3288
|
+
fNumber
|
3289
|
+
iso
|
3290
|
+
heading
|
3291
|
+
pitch
|
3292
|
+
}
|
3293
|
+
document {
|
3294
|
+
title
|
3295
|
+
subject
|
3296
|
+
summary
|
3297
|
+
author
|
3298
|
+
publisher
|
3299
|
+
description
|
3300
|
+
keywords
|
3301
|
+
pageCount
|
3302
|
+
worksheetCount
|
3303
|
+
slideCount
|
3304
|
+
wordCount
|
3305
|
+
lineCount
|
3306
|
+
paragraphCount
|
3307
|
+
isEncrypted
|
3308
|
+
hasDigitalSignature
|
3309
|
+
}
|
3310
|
+
}
|
3311
|
+
index
|
3312
|
+
text
|
3313
|
+
startTime
|
3314
|
+
endTime
|
3315
|
+
pageNumber
|
3316
|
+
frameNumber
|
3317
|
+
}
|
3318
|
+
toolCalls {
|
3319
|
+
id
|
3320
|
+
name
|
3321
|
+
arguments
|
3322
|
+
}
|
3323
|
+
tokens
|
3324
|
+
throughput
|
3325
|
+
completionTime
|
3326
|
+
timestamp
|
3327
|
+
modelService
|
3328
|
+
model
|
3329
|
+
}
|
3330
|
+
messageCount
|
3331
|
+
}
|
3332
|
+
}
|
3333
|
+
`;
|
2923
3334
|
exports.ReviseText = (0, graphql_tag_1.default) `
|
2924
3335
|
mutation ReviseText($prompt: String!, $text: String!, $id: ID, $specification: EntityReferenceInput, $correlationId: String) {
|
2925
3336
|
reviseText(
|
@@ -3298,6 +3709,8 @@ exports.GetFeed = (0, graphql_tag_1.default) `
|
|
3298
3709
|
libraryId
|
3299
3710
|
folderId
|
3300
3711
|
tenantId
|
3712
|
+
clientId
|
3713
|
+
clientSecret
|
3301
3714
|
refreshToken
|
3302
3715
|
}
|
3303
3716
|
oneDrive {
|
@@ -3482,6 +3895,8 @@ exports.QueryFeeds = (0, graphql_tag_1.default) `
|
|
3482
3895
|
libraryId
|
3483
3896
|
folderId
|
3484
3897
|
tenantId
|
3898
|
+
clientId
|
3899
|
+
clientSecret
|
3485
3900
|
refreshToken
|
3486
3901
|
}
|
3487
3902
|
oneDrive {
|
@@ -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 = {
|
@@ -6776,6 +6778,8 @@ export type Mutation = {
|
|
6776
6778
|
openCollection?: Maybe<Collection>;
|
6777
6779
|
/** Opens an existing conversation. */
|
6778
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>;
|
6779
6783
|
/** Prompts a conversation. */
|
6780
6784
|
promptConversation?: Maybe<PromptConversation>;
|
6781
6785
|
/** Prompts one or more LLM specifications, 10 maximum. */
|
@@ -6799,6 +6803,10 @@ export type Mutation = {
|
|
6799
6803
|
restartContent?: Maybe<Content>;
|
6800
6804
|
/** Revise content via prompted conversation. */
|
6801
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>;
|
6802
6810
|
/** Revise text via prompted conversation. */
|
6803
6811
|
reviseText?: Maybe<ReviseContent>;
|
6804
6812
|
/** Suggest prompts for a conversation. */
|
@@ -7398,6 +7406,12 @@ export type MutationOpenCollectionArgs = {
|
|
7398
7406
|
export type MutationOpenConversationArgs = {
|
7399
7407
|
id: Scalars['ID']['input'];
|
7400
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
|
+
};
|
7401
7415
|
export type MutationPromptConversationArgs = {
|
7402
7416
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7403
7417
|
id?: InputMaybe<Scalars['ID']['input']>;
|
@@ -7462,6 +7476,21 @@ export type MutationReviseContentArgs = {
|
|
7462
7476
|
prompt: Scalars['String']['input'];
|
7463
7477
|
specification?: InputMaybe<EntityReferenceInput>;
|
7464
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
|
+
};
|
7465
7494
|
export type MutationReviseTextArgs = {
|
7466
7495
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7467
7496
|
id?: InputMaybe<Scalars['ID']['input']>;
|
@@ -7946,6 +7975,8 @@ export declare enum OpenAiModels {
|
|
7946
7975
|
Gpt4O_128K_20240513 = "GPT4O_128K_20240513",
|
7947
7976
|
/** GPT-4o 128k (2024-08-06 version) */
|
7948
7977
|
Gpt4O_128K_20240806 = "GPT4O_128K_20240806",
|
7978
|
+
/** GPT-4o 128k (2024-11-20 version) */
|
7979
|
+
Gpt4O_128K_20241120 = "GPT4O_128K_20241120",
|
7949
7980
|
/** ChatGPT-4o 128k (Latest) */
|
7950
7981
|
Gpt4OChat_128K = "GPT4O_CHAT_128K",
|
7951
7982
|
/** GPT-4o Mini 128k (Latest) */
|
@@ -10464,13 +10495,17 @@ export type SharePointFeedProperties = {
|
|
10464
10495
|
accountName: Scalars['String']['output'];
|
10465
10496
|
/** SharePoint authentication type. */
|
10466
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']>;
|
10467
10502
|
/** SharePoint folder identifier. */
|
10468
10503
|
folderId?: Maybe<Scalars['ID']['output']>;
|
10469
10504
|
/** SharePoint library identifier. */
|
10470
10505
|
libraryId: Scalars['ID']['output'];
|
10471
|
-
/**
|
10506
|
+
/** Microsoft Entra ID refresh token, when using user authentication type. */
|
10472
10507
|
refreshToken?: Maybe<Scalars['String']['output']>;
|
10473
|
-
/**
|
10508
|
+
/** Microsoft Entra ID tenant identifier, when using application authentication type. */
|
10474
10509
|
tenantId?: Maybe<Scalars['ID']['output']>;
|
10475
10510
|
};
|
10476
10511
|
/** Represents SharePoint properties. */
|
@@ -10479,13 +10514,17 @@ export type SharePointFeedPropertiesInput = {
|
|
10479
10514
|
accountName: Scalars['String']['input'];
|
10480
10515
|
/** SharePoint authentication type. */
|
10481
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']>;
|
10482
10521
|
/** SharePoint folder identifier. */
|
10483
10522
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
10484
10523
|
/** SharePoint library identifier. */
|
10485
10524
|
libraryId: Scalars['ID']['input'];
|
10486
|
-
/**
|
10525
|
+
/** Microsoft Entra ID refresh token, when using user authentication type. */
|
10487
10526
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
10488
|
-
/**
|
10527
|
+
/** Microsoft Entra ID tenant identifier, when using application authentication type. */
|
10489
10528
|
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
10490
10529
|
};
|
10491
10530
|
/** Represents SharePoint properties. */
|
@@ -10498,9 +10537,9 @@ export type SharePointFeedPropertiesUpdateInput = {
|
|
10498
10537
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
10499
10538
|
/** SharePoint library identifier. */
|
10500
10539
|
libraryId?: InputMaybe<Scalars['ID']['input']>;
|
10501
|
-
/**
|
10540
|
+
/** Microsoft Entra ID refresh token, when using user authentication type. */
|
10502
10541
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
10503
|
-
/**
|
10542
|
+
/** Microsoft Entra ID tenant identifier, when using application authentication type. */
|
10504
10543
|
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
10505
10544
|
};
|
10506
10545
|
/** Represents a SharePoint folder. */
|
@@ -10523,18 +10562,18 @@ export type SharePointFolderResults = {
|
|
10523
10562
|
export type SharePointFoldersInput = {
|
10524
10563
|
/** SharePoint authentication type. */
|
10525
10564
|
authenticationType: SharePointAuthenticationTypes;
|
10526
|
-
/**
|
10565
|
+
/** Microsoft Entra ID refresh token, when using user authentication type. */
|
10527
10566
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
10528
|
-
/**
|
10567
|
+
/** Microsoft Entra ID tenant identifier, when using application authentication type. */
|
10529
10568
|
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
10530
10569
|
};
|
10531
10570
|
/** Represents SharePoint libraries properties. */
|
10532
10571
|
export type SharePointLibrariesInput = {
|
10533
10572
|
/** SharePoint authentication type. */
|
10534
10573
|
authenticationType: SharePointAuthenticationTypes;
|
10535
|
-
/**
|
10574
|
+
/** Microsoft Entra ID refresh token, when using user authentication type. */
|
10536
10575
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
10537
|
-
/**
|
10576
|
+
/** Microsoft Entra ID tenant identifier, when using application authentication type. */
|
10538
10577
|
tenantId?: InputMaybe<Scalars['ID']['input']>;
|
10539
10578
|
};
|
10540
10579
|
/** Represents a SharePoint library. */
|
@@ -11212,10 +11251,14 @@ export declare enum TextRoles {
|
|
11212
11251
|
CornerHeader = "CORNER_HEADER",
|
11213
11252
|
/** Diagram */
|
11214
11253
|
Diagram = "DIAGRAM",
|
11254
|
+
/** Diagram Caption */
|
11255
|
+
DiagramCaption = "DIAGRAM_CAPTION",
|
11215
11256
|
/** Equation */
|
11216
11257
|
Equation = "EQUATION",
|
11217
11258
|
/** Figure */
|
11218
11259
|
Figure = "FIGURE",
|
11260
|
+
/** Figure Caption */
|
11261
|
+
FigureCaption = "FIGURE_CAPTION",
|
11219
11262
|
/** Footnote */
|
11220
11263
|
Footnote = "FOOTNOTE",
|
11221
11264
|
/** Heading 1 */
|
@@ -11254,6 +11297,8 @@ export declare enum TextRoles {
|
|
11254
11297
|
TableColumnHeader = "TABLE_COLUMN_HEADER",
|
11255
11298
|
/** Table Corner Header */
|
11256
11299
|
TableCornerHeader = "TABLE_CORNER_HEADER",
|
11300
|
+
/** Table Header */
|
11301
|
+
TableHeader = "TABLE_HEADER",
|
11257
11302
|
/** Table Row Header */
|
11258
11303
|
TableRowHeader = "TABLE_ROW_HEADER",
|
11259
11304
|
/** Title */
|
@@ -14404,6 +14449,152 @@ export type GetConversationQuery = {
|
|
14404
14449
|
} | null;
|
14405
14450
|
} | null;
|
14406
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
|
+
};
|
14407
14598
|
export type PromptConversationMutationVariables = Exact<{
|
14408
14599
|
prompt: Scalars['String']['input'];
|
14409
14600
|
id?: InputMaybe<Scalars['ID']['input']>;
|
@@ -15098,6 +15289,301 @@ export type ReviseContentMutation = {
|
|
15098
15289
|
} | null;
|
15099
15290
|
} | null;
|
15100
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
|
+
};
|
15101
15587
|
export type ReviseTextMutationVariables = Exact<{
|
15102
15588
|
prompt: Scalars['String']['input'];
|
15103
15589
|
text: Scalars['String']['input'];
|
@@ -15553,6 +16039,8 @@ export type GetFeedQuery = {
|
|
15553
16039
|
libraryId: string;
|
15554
16040
|
folderId?: string | null;
|
15555
16041
|
tenantId?: string | null;
|
16042
|
+
clientId?: string | null;
|
16043
|
+
clientSecret?: string | null;
|
15556
16044
|
refreshToken?: string | null;
|
15557
16045
|
} | null;
|
15558
16046
|
oneDrive?: {
|
@@ -15774,6 +16262,8 @@ export type QueryFeedsQuery = {
|
|
15774
16262
|
libraryId: string;
|
15775
16263
|
folderId?: string | null;
|
15776
16264
|
tenantId?: string | null;
|
16265
|
+
clientId?: string | null;
|
16266
|
+
clientSecret?: string | null;
|
15777
16267
|
refreshToken?: string | null;
|
15778
16268
|
} | null;
|
15779
16269
|
oneDrive?: {
|
@@ -1075,6 +1075,8 @@ var MistralModels;
|
|
1075
1075
|
MistralModels["Mixtral_8X7BInstruct"] = "MIXTRAL_8X7B_INSTRUCT";
|
1076
1076
|
/** Pixtral 12b (2024-09 version) */
|
1077
1077
|
MistralModels["Pixtral_12B_2409"] = "PIXTRAL_12B_2409";
|
1078
|
+
/** Pixtral Large */
|
1079
|
+
MistralModels["PixtralLarge"] = "PIXTRAL_LARGE";
|
1078
1080
|
})(MistralModels || (exports.MistralModels = MistralModels = {}));
|
1079
1081
|
/** Model service type */
|
1080
1082
|
var ModelServiceTypes;
|
@@ -1185,6 +1187,8 @@ var OpenAiModels;
|
|
1185
1187
|
OpenAiModels["Gpt4O_128K_20240513"] = "GPT4O_128K_20240513";
|
1186
1188
|
/** GPT-4o 128k (2024-08-06 version) */
|
1187
1189
|
OpenAiModels["Gpt4O_128K_20240806"] = "GPT4O_128K_20240806";
|
1190
|
+
/** GPT-4o 128k (2024-11-20 version) */
|
1191
|
+
OpenAiModels["Gpt4O_128K_20241120"] = "GPT4O_128K_20241120";
|
1188
1192
|
/** ChatGPT-4o 128k (Latest) */
|
1189
1193
|
OpenAiModels["Gpt4OChat_128K"] = "GPT4O_CHAT_128K";
|
1190
1194
|
/** GPT-4o Mini 128k (Latest) */
|
@@ -1528,10 +1532,14 @@ var TextRoles;
|
|
1528
1532
|
TextRoles["CornerHeader"] = "CORNER_HEADER";
|
1529
1533
|
/** Diagram */
|
1530
1534
|
TextRoles["Diagram"] = "DIAGRAM";
|
1535
|
+
/** Diagram Caption */
|
1536
|
+
TextRoles["DiagramCaption"] = "DIAGRAM_CAPTION";
|
1531
1537
|
/** Equation */
|
1532
1538
|
TextRoles["Equation"] = "EQUATION";
|
1533
1539
|
/** Figure */
|
1534
1540
|
TextRoles["Figure"] = "FIGURE";
|
1541
|
+
/** Figure Caption */
|
1542
|
+
TextRoles["FigureCaption"] = "FIGURE_CAPTION";
|
1535
1543
|
/** Footnote */
|
1536
1544
|
TextRoles["Footnote"] = "FOOTNOTE";
|
1537
1545
|
/** Heading 1 */
|
@@ -1570,6 +1578,8 @@ var TextRoles;
|
|
1570
1578
|
TextRoles["TableColumnHeader"] = "TABLE_COLUMN_HEADER";
|
1571
1579
|
/** Table Corner Header */
|
1572
1580
|
TextRoles["TableCornerHeader"] = "TABLE_CORNER_HEADER";
|
1581
|
+
/** Table Header */
|
1582
|
+
TextRoles["TableHeader"] = "TABLE_HEADER";
|
1573
1583
|
/** Table Row Header */
|
1574
1584
|
TextRoles["TableRowHeader"] = "TABLE_ROW_HEADER";
|
1575
1585
|
/** Title */
|