graphlit-client 1.0.20241231001 → 1.0.20250105001
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
@@ -76,6 +76,7 @@ declare class Graphlit {
|
|
76
76
|
prompt(prompt: string, specification?: Types.EntityReferenceInput, messages?: [Types.ConversationMessageInput], correlationId?: string): Promise<Types.PromptMutation>;
|
77
77
|
formatConversation(prompt: string, id?: string, specification?: Types.EntityReferenceInput, includeDetails?: boolean, correlationId?: string): Promise<Types.FormatConversationMutation>;
|
78
78
|
completeConversation(completion: string, id: string, correlationId?: string): Promise<Types.CompleteConversationMutation>;
|
79
|
+
askGraphlit(prompt: string, type?: Types.SdkTypes, id?: string, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.AskGraphlitMutation>;
|
79
80
|
promptConversation(prompt: string, id?: string, specification?: Types.EntityReferenceInput, tools?: [Types.ToolDefinitionInput], requireTool?: boolean, includeDetails?: boolean, correlationId?: string): Promise<Types.PromptConversationMutation>;
|
80
81
|
continueConversation(id: string, responses: [Types.ConversationToolResponseInput], correlationId?: string): Promise<Types.ContinueConversationMutation>;
|
81
82
|
publishConversation(id: string, connector: Types.ContentPublishingConnectorInput, name?: string, workflow?: Types.EntityReferenceInput, isSynchronous?: boolean, correlationId?: string): Promise<Types.PublishConversationMutation>;
|
@@ -98,6 +99,7 @@ declare class Graphlit {
|
|
98
99
|
deleteAllSpecifications(): Promise<Types.DeleteAllSpecificationsMutation>;
|
99
100
|
getSpecification(id: string): Promise<Types.GetSpecificationQuery>;
|
100
101
|
querySpecifications(filter?: Types.SpecificationFilter): Promise<Types.QuerySpecificationsQuery>;
|
102
|
+
queryModels(filter?: Types.ModelFilter): Promise<Types.QueryModelsQuery>;
|
101
103
|
createWorkflow(workflow: Types.WorkflowInput): Promise<Types.CreateWorkflowMutation>;
|
102
104
|
updateWorkflow(workflow: Types.WorkflowUpdateInput): Promise<Types.UpdateWorkflowMutation>;
|
103
105
|
deleteWorkflow(id: string): Promise<Types.DeleteWorkflowMutation>;
|
package/dist/client.js
CHANGED
@@ -438,6 +438,11 @@ class Graphlit {
|
|
438
438
|
return this.mutateAndCheckError(Documents.CompleteConversation, { completion: completion, id: id, correlationId: correlationId });
|
439
439
|
});
|
440
440
|
}
|
441
|
+
askGraphlit(prompt, type, id, specification, correlationId) {
|
442
|
+
return __awaiter(this, void 0, void 0, function* () {
|
443
|
+
return this.mutateAndCheckError(Documents.AskGraphlit, { prompt: prompt, type: type, id: id, specification: specification, correlationId: correlationId });
|
444
|
+
});
|
445
|
+
}
|
441
446
|
promptConversation(prompt, id, specification, tools, requireTool, includeDetails, correlationId) {
|
442
447
|
return __awaiter(this, void 0, void 0, function* () {
|
443
448
|
return this.mutateAndCheckError(Documents.PromptConversation, { prompt: prompt, id: id, specification: specification, tools: tools, requireTool: requireTool, includeDetails: includeDetails, correlationId: correlationId });
|
@@ -548,6 +553,11 @@ class Graphlit {
|
|
548
553
|
return this.queryAndCheckError(Documents.QuerySpecifications, { filter: filter });
|
549
554
|
});
|
550
555
|
}
|
556
|
+
queryModels(filter) {
|
557
|
+
return __awaiter(this, void 0, void 0, function* () {
|
558
|
+
return this.queryAndCheckError(Documents.QueryModels, { filter: filter });
|
559
|
+
});
|
560
|
+
}
|
551
561
|
createWorkflow(workflow) {
|
552
562
|
return __awaiter(this, void 0, void 0, function* () {
|
553
563
|
return this.mutateAndCheckError(Documents.CreateWorkflow, { workflow: workflow });
|
@@ -50,6 +50,7 @@ export declare const ScreenshotPage: import("graphql").DocumentNode;
|
|
50
50
|
export declare const SummarizeContents: import("graphql").DocumentNode;
|
51
51
|
export declare const SummarizeText: import("graphql").DocumentNode;
|
52
52
|
export declare const UpdateContent: import("graphql").DocumentNode;
|
53
|
+
export declare const AskGraphlit: import("graphql").DocumentNode;
|
53
54
|
export declare const ClearConversation: import("graphql").DocumentNode;
|
54
55
|
export declare const CloseConversation: import("graphql").DocumentNode;
|
55
56
|
export declare const CompleteConversation: 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.SummarizeContents = exports.ScreenshotPage = 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.ExtractText = 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.QueryModels = exports.PromptSpecifications = exports.GetSpecification = exports.DeleteSpecifications = exports.DeleteSpecification = exports.DeleteAllSpecifications = exports.CreateSpecification = exports.CountSpecifications = exports.UpdateSoftware = exports.QuerySoftwares = exports.GetSoftware = void 0;
|
7
|
+
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.FormatConversation = exports.DeleteConversations = exports.DeleteConversation = exports.DeleteAllConversations = exports.CreateConversation = exports.CountConversations = exports.ContinueConversation = exports.CompleteConversation = exports.CloseConversation = exports.ClearConversation = exports.AskGraphlit = exports.UpdateContent = exports.SummarizeText = void 0;
|
8
|
+
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 = exports.QueryLabels = exports.GetLabel = exports.DeleteLabels = exports.DeleteLabel = exports.DeleteAllLabels = exports.CreateLabel = void 0;
|
9
|
+
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 = exports.CountMedicalIndications = exports.UpdateMedicalGuideline = exports.QueryMedicalGuidelines = exports.GetMedicalGuideline = exports.DeleteMedicalGuidelines = exports.DeleteMedicalGuideline = void 0;
|
10
|
+
exports.DeleteSoftware = exports.DeleteAllSoftwares = exports.CreateSoftware = exports.CountSoftwares = exports.SearchWeb = exports.MapWeb = 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 = exports.UpdateOrganization = exports.QueryOrganizations = exports.GetOrganization = exports.DeleteOrganizations = exports.DeleteOrganization = exports.DeleteAllOrganizations = void 0;
|
11
|
+
exports.UpdateWorkflow = exports.QueryWorkflows = exports.GetWorkflow = exports.DeleteWorkflows = exports.DeleteWorkflow = exports.DeleteAllWorkflows = exports.CreateWorkflow = exports.CountWorkflows = exports.UpdateSpecification = exports.QuerySpecifications = exports.QueryModels = exports.PromptSpecifications = exports.GetSpecification = exports.DeleteSpecifications = exports.DeleteSpecification = exports.DeleteAllSpecifications = exports.CreateSpecification = exports.CountSpecifications = exports.UpdateSoftware = exports.QuerySoftwares = exports.GetSoftware = exports.DeleteSoftwares = 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) {
|
@@ -2285,6 +2285,143 @@ exports.UpdateContent = (0, graphql_tag_1.default) `
|
|
2285
2285
|
}
|
2286
2286
|
}
|
2287
2287
|
`;
|
2288
|
+
exports.AskGraphlit = (0, graphql_tag_1.default) `
|
2289
|
+
mutation AskGraphlit($prompt: String!, $type: SdkTypes, $id: ID, $specification: EntityReferenceInput, $correlationId: String) {
|
2290
|
+
askGraphlit(
|
2291
|
+
prompt: $prompt
|
2292
|
+
type: $type
|
2293
|
+
id: $id
|
2294
|
+
specification: $specification
|
2295
|
+
correlationId: $correlationId
|
2296
|
+
) {
|
2297
|
+
conversation {
|
2298
|
+
id
|
2299
|
+
}
|
2300
|
+
message {
|
2301
|
+
role
|
2302
|
+
author
|
2303
|
+
message
|
2304
|
+
citations {
|
2305
|
+
content {
|
2306
|
+
id
|
2307
|
+
name
|
2308
|
+
state
|
2309
|
+
originalDate
|
2310
|
+
identifier
|
2311
|
+
uri
|
2312
|
+
type
|
2313
|
+
fileType
|
2314
|
+
mimeType
|
2315
|
+
format
|
2316
|
+
formatName
|
2317
|
+
fileExtension
|
2318
|
+
fileName
|
2319
|
+
fileSize
|
2320
|
+
masterUri
|
2321
|
+
imageUri
|
2322
|
+
textUri
|
2323
|
+
audioUri
|
2324
|
+
transcriptUri
|
2325
|
+
summary
|
2326
|
+
customSummary
|
2327
|
+
keywords
|
2328
|
+
bullets
|
2329
|
+
headlines
|
2330
|
+
posts
|
2331
|
+
chapters
|
2332
|
+
questions
|
2333
|
+
video {
|
2334
|
+
width
|
2335
|
+
height
|
2336
|
+
duration
|
2337
|
+
make
|
2338
|
+
model
|
2339
|
+
software
|
2340
|
+
title
|
2341
|
+
description
|
2342
|
+
keywords
|
2343
|
+
author
|
2344
|
+
}
|
2345
|
+
audio {
|
2346
|
+
keywords
|
2347
|
+
author
|
2348
|
+
series
|
2349
|
+
episode
|
2350
|
+
episodeType
|
2351
|
+
season
|
2352
|
+
publisher
|
2353
|
+
copyright
|
2354
|
+
genre
|
2355
|
+
title
|
2356
|
+
description
|
2357
|
+
bitrate
|
2358
|
+
channels
|
2359
|
+
sampleRate
|
2360
|
+
bitsPerSample
|
2361
|
+
duration
|
2362
|
+
}
|
2363
|
+
image {
|
2364
|
+
width
|
2365
|
+
height
|
2366
|
+
resolutionX
|
2367
|
+
resolutionY
|
2368
|
+
bitsPerComponent
|
2369
|
+
components
|
2370
|
+
projectionType
|
2371
|
+
orientation
|
2372
|
+
description
|
2373
|
+
make
|
2374
|
+
model
|
2375
|
+
software
|
2376
|
+
lens
|
2377
|
+
focalLength
|
2378
|
+
exposureTime
|
2379
|
+
fNumber
|
2380
|
+
iso
|
2381
|
+
heading
|
2382
|
+
pitch
|
2383
|
+
}
|
2384
|
+
document {
|
2385
|
+
title
|
2386
|
+
subject
|
2387
|
+
summary
|
2388
|
+
author
|
2389
|
+
publisher
|
2390
|
+
description
|
2391
|
+
keywords
|
2392
|
+
pageCount
|
2393
|
+
worksheetCount
|
2394
|
+
slideCount
|
2395
|
+
wordCount
|
2396
|
+
lineCount
|
2397
|
+
paragraphCount
|
2398
|
+
isEncrypted
|
2399
|
+
hasDigitalSignature
|
2400
|
+
}
|
2401
|
+
}
|
2402
|
+
index
|
2403
|
+
text
|
2404
|
+
startTime
|
2405
|
+
endTime
|
2406
|
+
pageNumber
|
2407
|
+
frameNumber
|
2408
|
+
}
|
2409
|
+
toolCalls {
|
2410
|
+
id
|
2411
|
+
name
|
2412
|
+
arguments
|
2413
|
+
}
|
2414
|
+
tokens
|
2415
|
+
throughput
|
2416
|
+
completionTime
|
2417
|
+
timestamp
|
2418
|
+
modelService
|
2419
|
+
model
|
2420
|
+
}
|
2421
|
+
messageCount
|
2422
|
+
}
|
2423
|
+
}
|
2424
|
+
`;
|
2288
2425
|
exports.ClearConversation = (0, graphql_tag_1.default) `
|
2289
2426
|
mutation ClearConversation($id: ID!) {
|
2290
2427
|
clearConversation(id: $id) {
|
@@ -5629,10 +5766,10 @@ exports.QueryOneDriveFolders = (0, graphql_tag_1.default) `
|
|
5629
5766
|
}
|
5630
5767
|
`;
|
5631
5768
|
exports.QuerySharePointFolders = (0, graphql_tag_1.default) `
|
5632
|
-
query QuerySharePointFolders($properties: SharePointFoldersInput!, $
|
5769
|
+
query QuerySharePointFolders($properties: SharePointFoldersInput!, $libraryId: ID!, $folderId: ID) {
|
5633
5770
|
sharePointFolders(
|
5634
5771
|
properties: $properties
|
5635
|
-
|
5772
|
+
libraryId: $libraryId
|
5636
5773
|
folderId: $folderId
|
5637
5774
|
) {
|
5638
5775
|
accountName
|
@@ -7841,13 +7978,15 @@ exports.PromptSpecifications = (0, graphql_tag_1.default) `
|
|
7841
7978
|
}
|
7842
7979
|
`;
|
7843
7980
|
exports.QueryModels = (0, graphql_tag_1.default) `
|
7844
|
-
query QueryModels {
|
7845
|
-
models {
|
7981
|
+
query QueryModels($filter: ModelFilter) {
|
7982
|
+
models(filter: $filter) {
|
7846
7983
|
results {
|
7984
|
+
uri
|
7847
7985
|
name
|
7848
7986
|
type
|
7849
7987
|
serviceType
|
7850
7988
|
model
|
7989
|
+
modelType
|
7851
7990
|
description
|
7852
7991
|
availableOn
|
7853
7992
|
features {
|
@@ -8192,6 +8331,12 @@ exports.CreateWorkflow = (0, graphql_tag_1.default) `
|
|
8192
8331
|
}
|
8193
8332
|
}
|
8194
8333
|
}
|
8334
|
+
storage {
|
8335
|
+
policy {
|
8336
|
+
type
|
8337
|
+
allowDuplicates
|
8338
|
+
}
|
8339
|
+
}
|
8195
8340
|
actions {
|
8196
8341
|
connector {
|
8197
8342
|
type
|
@@ -8367,6 +8512,12 @@ exports.GetWorkflow = (0, graphql_tag_1.default) `
|
|
8367
8512
|
}
|
8368
8513
|
}
|
8369
8514
|
}
|
8515
|
+
storage {
|
8516
|
+
policy {
|
8517
|
+
type
|
8518
|
+
allowDuplicates
|
8519
|
+
}
|
8520
|
+
}
|
8370
8521
|
actions {
|
8371
8522
|
connector {
|
8372
8523
|
type
|
@@ -8515,6 +8666,12 @@ exports.QueryWorkflows = (0, graphql_tag_1.default) `
|
|
8515
8666
|
}
|
8516
8667
|
}
|
8517
8668
|
}
|
8669
|
+
storage {
|
8670
|
+
policy {
|
8671
|
+
type
|
8672
|
+
allowDuplicates
|
8673
|
+
}
|
8674
|
+
}
|
8518
8675
|
actions {
|
8519
8676
|
connector {
|
8520
8677
|
type
|
@@ -8658,6 +8815,12 @@ exports.UpdateWorkflow = (0, graphql_tag_1.default) `
|
|
8658
8815
|
}
|
8659
8816
|
}
|
8660
8817
|
}
|
8818
|
+
storage {
|
8819
|
+
policy {
|
8820
|
+
type
|
8821
|
+
allowDuplicates
|
8822
|
+
}
|
8823
|
+
}
|
8661
8824
|
actions {
|
8662
8825
|
connector {
|
8663
8826
|
type
|
@@ -403,6 +403,16 @@ export declare enum ApplyPolicy {
|
|
403
403
|
/** The policy is applied in the validation step before the execution. */
|
404
404
|
Validation = "VALIDATION"
|
405
405
|
}
|
406
|
+
/** Represents a prompted question about Graphlit. */
|
407
|
+
export type AskGraphlit = {
|
408
|
+
__typename?: 'AskGraphlit';
|
409
|
+
/** The completed conversation. */
|
410
|
+
conversation?: Maybe<EntityReference>;
|
411
|
+
/** The completed conversation message. */
|
412
|
+
message?: Maybe<ConversationMessage>;
|
413
|
+
/** The conversation message count, after completion. */
|
414
|
+
messageCount?: Maybe<Scalars['Int']['output']>;
|
415
|
+
};
|
406
416
|
/** Represents Atlassian Jira feed properties. */
|
407
417
|
export type AtlassianJiraFeedProperties = {
|
408
418
|
__typename?: 'AtlassianJiraFeedProperties';
|
@@ -1049,8 +1059,8 @@ export declare enum CerebrasModels {
|
|
1049
1059
|
Custom = "CUSTOM",
|
1050
1060
|
/** LLaMA 3.1 8b */
|
1051
1061
|
Llama_3_1_8B = "LLAMA_3_1_8B",
|
1052
|
-
/** LLaMA 3.
|
1053
|
-
|
1062
|
+
/** LLaMA 3.3 70b */
|
1063
|
+
Llama_3_3_70B = "LLAMA_3_3_70B"
|
1054
1064
|
}
|
1055
1065
|
/** Represents Cohere model properties. */
|
1056
1066
|
export type CohereModelProperties = {
|
@@ -2653,16 +2663,16 @@ export type EmbeddingsStrategy = {
|
|
2653
2663
|
__typename?: 'EmbeddingsStrategy';
|
2654
2664
|
/** @deprecated The limit of tokens per embedded text chunk has been removed from embeddings strategy. Assign in text embeddings specification instead. */
|
2655
2665
|
chunkTokenLimit?: Maybe<Scalars['Int']['output']>;
|
2656
|
-
/** The LLM specification used for image embeddings. */
|
2666
|
+
/** The LLM specification used for image embeddings, optional. */
|
2657
2667
|
imageSpecification?: Maybe<EntityReference>;
|
2658
|
-
/** The LLM specification used for text embeddings. */
|
2668
|
+
/** The LLM specification used for text embeddings, optional. */
|
2659
2669
|
textSpecification?: Maybe<EntityReference>;
|
2660
2670
|
};
|
2661
2671
|
/** Represents the embeddings strategy. */
|
2662
2672
|
export type EmbeddingsStrategyInput = {
|
2663
|
-
/** The LLM specification used for image embeddings. */
|
2673
|
+
/** The LLM specification used for image embeddings, optional. */
|
2664
2674
|
imageSpecification?: InputMaybe<EntityReferenceInput>;
|
2665
|
-
/** The LLM specification used for text embeddings. */
|
2675
|
+
/** The LLM specification used for text embeddings, optional. */
|
2666
2676
|
textSpecification?: InputMaybe<EntityReferenceInput>;
|
2667
2677
|
};
|
2668
2678
|
/** Represents an enrichment workflow job. */
|
@@ -3894,7 +3904,9 @@ export declare enum GoogleModels {
|
|
3894
3904
|
/** Gemini 1.5 Pro (002 version) */
|
3895
3905
|
Gemini_1_5Pro_002 = "GEMINI_1_5_PRO_002",
|
3896
3906
|
/** Gemini 2.0 Flash (Experimental) */
|
3897
|
-
Gemini_2_0FlashExperimental = "GEMINI_2_0_FLASH_EXPERIMENTAL"
|
3907
|
+
Gemini_2_0FlashExperimental = "GEMINI_2_0_FLASH_EXPERIMENTAL",
|
3908
|
+
/** Gemini 2.0 Flash Thinking (Experimental) */
|
3909
|
+
Gemini_2_0FlashThinkingExperimental = "GEMINI_2_0_FLASH_THINKING_EXPERIMENTAL"
|
3898
3910
|
}
|
3899
3911
|
/** Represents a knowledge graph. */
|
3900
3912
|
export type Graph = {
|
@@ -4027,29 +4039,12 @@ export declare enum GroqModels {
|
|
4027
4039
|
Custom = "CUSTOM",
|
4028
4040
|
/** LLaMA 3.1 8b */
|
4029
4041
|
Llama_3_1_8B = "LLAMA_3_1_8B",
|
4030
|
-
/**
|
4031
|
-
* LLaMA 3.1 70b
|
4032
|
-
* @deprecated Use Llama 3.3 70b instead.
|
4033
|
-
*/
|
4034
|
-
Llama_3_1_70B = "LLAMA_3_1_70B",
|
4035
|
-
/** LLaMA 3.1 405b */
|
4036
|
-
Llama_3_1_405B = "LLAMA_3_1_405B",
|
4037
4042
|
/** LLaMA 3.2 1b Preview */
|
4038
4043
|
Llama_3_2_1BPreview = "LLAMA_3_2_1B_PREVIEW",
|
4039
4044
|
/** LLaMA 3.2 3b Preview */
|
4040
4045
|
Llama_3_2_3BPreview = "LLAMA_3_2_3B_PREVIEW",
|
4041
|
-
/**
|
4042
|
-
* LLaMA 3.2 11b Text Preview
|
4043
|
-
* @deprecated Use Llama 3.2 11b Vision Preview instead.
|
4044
|
-
*/
|
4045
|
-
Llama_3_2_11BTextPreview = "LLAMA_3_2_11B_TEXT_PREVIEW",
|
4046
4046
|
/** LLaMA 3.2 11b Vision Preview */
|
4047
4047
|
Llama_3_2_11BVisionPreview = "LLAMA_3_2_11B_VISION_PREVIEW",
|
4048
|
-
/**
|
4049
|
-
* LLaMA 3.2 90b Text Preview
|
4050
|
-
* @deprecated Use Llama 3.2 90b Vision Preview instead.
|
4051
|
-
*/
|
4052
|
-
Llama_3_2_90BTextPreview = "LLAMA_3_2_90B_TEXT_PREVIEW",
|
4053
4048
|
/** LLaMA 3.2 90b Vision Preview */
|
4054
4049
|
Llama_3_2_90BVisionPreview = "LLAMA_3_2_90B_VISION_PREVIEW",
|
4055
4050
|
/** LLaMA 3.3 70b */
|
@@ -4058,11 +4053,6 @@ export declare enum GroqModels {
|
|
4058
4053
|
Llama_3_8B = "LLAMA_3_8B",
|
4059
4054
|
/** LLaMA 3 70b */
|
4060
4055
|
Llama_3_70B = "LLAMA_3_70B",
|
4061
|
-
/**
|
4062
|
-
* LLaVA 1.5 7B Preview
|
4063
|
-
* @deprecated Use Llama 3.2 11b Vision Preview instead.
|
4064
|
-
*/
|
4065
|
-
Llava_1_5_7BPreview = "LLAVA_1_5_7B_PREVIEW",
|
4066
4056
|
/** Mixtral 8x7b Instruct */
|
4067
4057
|
Mixtral_8X7BInstruct = "MIXTRAL_8X7B_INSTRUCT"
|
4068
4058
|
}
|
@@ -4775,6 +4765,8 @@ export declare enum LinkTypes {
|
|
4775
4765
|
Diffbot = "DIFFBOT",
|
4776
4766
|
/** Discord link */
|
4777
4767
|
Discord = "DISCORD",
|
4768
|
+
/** Dropbox link */
|
4769
|
+
Dropbox = "DROPBOX",
|
4778
4770
|
/** Email link */
|
4779
4771
|
Email = "EMAIL",
|
4780
4772
|
/** Facebook link */
|
@@ -6776,14 +6768,18 @@ export type ModelCard = {
|
|
6776
6768
|
features?: Maybe<ModelFeatures>;
|
6777
6769
|
/** The model metadata, including pricing information per million tokens. */
|
6778
6770
|
metadata?: Maybe<ModelMetadata>;
|
6779
|
-
/** The model enum to use with the specification. */
|
6771
|
+
/** The model enum to use with the specification, i.e. GPT4O_128K. */
|
6780
6772
|
model?: Maybe<Scalars['String']['output']>;
|
6773
|
+
/** The model enum type to use with the specification, i.e. OpenAIModels. */
|
6774
|
+
modelType?: Maybe<Scalars['String']['output']>;
|
6781
6775
|
/** The model name. */
|
6782
6776
|
name: Scalars['String']['output'];
|
6783
6777
|
/** The model service type. */
|
6784
6778
|
serviceType?: Maybe<ModelServiceTypes>;
|
6785
6779
|
/** The type of model, i.e. completion, text embedding, reranking. */
|
6786
6780
|
type?: Maybe<ModelTypes>;
|
6781
|
+
/** The model card URI. */
|
6782
|
+
uri?: Maybe<Scalars['URL']['output']>;
|
6787
6783
|
};
|
6788
6784
|
/** Represents a list of model card results. */
|
6789
6785
|
export type ModelCardResults = {
|
@@ -6812,6 +6808,13 @@ export type ModelFeatures = {
|
|
6812
6808
|
/** Potential use cases for the model. */
|
6813
6809
|
useCases?: Maybe<Array<Maybe<Scalars['String']['output']>>>;
|
6814
6810
|
};
|
6811
|
+
/** Represents a filter for LLM models. */
|
6812
|
+
export type ModelFilter = {
|
6813
|
+
/** Filter by LLM service types. */
|
6814
|
+
serviceTypes?: InputMaybe<Array<InputMaybe<ModelServiceTypes>>>;
|
6815
|
+
/** Filter by LLM model types. */
|
6816
|
+
types?: InputMaybe<Array<InputMaybe<ModelTypes>>>;
|
6817
|
+
};
|
6815
6818
|
/** Represents an LLM image entity extraction connector. */
|
6816
6819
|
export type ModelImageExtractionProperties = {
|
6817
6820
|
__typename?: 'ModelImageExtractionProperties';
|
@@ -6907,6 +6910,8 @@ export type Mutation = {
|
|
6907
6910
|
addCollectionContents?: Maybe<Collection>;
|
6908
6911
|
/** Adds contents to one or more collections. */
|
6909
6912
|
addContentsToCollections?: Maybe<Array<Maybe<Collection>>>;
|
6913
|
+
/** Ask questions about the Graphlit API or SDKs. Can create code samples for any API call. */
|
6914
|
+
askGraphlit?: Maybe<AskGraphlit>;
|
6910
6915
|
/** Clears an existing conversation. */
|
6911
6916
|
clearConversation?: Maybe<Conversation>;
|
6912
6917
|
/** Closes an existing collection. */
|
@@ -7284,6 +7289,13 @@ export type MutationAddContentsToCollectionsArgs = {
|
|
7284
7289
|
collections: Array<EntityReferenceInput>;
|
7285
7290
|
contents: Array<EntityReferenceInput>;
|
7286
7291
|
};
|
7292
|
+
export type MutationAskGraphlitArgs = {
|
7293
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7294
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
7295
|
+
prompt: Scalars['String']['input'];
|
7296
|
+
specification?: InputMaybe<EntityReferenceInput>;
|
7297
|
+
type?: InputMaybe<SdkTypes>;
|
7298
|
+
};
|
7287
7299
|
export type MutationClearConversationArgs = {
|
7288
7300
|
id: Scalars['ID']['input'];
|
7289
7301
|
};
|
@@ -10428,6 +10440,9 @@ export type QueryMicrosoftTeamsChannelsArgs = {
|
|
10428
10440
|
export type QueryMicrosoftTeamsTeamsArgs = {
|
10429
10441
|
properties: MicrosoftTeamsTeamsInput;
|
10430
10442
|
};
|
10443
|
+
export type QueryModelsArgs = {
|
10444
|
+
filter?: InputMaybe<ModelFilter>;
|
10445
|
+
};
|
10431
10446
|
export type QueryObservationArgs = {
|
10432
10447
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
10433
10448
|
id: Scalars['ID']['input'];
|
@@ -10498,8 +10513,8 @@ export type QuerySharePointConsentUriArgs = {
|
|
10498
10513
|
tenantId: Scalars['ID']['input'];
|
10499
10514
|
};
|
10500
10515
|
export type QuerySharePointFoldersArgs = {
|
10501
|
-
driveId: Scalars['ID']['input'];
|
10502
10516
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
10517
|
+
libraryId: Scalars['ID']['input'];
|
10503
10518
|
properties: SharePointFoldersInput;
|
10504
10519
|
};
|
10505
10520
|
export type QuerySharePointLibrariesArgs = {
|
@@ -10955,6 +10970,15 @@ export type RevisionStrategyUpdateInput = {
|
|
10955
10970
|
/** The revision strategy type. */
|
10956
10971
|
type?: InputMaybe<RevisionStrategyTypes>;
|
10957
10972
|
};
|
10973
|
+
/** SDK type */
|
10974
|
+
export declare enum SdkTypes {
|
10975
|
+
/** .NET SDK */
|
10976
|
+
Dotnet = "DOTNET",
|
10977
|
+
/** Node.JS SDK */
|
10978
|
+
NodeJs = "NODE_JS",
|
10979
|
+
/** Python SDK */
|
10980
|
+
Python = "PYTHON"
|
10981
|
+
}
|
10958
10982
|
/** Represents web search feed properties. */
|
10959
10983
|
export type SearchFeedProperties = {
|
10960
10984
|
__typename?: 'SearchFeedProperties';
|
@@ -11681,11 +11705,38 @@ export type SpecificationUpdateInput = {
|
|
11681
11705
|
/** The Voyage model properties. */
|
11682
11706
|
voyage?: InputMaybe<VoyageModelPropertiesUpdateInput>;
|
11683
11707
|
};
|
11708
|
+
/** Represents the storage policy. */
|
11709
|
+
export type StoragePolicy = {
|
11710
|
+
__typename?: 'StoragePolicy';
|
11711
|
+
/** Whether duplicate content (by URI, eTag, etc.) will be allowed upon ingestion, defaults to False. When disabled, content will be reingested in-place. */
|
11712
|
+
allowDuplicates?: Maybe<Scalars['Boolean']['output']>;
|
11713
|
+
/** The storage policy type. */
|
11714
|
+
type?: Maybe<StoragePolicyTypes>;
|
11715
|
+
};
|
11716
|
+
/** Represents the storage policy. */
|
11717
|
+
export type StoragePolicyInput = {
|
11718
|
+
/** Whether duplicate content (by URI, eTag, etc.) will be allowed upon ingestion, defaults to False. When disabled, content will be reingested in-place. */
|
11719
|
+
allowDuplicates?: InputMaybe<Scalars['Boolean']['input']>;
|
11720
|
+
/** The storage policy type. */
|
11721
|
+
type?: InputMaybe<StoragePolicyTypes>;
|
11722
|
+
};
|
11723
|
+
/** Storage policy types */
|
11724
|
+
export declare enum StoragePolicyTypes {
|
11725
|
+
/** Archive content indefinitely */
|
11726
|
+
Archive = "ARCHIVE",
|
11727
|
+
/** Minimize content storage, by removing master rendition upon workflow completion */
|
11728
|
+
Minimize = "MINIMIZE"
|
11729
|
+
}
|
11684
11730
|
/** Represents the storage workflow stage. */
|
11685
11731
|
export type StorageWorkflowStage = {
|
11686
11732
|
__typename?: 'StorageWorkflowStage';
|
11687
|
-
/**
|
11688
|
-
|
11733
|
+
/** The storage policy. */
|
11734
|
+
policy?: Maybe<StoragePolicy>;
|
11735
|
+
};
|
11736
|
+
/** Represents the storage workflow stage. */
|
11737
|
+
export type StorageWorkflowStageInput = {
|
11738
|
+
/** The storage policy. */
|
11739
|
+
policy?: InputMaybe<StoragePolicyInput>;
|
11689
11740
|
};
|
11690
11741
|
/** Represents a range of string values. */
|
11691
11742
|
export type StringRange = {
|
@@ -12091,8 +12142,12 @@ export declare enum VoyageModels {
|
|
12091
12142
|
Voyage = "VOYAGE",
|
12092
12143
|
/** Voyage 3.0 */
|
12093
12144
|
Voyage_3_0 = "VOYAGE_3_0",
|
12145
|
+
/** Voyage 3.0 Large */
|
12146
|
+
Voyage_3_0Large = "VOYAGE_3_0_LARGE",
|
12094
12147
|
/** Voyage Code 2.0 */
|
12095
12148
|
VoyageCode_2_0 = "VOYAGE_CODE_2_0",
|
12149
|
+
/** Voyage Code 3.0 */
|
12150
|
+
VoyageCode_3_0 = "VOYAGE_CODE_3_0",
|
12096
12151
|
/** Voyage Finance 2.0 */
|
12097
12152
|
VoyageFinance_2_0 = "VOYAGE_FINANCE_2_0",
|
12098
12153
|
/** Voyage Law 2.0 */
|
@@ -12189,7 +12244,7 @@ export type Workflow = {
|
|
12189
12244
|
relevance?: Maybe<Scalars['Float']['output']>;
|
12190
12245
|
/** The state of the workflow (i.e. created, finished). */
|
12191
12246
|
state: EntityState;
|
12192
|
-
/**
|
12247
|
+
/** The storage stage of the content workflow. */
|
12193
12248
|
storage?: Maybe<StorageWorkflowStage>;
|
12194
12249
|
};
|
12195
12250
|
/** Represents the workflow action. */
|
@@ -12242,6 +12297,8 @@ export type WorkflowInput = {
|
|
12242
12297
|
name: Scalars['String']['input'];
|
12243
12298
|
/** The preparation stage of the content workflow. */
|
12244
12299
|
preparation?: InputMaybe<PreparationWorkflowStageInput>;
|
12300
|
+
/** The storage stage of the content workflow. */
|
12301
|
+
storage?: InputMaybe<StorageWorkflowStageInput>;
|
12245
12302
|
};
|
12246
12303
|
/** Represents workflow query results. */
|
12247
12304
|
export type WorkflowResults = {
|
@@ -12267,6 +12324,8 @@ export type WorkflowUpdateInput = {
|
|
12267
12324
|
name?: InputMaybe<Scalars['String']['input']>;
|
12268
12325
|
/** The preparation stage of the content workflow. */
|
12269
12326
|
preparation?: InputMaybe<PreparationWorkflowStageInput>;
|
12327
|
+
/** The storage stage of the content workflow. */
|
12328
|
+
storage?: InputMaybe<StorageWorkflowStageInput>;
|
12270
12329
|
};
|
12271
12330
|
/** Represents YouTube feed properties. */
|
12272
12331
|
export type YouTubeFeedProperties = {
|
@@ -15010,6 +15069,153 @@ export type UpdateContentMutation = {
|
|
15010
15069
|
} | null> | null;
|
15011
15070
|
} | null;
|
15012
15071
|
};
|
15072
|
+
export type AskGraphlitMutationVariables = Exact<{
|
15073
|
+
prompt: Scalars['String']['input'];
|
15074
|
+
type?: InputMaybe<SdkTypes>;
|
15075
|
+
id?: InputMaybe<Scalars['ID']['input']>;
|
15076
|
+
specification?: InputMaybe<EntityReferenceInput>;
|
15077
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
15078
|
+
}>;
|
15079
|
+
export type AskGraphlitMutation = {
|
15080
|
+
__typename?: 'Mutation';
|
15081
|
+
askGraphlit?: {
|
15082
|
+
__typename?: 'AskGraphlit';
|
15083
|
+
messageCount?: number | null;
|
15084
|
+
conversation?: {
|
15085
|
+
__typename?: 'EntityReference';
|
15086
|
+
id: string;
|
15087
|
+
} | null;
|
15088
|
+
message?: {
|
15089
|
+
__typename?: 'ConversationMessage';
|
15090
|
+
role: ConversationRoleTypes;
|
15091
|
+
author?: string | null;
|
15092
|
+
message?: string | null;
|
15093
|
+
tokens?: number | null;
|
15094
|
+
throughput?: number | null;
|
15095
|
+
completionTime?: any | null;
|
15096
|
+
timestamp?: any | null;
|
15097
|
+
modelService?: ModelServiceTypes | null;
|
15098
|
+
model?: string | null;
|
15099
|
+
citations?: Array<{
|
15100
|
+
__typename?: 'ConversationCitation';
|
15101
|
+
index?: number | null;
|
15102
|
+
text: string;
|
15103
|
+
startTime?: any | null;
|
15104
|
+
endTime?: any | null;
|
15105
|
+
pageNumber?: number | null;
|
15106
|
+
frameNumber?: number | null;
|
15107
|
+
content?: {
|
15108
|
+
__typename?: 'Content';
|
15109
|
+
id: string;
|
15110
|
+
name: string;
|
15111
|
+
state: EntityState;
|
15112
|
+
originalDate?: any | null;
|
15113
|
+
identifier?: string | null;
|
15114
|
+
uri?: any | null;
|
15115
|
+
type?: ContentTypes | null;
|
15116
|
+
fileType?: FileTypes | null;
|
15117
|
+
mimeType?: string | null;
|
15118
|
+
format?: string | null;
|
15119
|
+
formatName?: string | null;
|
15120
|
+
fileExtension?: string | null;
|
15121
|
+
fileName?: string | null;
|
15122
|
+
fileSize?: any | null;
|
15123
|
+
masterUri?: any | null;
|
15124
|
+
imageUri?: any | null;
|
15125
|
+
textUri?: any | null;
|
15126
|
+
audioUri?: any | null;
|
15127
|
+
transcriptUri?: any | null;
|
15128
|
+
summary?: string | null;
|
15129
|
+
customSummary?: string | null;
|
15130
|
+
keywords?: Array<string> | null;
|
15131
|
+
bullets?: Array<string> | null;
|
15132
|
+
headlines?: Array<string> | null;
|
15133
|
+
posts?: Array<string> | null;
|
15134
|
+
chapters?: Array<string> | null;
|
15135
|
+
questions?: Array<string> | null;
|
15136
|
+
video?: {
|
15137
|
+
__typename?: 'VideoMetadata';
|
15138
|
+
width?: number | null;
|
15139
|
+
height?: number | null;
|
15140
|
+
duration?: any | null;
|
15141
|
+
make?: string | null;
|
15142
|
+
model?: string | null;
|
15143
|
+
software?: string | null;
|
15144
|
+
title?: string | null;
|
15145
|
+
description?: string | null;
|
15146
|
+
keywords?: Array<string | null> | null;
|
15147
|
+
author?: string | null;
|
15148
|
+
} | null;
|
15149
|
+
audio?: {
|
15150
|
+
__typename?: 'AudioMetadata';
|
15151
|
+
keywords?: Array<string | null> | null;
|
15152
|
+
author?: string | null;
|
15153
|
+
series?: string | null;
|
15154
|
+
episode?: string | null;
|
15155
|
+
episodeType?: string | null;
|
15156
|
+
season?: string | null;
|
15157
|
+
publisher?: string | null;
|
15158
|
+
copyright?: string | null;
|
15159
|
+
genre?: string | null;
|
15160
|
+
title?: string | null;
|
15161
|
+
description?: string | null;
|
15162
|
+
bitrate?: number | null;
|
15163
|
+
channels?: number | null;
|
15164
|
+
sampleRate?: number | null;
|
15165
|
+
bitsPerSample?: number | null;
|
15166
|
+
duration?: any | null;
|
15167
|
+
} | null;
|
15168
|
+
image?: {
|
15169
|
+
__typename?: 'ImageMetadata';
|
15170
|
+
width?: number | null;
|
15171
|
+
height?: number | null;
|
15172
|
+
resolutionX?: number | null;
|
15173
|
+
resolutionY?: number | null;
|
15174
|
+
bitsPerComponent?: number | null;
|
15175
|
+
components?: number | null;
|
15176
|
+
projectionType?: ImageProjectionTypes | null;
|
15177
|
+
orientation?: OrientationTypes | null;
|
15178
|
+
description?: string | null;
|
15179
|
+
make?: string | null;
|
15180
|
+
model?: string | null;
|
15181
|
+
software?: string | null;
|
15182
|
+
lens?: string | null;
|
15183
|
+
focalLength?: number | null;
|
15184
|
+
exposureTime?: string | null;
|
15185
|
+
fNumber?: string | null;
|
15186
|
+
iso?: string | null;
|
15187
|
+
heading?: number | null;
|
15188
|
+
pitch?: number | null;
|
15189
|
+
} | null;
|
15190
|
+
document?: {
|
15191
|
+
__typename?: 'DocumentMetadata';
|
15192
|
+
title?: string | null;
|
15193
|
+
subject?: string | null;
|
15194
|
+
summary?: string | null;
|
15195
|
+
author?: string | null;
|
15196
|
+
publisher?: string | null;
|
15197
|
+
description?: string | null;
|
15198
|
+
keywords?: Array<string | null> | null;
|
15199
|
+
pageCount?: number | null;
|
15200
|
+
worksheetCount?: number | null;
|
15201
|
+
slideCount?: number | null;
|
15202
|
+
wordCount?: number | null;
|
15203
|
+
lineCount?: number | null;
|
15204
|
+
paragraphCount?: number | null;
|
15205
|
+
isEncrypted?: boolean | null;
|
15206
|
+
hasDigitalSignature?: boolean | null;
|
15207
|
+
} | null;
|
15208
|
+
} | null;
|
15209
|
+
} | null> | null;
|
15210
|
+
toolCalls?: Array<{
|
15211
|
+
__typename?: 'ConversationToolCall';
|
15212
|
+
id: string;
|
15213
|
+
name: string;
|
15214
|
+
arguments: string;
|
15215
|
+
} | null> | null;
|
15216
|
+
} | null;
|
15217
|
+
} | null;
|
15218
|
+
};
|
15013
15219
|
export type ClearConversationMutationVariables = Exact<{
|
15014
15220
|
id: Scalars['ID']['input'];
|
15015
15221
|
}>;
|
@@ -18794,7 +19000,7 @@ export type QueryOneDriveFoldersQuery = {
|
|
18794
19000
|
};
|
18795
19001
|
export type QuerySharePointFoldersQueryVariables = Exact<{
|
18796
19002
|
properties: SharePointFoldersInput;
|
18797
|
-
|
19003
|
+
libraryId: Scalars['ID']['input'];
|
18798
19004
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
18799
19005
|
}>;
|
18800
19006
|
export type QuerySharePointFoldersQuery = {
|
@@ -21541,7 +21747,7 @@ export type PromptSpecificationsMutation = {
|
|
21541
21747
|
} | null> | null;
|
21542
21748
|
};
|
21543
21749
|
export type QueryModelsQueryVariables = Exact<{
|
21544
|
-
|
21750
|
+
filter?: InputMaybe<ModelFilter>;
|
21545
21751
|
}>;
|
21546
21752
|
export type QueryModelsQuery = {
|
21547
21753
|
__typename?: 'Query';
|
@@ -21549,10 +21755,12 @@ export type QueryModelsQuery = {
|
|
21549
21755
|
__typename?: 'ModelCardResults';
|
21550
21756
|
results?: Array<{
|
21551
21757
|
__typename?: 'ModelCard';
|
21758
|
+
uri?: any | null;
|
21552
21759
|
name: string;
|
21553
21760
|
type?: ModelTypes | null;
|
21554
21761
|
serviceType?: ModelServiceTypes | null;
|
21555
21762
|
model?: string | null;
|
21763
|
+
modelType?: string | null;
|
21556
21764
|
description?: string | null;
|
21557
21765
|
availableOn?: Array<string | null> | null;
|
21558
21766
|
features?: {
|
@@ -21965,6 +22173,14 @@ export type CreateWorkflowMutation = {
|
|
21965
22173
|
} | null;
|
21966
22174
|
} | null> | null;
|
21967
22175
|
} | null;
|
22176
|
+
storage?: {
|
22177
|
+
__typename?: 'StorageWorkflowStage';
|
22178
|
+
policy?: {
|
22179
|
+
__typename?: 'StoragePolicy';
|
22180
|
+
type?: StoragePolicyTypes | null;
|
22181
|
+
allowDuplicates?: boolean | null;
|
22182
|
+
} | null;
|
22183
|
+
} | null;
|
21968
22184
|
actions?: Array<{
|
21969
22185
|
__typename?: 'WorkflowAction';
|
21970
22186
|
connector?: {
|
@@ -22188,6 +22404,14 @@ export type GetWorkflowQuery = {
|
|
22188
22404
|
} | null;
|
22189
22405
|
} | null> | null;
|
22190
22406
|
} | null;
|
22407
|
+
storage?: {
|
22408
|
+
__typename?: 'StorageWorkflowStage';
|
22409
|
+
policy?: {
|
22410
|
+
__typename?: 'StoragePolicy';
|
22411
|
+
type?: StoragePolicyTypes | null;
|
22412
|
+
allowDuplicates?: boolean | null;
|
22413
|
+
} | null;
|
22414
|
+
} | null;
|
22191
22415
|
actions?: Array<{
|
22192
22416
|
__typename?: 'WorkflowAction';
|
22193
22417
|
connector?: {
|
@@ -22377,6 +22601,14 @@ export type QueryWorkflowsQuery = {
|
|
22377
22601
|
} | null;
|
22378
22602
|
} | null> | null;
|
22379
22603
|
} | null;
|
22604
|
+
storage?: {
|
22605
|
+
__typename?: 'StorageWorkflowStage';
|
22606
|
+
policy?: {
|
22607
|
+
__typename?: 'StoragePolicy';
|
22608
|
+
type?: StoragePolicyTypes | null;
|
22609
|
+
allowDuplicates?: boolean | null;
|
22610
|
+
} | null;
|
22611
|
+
} | null;
|
22380
22612
|
actions?: Array<{
|
22381
22613
|
__typename?: 'WorkflowAction';
|
22382
22614
|
connector?: {
|
@@ -22559,6 +22791,14 @@ export type UpdateWorkflowMutation = {
|
|
22559
22791
|
} | null;
|
22560
22792
|
} | null> | null;
|
22561
22793
|
} | null;
|
22794
|
+
storage?: {
|
22795
|
+
__typename?: 'StorageWorkflowStage';
|
22796
|
+
policy?: {
|
22797
|
+
__typename?: 'StoragePolicy';
|
22798
|
+
type?: StoragePolicyTypes | null;
|
22799
|
+
allowDuplicates?: boolean | null;
|
22800
|
+
} | null;
|
22801
|
+
} | null;
|
22562
22802
|
actions?: Array<{
|
22563
22803
|
__typename?: 'WorkflowAction';
|
22564
22804
|
connector?: {
|
@@ -1,8 +1,8 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.MailSensitivity = exports.MailPriority = exports.MailImportance = exports.LinkTypes = exports.LabelFacetTypes = exports.JinaModels = exports.IntegrationServiceTypes = exports.ImageProjectionTypes = exports.H3ResolutionTypes = exports.GroqModels = exports.GraphStrategyTypes = exports.GoogleModels = exports.FileTypes = exports.FilePreparationServiceTypes = exports.FeedTypes = exports.FeedServiceTypes = exports.FeedListingTypes = exports.FeedConnectorTypes = exports.FacetValueTypes = exports.EventFacetTypes = exports.EnvironmentTypes = exports.EntityTypes = exports.EntityState = exports.EntityExtractionServiceTypes = exports.EntityEnrichmentServiceTypes = exports.EmailListingTypes = exports.ElevenLabsModels = exports.DeviceTypes = exports.DeepseekModels = exports.DeepgramModels = exports.ConversationTypes = exports.ConversationStrategyTypes = exports.ConversationSearchTypes = exports.ConversationRoleTypes = exports.ContentTypes = exports.ContentPublishingServiceTypes = exports.ContentPublishingFormats = exports.ContentIndexingServiceTypes = exports.ContentFacetTypes = exports.CollectionTypes = exports.CohereModels = exports.CerebrasModels = exports.CategoryFacetTypes = exports.BillableMetrics = exports.AzureOpenAiModels = exports.AzureDocumentIntelligenceVersions = exports.AzureDocumentIntelligenceModels = exports.ApplyPolicy = exports.AnthropicModels = exports.AlertTypes = void 0;
|
4
|
-
exports.
|
5
|
-
exports.YouTubeTypes = exports.VoyageModels = void 0;
|
4
|
+
exports.TimeIntervalTypes = exports.TextTypes = exports.TextRoles = exports.SummarizationTypes = exports.StoragePolicyTypes = exports.SpecificationTypes = exports.SoftwareFacetTypes = exports.SiteTypes = exports.SharePointAuthenticationTypes = exports.SearchTypes = exports.SearchServiceTypes = exports.SearchQueryTypes = exports.SdkTypes = exports.RevisionStrategyTypes = exports.RetrievalStrategyTypes = exports.ResourceConnectorTypes = exports.RerankingModelServiceTypes = exports.RepoFacetTypes = exports.ReplicateModels = exports.RenditionTypes = exports.PromptStrategyTypes = exports.ProductFacetTypes = exports.PolicyTimeTypes = exports.PlaceFacetTypes = exports.PersonFacetTypes = exports.OrientationTypes = exports.OrganizationFacetTypes = exports.OrderDirectionTypes = exports.OrderByTypes = exports.OperationTypes = exports.OpenAiVisionDetailLevels = exports.OpenAiModels = exports.OccurrenceTypes = exports.ObservableTypes = exports.NotionTypes = exports.ModelTypes = exports.ModelServiceTypes = exports.MistralModels = exports.MetadataTypes = exports.MedicalTherapyFacetTypes = exports.MedicalTestFacetTypes = exports.MedicalStudyFacetTypes = exports.MedicalProcedureFacetTypes = exports.MedicalIndicationFacetTypes = exports.MedicalGuidelineFacetTypes = exports.MedicalDrugFacetTypes = exports.MedicalDrugClassFacetTypes = exports.MedicalDeviceFacetTypes = exports.MedicalContraindicationFacetTypes = exports.MedicalConditionFacetTypes = void 0;
|
5
|
+
exports.YouTubeTypes = exports.VoyageModels = exports.UnitTypes = exports.TimedPolicyRecurrenceTypes = void 0;
|
6
6
|
/** Alert type */
|
7
7
|
var AlertTypes;
|
8
8
|
(function (AlertTypes) {
|
@@ -146,8 +146,8 @@ var CerebrasModels;
|
|
146
146
|
CerebrasModels["Custom"] = "CUSTOM";
|
147
147
|
/** LLaMA 3.1 8b */
|
148
148
|
CerebrasModels["Llama_3_1_8B"] = "LLAMA_3_1_8B";
|
149
|
-
/** LLaMA 3.
|
150
|
-
CerebrasModels["
|
149
|
+
/** LLaMA 3.3 70b */
|
150
|
+
CerebrasModels["Llama_3_3_70B"] = "LLAMA_3_3_70B";
|
151
151
|
})(CerebrasModels || (exports.CerebrasModels = CerebrasModels = {}));
|
152
152
|
/** Cohere model type */
|
153
153
|
var CohereModels;
|
@@ -779,6 +779,8 @@ var GoogleModels;
|
|
779
779
|
GoogleModels["Gemini_1_5Pro_002"] = "GEMINI_1_5_PRO_002";
|
780
780
|
/** Gemini 2.0 Flash (Experimental) */
|
781
781
|
GoogleModels["Gemini_2_0FlashExperimental"] = "GEMINI_2_0_FLASH_EXPERIMENTAL";
|
782
|
+
/** Gemini 2.0 Flash Thinking (Experimental) */
|
783
|
+
GoogleModels["Gemini_2_0FlashThinkingExperimental"] = "GEMINI_2_0_FLASH_THINKING_EXPERIMENTAL";
|
782
784
|
})(GoogleModels || (exports.GoogleModels = GoogleModels = {}));
|
783
785
|
/** GraphRAG strategies */
|
784
786
|
var GraphStrategyTypes;
|
@@ -797,29 +799,12 @@ var GroqModels;
|
|
797
799
|
GroqModels["Custom"] = "CUSTOM";
|
798
800
|
/** LLaMA 3.1 8b */
|
799
801
|
GroqModels["Llama_3_1_8B"] = "LLAMA_3_1_8B";
|
800
|
-
/**
|
801
|
-
* LLaMA 3.1 70b
|
802
|
-
* @deprecated Use Llama 3.3 70b instead.
|
803
|
-
*/
|
804
|
-
GroqModels["Llama_3_1_70B"] = "LLAMA_3_1_70B";
|
805
|
-
/** LLaMA 3.1 405b */
|
806
|
-
GroqModels["Llama_3_1_405B"] = "LLAMA_3_1_405B";
|
807
802
|
/** LLaMA 3.2 1b Preview */
|
808
803
|
GroqModels["Llama_3_2_1BPreview"] = "LLAMA_3_2_1B_PREVIEW";
|
809
804
|
/** LLaMA 3.2 3b Preview */
|
810
805
|
GroqModels["Llama_3_2_3BPreview"] = "LLAMA_3_2_3B_PREVIEW";
|
811
|
-
/**
|
812
|
-
* LLaMA 3.2 11b Text Preview
|
813
|
-
* @deprecated Use Llama 3.2 11b Vision Preview instead.
|
814
|
-
*/
|
815
|
-
GroqModels["Llama_3_2_11BTextPreview"] = "LLAMA_3_2_11B_TEXT_PREVIEW";
|
816
806
|
/** LLaMA 3.2 11b Vision Preview */
|
817
807
|
GroqModels["Llama_3_2_11BVisionPreview"] = "LLAMA_3_2_11B_VISION_PREVIEW";
|
818
|
-
/**
|
819
|
-
* LLaMA 3.2 90b Text Preview
|
820
|
-
* @deprecated Use Llama 3.2 90b Vision Preview instead.
|
821
|
-
*/
|
822
|
-
GroqModels["Llama_3_2_90BTextPreview"] = "LLAMA_3_2_90B_TEXT_PREVIEW";
|
823
808
|
/** LLaMA 3.2 90b Vision Preview */
|
824
809
|
GroqModels["Llama_3_2_90BVisionPreview"] = "LLAMA_3_2_90B_VISION_PREVIEW";
|
825
810
|
/** LLaMA 3.3 70b */
|
@@ -828,11 +813,6 @@ var GroqModels;
|
|
828
813
|
GroqModels["Llama_3_8B"] = "LLAMA_3_8B";
|
829
814
|
/** LLaMA 3 70b */
|
830
815
|
GroqModels["Llama_3_70B"] = "LLAMA_3_70B";
|
831
|
-
/**
|
832
|
-
* LLaVA 1.5 7B Preview
|
833
|
-
* @deprecated Use Llama 3.2 11b Vision Preview instead.
|
834
|
-
*/
|
835
|
-
GroqModels["Llava_1_5_7BPreview"] = "LLAVA_1_5_7B_PREVIEW";
|
836
816
|
/** Mixtral 8x7b Instruct */
|
837
817
|
GroqModels["Mixtral_8X7BInstruct"] = "MIXTRAL_8X7B_INSTRUCT";
|
838
818
|
})(GroqModels || (exports.GroqModels = GroqModels = {}));
|
@@ -925,6 +905,8 @@ var LinkTypes;
|
|
925
905
|
LinkTypes["Diffbot"] = "DIFFBOT";
|
926
906
|
/** Discord link */
|
927
907
|
LinkTypes["Discord"] = "DISCORD";
|
908
|
+
/** Dropbox link */
|
909
|
+
LinkTypes["Dropbox"] = "DROPBOX";
|
928
910
|
/** Email link */
|
929
911
|
LinkTypes["Email"] = "EMAIL";
|
930
912
|
/** Facebook link */
|
@@ -1502,6 +1484,16 @@ var RevisionStrategyTypes;
|
|
1502
1484
|
/** Prompt LLM to revise completion, and provide updated response */
|
1503
1485
|
RevisionStrategyTypes["Revise"] = "REVISE";
|
1504
1486
|
})(RevisionStrategyTypes || (exports.RevisionStrategyTypes = RevisionStrategyTypes = {}));
|
1487
|
+
/** SDK type */
|
1488
|
+
var SdkTypes;
|
1489
|
+
(function (SdkTypes) {
|
1490
|
+
/** .NET SDK */
|
1491
|
+
SdkTypes["Dotnet"] = "DOTNET";
|
1492
|
+
/** Node.JS SDK */
|
1493
|
+
SdkTypes["NodeJs"] = "NODE_JS";
|
1494
|
+
/** Python SDK */
|
1495
|
+
SdkTypes["Python"] = "PYTHON";
|
1496
|
+
})(SdkTypes || (exports.SdkTypes = SdkTypes = {}));
|
1505
1497
|
/** Search query type */
|
1506
1498
|
var SearchQueryTypes;
|
1507
1499
|
(function (SearchQueryTypes) {
|
@@ -1563,6 +1555,14 @@ var SpecificationTypes;
|
|
1563
1555
|
/** Text embedding */
|
1564
1556
|
SpecificationTypes["TextEmbedding"] = "TEXT_EMBEDDING";
|
1565
1557
|
})(SpecificationTypes || (exports.SpecificationTypes = SpecificationTypes = {}));
|
1558
|
+
/** Storage policy types */
|
1559
|
+
var StoragePolicyTypes;
|
1560
|
+
(function (StoragePolicyTypes) {
|
1561
|
+
/** Archive content indefinitely */
|
1562
|
+
StoragePolicyTypes["Archive"] = "ARCHIVE";
|
1563
|
+
/** Minimize content storage, by removing master rendition upon workflow completion */
|
1564
|
+
StoragePolicyTypes["Minimize"] = "MINIMIZE";
|
1565
|
+
})(StoragePolicyTypes || (exports.StoragePolicyTypes = StoragePolicyTypes = {}));
|
1566
1566
|
/** Summarization type */
|
1567
1567
|
var SummarizationTypes;
|
1568
1568
|
(function (SummarizationTypes) {
|
@@ -1748,8 +1748,12 @@ var VoyageModels;
|
|
1748
1748
|
VoyageModels["Voyage"] = "VOYAGE";
|
1749
1749
|
/** Voyage 3.0 */
|
1750
1750
|
VoyageModels["Voyage_3_0"] = "VOYAGE_3_0";
|
1751
|
+
/** Voyage 3.0 Large */
|
1752
|
+
VoyageModels["Voyage_3_0Large"] = "VOYAGE_3_0_LARGE";
|
1751
1753
|
/** Voyage Code 2.0 */
|
1752
1754
|
VoyageModels["VoyageCode_2_0"] = "VOYAGE_CODE_2_0";
|
1755
|
+
/** Voyage Code 3.0 */
|
1756
|
+
VoyageModels["VoyageCode_3_0"] = "VOYAGE_CODE_3_0";
|
1753
1757
|
/** Voyage Finance 2.0 */
|
1754
1758
|
VoyageModels["VoyageFinance_2_0"] = "VOYAGE_FINANCE_2_0";
|
1755
1759
|
/** Voyage Law 2.0 */
|