graphlit-client 1.0.20240820001 → 1.0.20240903001
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.
@@ -2590,6 +2590,11 @@ exports.GetFeed = (0, graphql_tag_1.default) `
|
|
2590
2590
|
allowedPaths
|
2591
2591
|
excludedPaths
|
2592
2592
|
}
|
2593
|
+
search {
|
2594
|
+
readLimit
|
2595
|
+
type
|
2596
|
+
text
|
2597
|
+
}
|
2593
2598
|
reddit {
|
2594
2599
|
readLimit
|
2595
2600
|
subredditName
|
@@ -2762,6 +2767,11 @@ exports.QueryFeeds = (0, graphql_tag_1.default) `
|
|
2762
2767
|
allowedPaths
|
2763
2768
|
excludedPaths
|
2764
2769
|
}
|
2770
|
+
search {
|
2771
|
+
readLimit
|
2772
|
+
type
|
2773
|
+
text
|
2774
|
+
}
|
2765
2775
|
reddit {
|
2766
2776
|
readLimit
|
2767
2777
|
subredditName
|
@@ -4285,6 +4295,9 @@ exports.LookupCredits = (0, graphql_tag_1.default) `
|
|
4285
4295
|
credits
|
4286
4296
|
storageRatio
|
4287
4297
|
computeRatio
|
4298
|
+
embeddingRatio
|
4299
|
+
completionRatio
|
4300
|
+
ingestionRatio
|
4288
4301
|
indexingRatio
|
4289
4302
|
preparationRatio
|
4290
4303
|
extractionRatio
|
@@ -4339,6 +4352,9 @@ exports.QueryCredits = (0, graphql_tag_1.default) `
|
|
4339
4352
|
credits
|
4340
4353
|
storageRatio
|
4341
4354
|
computeRatio
|
4355
|
+
embeddingRatio
|
4356
|
+
completionRatio
|
4357
|
+
ingestionRatio
|
4342
4358
|
indexingRatio
|
4343
4359
|
preparationRatio
|
4344
4360
|
extractionRatio
|
@@ -5127,6 +5143,9 @@ exports.CreateWorkflow = (0, graphql_tag_1.default) `
|
|
5127
5143
|
connector {
|
5128
5144
|
type
|
5129
5145
|
enrichedTypes
|
5146
|
+
fhir {
|
5147
|
+
endpoint
|
5148
|
+
}
|
5130
5149
|
}
|
5131
5150
|
}
|
5132
5151
|
}
|
@@ -5299,6 +5318,9 @@ exports.GetWorkflow = (0, graphql_tag_1.default) `
|
|
5299
5318
|
connector {
|
5300
5319
|
type
|
5301
5320
|
enrichedTypes
|
5321
|
+
fhir {
|
5322
|
+
endpoint
|
5323
|
+
}
|
5302
5324
|
}
|
5303
5325
|
}
|
5304
5326
|
}
|
@@ -5444,6 +5466,9 @@ exports.QueryWorkflows = (0, graphql_tag_1.default) `
|
|
5444
5466
|
connector {
|
5445
5467
|
type
|
5446
5468
|
enrichedTypes
|
5469
|
+
fhir {
|
5470
|
+
endpoint
|
5471
|
+
}
|
5447
5472
|
}
|
5448
5473
|
}
|
5449
5474
|
}
|
@@ -5584,6 +5609,9 @@ exports.UpdateWorkflow = (0, graphql_tag_1.default) `
|
|
5584
5609
|
connector {
|
5585
5610
|
type
|
5586
5611
|
enrichedTypes
|
5612
|
+
fhir {
|
5613
|
+
endpoint
|
5614
|
+
}
|
5587
5615
|
}
|
5588
5616
|
}
|
5589
5617
|
}
|
@@ -565,8 +565,15 @@ export declare enum AzureDocumentIntelligenceModels {
|
|
565
565
|
UsTaxFormW2 = "US_TAX_FORM_W2"
|
566
566
|
}
|
567
567
|
export declare enum AzureDocumentIntelligenceVersions {
|
568
|
+
/** 2023-07-31 GA API */
|
568
569
|
V2023_07_31 = "V2023_07_31",
|
569
|
-
|
570
|
+
/**
|
571
|
+
* 2024-02-29 Preview API
|
572
|
+
* @deprecated Use V2024_07_31_PREVIEW instead.
|
573
|
+
*/
|
574
|
+
V2024_02_29Preview = "V2024_02_29_PREVIEW",
|
575
|
+
/** 2024-07-31 Preview API */
|
576
|
+
V2024_07_31Preview = "V2024_07_31_PREVIEW"
|
570
577
|
}
|
571
578
|
/** Represents the Azure Document Intelligence preparation properties. */
|
572
579
|
export type AzureDocumentPreparationProperties = {
|
@@ -904,10 +911,18 @@ export type CohereModelPropertiesUpdateInput = {
|
|
904
911
|
};
|
905
912
|
/** Cohere model type */
|
906
913
|
export declare enum CohereModels {
|
907
|
-
/** Command R */
|
914
|
+
/** Command R (Latest) */
|
908
915
|
CommandR = "COMMAND_R",
|
909
|
-
/** Command R
|
916
|
+
/** Command R (2024-03 version) */
|
917
|
+
CommandR_202403 = "COMMAND_R_202403",
|
918
|
+
/** Command R (2024-08 version) */
|
919
|
+
CommandR_202408 = "COMMAND_R_202408",
|
920
|
+
/** Command R+ (Latest) */
|
910
921
|
CommandRPlus = "COMMAND_R_PLUS",
|
922
|
+
/** Command R+ (2024-04 version) */
|
923
|
+
CommandRPlus_202404 = "COMMAND_R_PLUS_202404",
|
924
|
+
/** Command R+ (2024-08 version) */
|
925
|
+
CommandRPlus_202408 = "COMMAND_R_PLUS_202408",
|
911
926
|
/** Developer-specified model */
|
912
927
|
Custom = "CUSTOM"
|
913
928
|
}
|
@@ -1075,7 +1090,7 @@ export type Content = {
|
|
1075
1090
|
/** The content language metadata. */
|
1076
1091
|
language?: Maybe<LanguageMetadata>;
|
1077
1092
|
/** The extracted hyperlinks. */
|
1078
|
-
links?: Maybe<Array<
|
1093
|
+
links?: Maybe<Array<LinkReference>>;
|
1079
1094
|
/** The geo-location of the content. */
|
1080
1095
|
location?: Maybe<Point>;
|
1081
1096
|
/** The content text formatted as Markdown. Contains either the extracted text for files, posts, etc., or the raw text for messages, emails, etc. */
|
@@ -2313,6 +2328,8 @@ export type EntityEnrichmentConnector = {
|
|
2313
2328
|
__typename?: 'EntityEnrichmentConnector';
|
2314
2329
|
/** The observable entity types to be enriched. */
|
2315
2330
|
enrichedTypes?: Maybe<Array<Maybe<ObservableTypes>>>;
|
2331
|
+
/** The specific properties for FHIR medical entity enrichment. */
|
2332
|
+
fhir?: Maybe<FhirEnrichmentProperties>;
|
2316
2333
|
/** The entity enrichment service type. */
|
2317
2334
|
type?: Maybe<EntityEnrichmentServiceTypes>;
|
2318
2335
|
};
|
@@ -2320,6 +2337,8 @@ export type EntityEnrichmentConnector = {
|
|
2320
2337
|
export type EntityEnrichmentConnectorInput = {
|
2321
2338
|
/** The observable entity types to be enriched. */
|
2322
2339
|
enrichedTypes?: InputMaybe<Array<InputMaybe<ObservableTypes>>>;
|
2340
|
+
/** The specific properties for FHIR medical entity enrichment. */
|
2341
|
+
fhir?: InputMaybe<FhirEnrichmentPropertiesInput>;
|
2323
2342
|
/** The entity enrichment service type. */
|
2324
2343
|
type: EntityEnrichmentServiceTypes;
|
2325
2344
|
};
|
@@ -2329,6 +2348,8 @@ export declare enum EntityEnrichmentServiceTypes {
|
|
2329
2348
|
Crunchbase = "CRUNCHBASE",
|
2330
2349
|
/** Diffbot */
|
2331
2350
|
Diffbot = "DIFFBOT",
|
2351
|
+
/** FHIR */
|
2352
|
+
Fhir = "FHIR",
|
2332
2353
|
/** Wikipedia */
|
2333
2354
|
Wikipedia = "WIKIPEDIA"
|
2334
2355
|
}
|
@@ -2343,7 +2364,7 @@ export type EntityExtractionConnector = {
|
|
2343
2364
|
contentTypes?: Maybe<Array<ContentTypes>>;
|
2344
2365
|
/** The maximum number of observable entities to be extracted, per entity type. Defaults to 100. */
|
2345
2366
|
extractedCount?: Maybe<Scalars['Int']['output']>;
|
2346
|
-
/** The observable entity types to be extracted, defaults to all
|
2367
|
+
/** The observable entity types to be extracted, defaults to all observable types. */
|
2347
2368
|
extractedTypes?: Maybe<Array<ObservableTypes>>;
|
2348
2369
|
/** The file types to allow for entity extraction. */
|
2349
2370
|
fileTypes?: Maybe<Array<FileTypes>>;
|
@@ -2369,7 +2390,7 @@ export type EntityExtractionConnectorInput = {
|
|
2369
2390
|
contentTypes?: InputMaybe<Array<ContentTypes>>;
|
2370
2391
|
/** The maximum number of observable entities to be extracted, per entity type. Defaults to 100. */
|
2371
2392
|
extractedCount?: InputMaybe<Scalars['Int']['input']>;
|
2372
|
-
/** The observable entity types to be extracted, defaults to all
|
2393
|
+
/** The observable entity types to be extracted, defaults to all observable types. */
|
2373
2394
|
extractedTypes?: InputMaybe<Array<ObservableTypes>>;
|
2374
2395
|
/** The file types to allow for entity extraction. */
|
2375
2396
|
fileTypes?: InputMaybe<Array<FileTypes>>;
|
@@ -2577,7 +2598,7 @@ export type Event = {
|
|
2577
2598
|
/** If the event is accessible for free. */
|
2578
2599
|
isAccessibleForFree?: Maybe<Scalars['Boolean']['output']>;
|
2579
2600
|
/** The extracted hyperlinks. */
|
2580
|
-
links?: Maybe<Array<Maybe<
|
2601
|
+
links?: Maybe<Array<Maybe<LinkReference>>>;
|
2581
2602
|
/** The geo-location of the event. */
|
2582
2603
|
location?: Maybe<Point>;
|
2583
2604
|
/** The event maximum price. */
|
@@ -2816,6 +2837,17 @@ export type ExtractionWorkflowStageInput = {
|
|
2816
2837
|
/** The jobs for the extraction workflow stage. */
|
2817
2838
|
jobs?: InputMaybe<Array<InputMaybe<ExtractionWorkflowJobInput>>>;
|
2818
2839
|
};
|
2840
|
+
/** Represents an FHIR entity enrichment connector. */
|
2841
|
+
export type FhirEnrichmentProperties = {
|
2842
|
+
__typename?: 'FHIREnrichmentProperties';
|
2843
|
+
/** The FHIR API endpoint. */
|
2844
|
+
endpoint?: Maybe<Scalars['URL']['output']>;
|
2845
|
+
};
|
2846
|
+
/** Represents an FHIR entity enrichment connector. */
|
2847
|
+
export type FhirEnrichmentPropertiesInput = {
|
2848
|
+
/** The FHIR API endpoint. */
|
2849
|
+
endpoint?: InputMaybe<Scalars['URL']['input']>;
|
2850
|
+
};
|
2819
2851
|
/** Facet value types */
|
2820
2852
|
export declare enum FacetValueTypes {
|
2821
2853
|
/** Facet by object */
|
@@ -2870,6 +2902,8 @@ export type Feed = {
|
|
2870
2902
|
rss?: Maybe<RssFeedProperties>;
|
2871
2903
|
/** The feed schedule policy. */
|
2872
2904
|
schedulePolicy?: Maybe<FeedSchedulePolicy>;
|
2905
|
+
/** The web search feed properties. */
|
2906
|
+
search?: Maybe<SearchFeedProperties>;
|
2873
2907
|
/** The site feed properties. */
|
2874
2908
|
site?: Maybe<SiteFeedProperties>;
|
2875
2909
|
/** The Slack feed properties. */
|
@@ -2954,6 +2988,8 @@ export type FeedInput = {
|
|
2954
2988
|
rss?: InputMaybe<RssFeedPropertiesInput>;
|
2955
2989
|
/** The feed schedule policy. */
|
2956
2990
|
schedulePolicy?: InputMaybe<FeedSchedulePolicyInput>;
|
2991
|
+
/** The web search feed properties. */
|
2992
|
+
search?: InputMaybe<SearchFeedPropertiesInput>;
|
2957
2993
|
/** The site feed properties. */
|
2958
2994
|
site?: InputMaybe<SiteFeedPropertiesInput>;
|
2959
2995
|
/** The Slack feed properties. */
|
@@ -3038,6 +3074,8 @@ export declare enum FeedTypes {
|
|
3038
3074
|
Reddit = "REDDIT",
|
3039
3075
|
/** RSS feed */
|
3040
3076
|
Rss = "RSS",
|
3077
|
+
/** Web Search feed */
|
3078
|
+
Search = "SEARCH",
|
3041
3079
|
/** Cloud storage site feed */
|
3042
3080
|
Site = "SITE",
|
3043
3081
|
/** Slack channel feed */
|
@@ -3071,6 +3109,8 @@ export type FeedUpdateInput = {
|
|
3071
3109
|
rss?: InputMaybe<RssFeedPropertiesUpdateInput>;
|
3072
3110
|
/** The feed schedule policy. */
|
3073
3111
|
schedulePolicy?: InputMaybe<FeedSchedulePolicyInput>;
|
3112
|
+
/** The web search feed properties. */
|
3113
|
+
search?: InputMaybe<SearchFeedPropertiesUpdateInput>;
|
3074
3114
|
/** The site feed properties. */
|
3075
3115
|
site?: InputMaybe<SiteFeedPropertiesUpdateInput>;
|
3076
3116
|
/** The Slack feed properties. */
|
@@ -3357,7 +3397,7 @@ export type GraphStrategy = {
|
|
3357
3397
|
__typename?: 'GraphStrategy';
|
3358
3398
|
/** Whether to generate the knowledge graph nodes and edges with the conversation response, defaults to False. */
|
3359
3399
|
generateGraph?: Maybe<Scalars['Boolean']['output']>;
|
3360
|
-
/** The maximum number of observed entities to provide with prompt context, defaults to
|
3400
|
+
/** The maximum number of observed entities to provide with prompt context, defaults to 100. */
|
3361
3401
|
observableLimit?: Maybe<Scalars['Int']['output']>;
|
3362
3402
|
/** The GraphRAG strategy type. */
|
3363
3403
|
type: GraphStrategyTypes;
|
@@ -3366,7 +3406,7 @@ export type GraphStrategy = {
|
|
3366
3406
|
export type GraphStrategyInput = {
|
3367
3407
|
/** Whether to generate the knowledge graph nodes and edges with the conversation response, defaults to False. */
|
3368
3408
|
generateGraph?: InputMaybe<Scalars['Boolean']['input']>;
|
3369
|
-
/** The maximum number of observed entities to provide with prompt context, defaults to
|
3409
|
+
/** The maximum number of observed entities to provide with prompt context, defaults to 100. */
|
3370
3410
|
observableLimit?: InputMaybe<Scalars['Int']['input']>;
|
3371
3411
|
/** The GraphRAG strategy type. */
|
3372
3412
|
type?: InputMaybe<GraphStrategyTypes>;
|
@@ -3384,7 +3424,7 @@ export declare enum GraphStrategyTypes {
|
|
3384
3424
|
export type GraphStrategyUpdateInput = {
|
3385
3425
|
/** Whether to generate the knowledge graph nodes and edges with the conversation response, defaults to False. */
|
3386
3426
|
generateGraph?: InputMaybe<Scalars['Boolean']['input']>;
|
3387
|
-
/** The maximum number of observed entities to provide with prompt context, defaults to
|
3427
|
+
/** The maximum number of observed entities to provide with prompt context, defaults to 100. */
|
3388
3428
|
observableLimit?: InputMaybe<Scalars['Int']['input']>;
|
3389
3429
|
/** The GraphRAG strategy type. */
|
3390
3430
|
type?: InputMaybe<GraphStrategyTypes>;
|
@@ -4003,8 +4043,8 @@ export type LinearFeedPropertiesUpdateInput = {
|
|
4003
4043
|
project?: InputMaybe<Scalars['ID']['input']>;
|
4004
4044
|
};
|
4005
4045
|
/** Represents a hyperlink. */
|
4006
|
-
export type
|
4007
|
-
__typename?: '
|
4046
|
+
export type LinkReference = {
|
4047
|
+
__typename?: 'LinkReference';
|
4008
4048
|
/** The hyperlink type. */
|
4009
4049
|
linkType?: Maybe<LinkTypes>;
|
4010
4050
|
/** The hyperlink URI. */
|
@@ -4033,7 +4073,7 @@ export type LinkStrategy = {
|
|
4033
4073
|
excludedLinks?: Maybe<Array<LinkTypes>>;
|
4034
4074
|
/** The list of regular expressions for URL paths to not be crawled, i.e. "^/internal/private/.*". */
|
4035
4075
|
excludedPaths?: Maybe<Array<Scalars['String']['output']>>;
|
4036
|
-
/** The maximum number of links to be crawled. */
|
4076
|
+
/** The maximum number of links to be crawled, defaults to 25. */
|
4037
4077
|
maximumLinks?: Maybe<Scalars['Int']['output']>;
|
4038
4078
|
};
|
4039
4079
|
/** Represents the content hyperlink strategy. */
|
@@ -4058,7 +4098,7 @@ export type LinkStrategyInput = {
|
|
4058
4098
|
excludedLinks?: InputMaybe<Array<LinkTypes>>;
|
4059
4099
|
/** The list of regular expressions for URL paths to not be crawled, i.e. "^/internal/private/.*". */
|
4060
4100
|
excludedPaths?: InputMaybe<Array<Scalars['String']['input']>>;
|
4061
|
-
/** The maximum number of links to be crawled. */
|
4101
|
+
/** The maximum number of links to be crawled, defaults to 25. */
|
4062
4102
|
maximumLinks?: InputMaybe<Scalars['Int']['input']>;
|
4063
4103
|
};
|
4064
4104
|
/** URI link type */
|
@@ -4213,7 +4253,7 @@ export type MedicalCondition = {
|
|
4213
4253
|
/** The medicalcondition external identifier. */
|
4214
4254
|
identifier?: Maybe<Scalars['String']['output']>;
|
4215
4255
|
/** The extracted hyperlinks. */
|
4216
|
-
links?: Maybe<Array<Maybe<
|
4256
|
+
links?: Maybe<Array<Maybe<LinkReference>>>;
|
4217
4257
|
/** The geo-location of the medicalcondition. */
|
4218
4258
|
location?: Maybe<Point>;
|
4219
4259
|
/** The modified date of the medicalcondition. */
|
@@ -4354,7 +4394,7 @@ export type MedicalContraindication = {
|
|
4354
4394
|
/** The medicalcontraindication external identifier. */
|
4355
4395
|
identifier?: Maybe<Scalars['String']['output']>;
|
4356
4396
|
/** The extracted hyperlinks. */
|
4357
|
-
links?: Maybe<Array<Maybe<
|
4397
|
+
links?: Maybe<Array<Maybe<LinkReference>>>;
|
4358
4398
|
/** The geo-location of the medicalcontraindication. */
|
4359
4399
|
location?: Maybe<Point>;
|
4360
4400
|
/** The modified date of the medicalcontraindication. */
|
@@ -4495,7 +4535,7 @@ export type MedicalDevice = {
|
|
4495
4535
|
/** The medicaldevice external identifier. */
|
4496
4536
|
identifier?: Maybe<Scalars['String']['output']>;
|
4497
4537
|
/** The extracted hyperlinks. */
|
4498
|
-
links?: Maybe<Array<Maybe<
|
4538
|
+
links?: Maybe<Array<Maybe<LinkReference>>>;
|
4499
4539
|
/** The geo-location of the medicaldevice. */
|
4500
4540
|
location?: Maybe<Point>;
|
4501
4541
|
/** The modified date of the medicaldevice. */
|
@@ -4636,7 +4676,7 @@ export type MedicalDrug = {
|
|
4636
4676
|
/** The medicaldrug external identifier. */
|
4637
4677
|
identifier?: Maybe<Scalars['String']['output']>;
|
4638
4678
|
/** The extracted hyperlinks. */
|
4639
|
-
links?: Maybe<Array<Maybe<
|
4679
|
+
links?: Maybe<Array<Maybe<LinkReference>>>;
|
4640
4680
|
/** The geo-location of the medicaldrug. */
|
4641
4681
|
location?: Maybe<Point>;
|
4642
4682
|
/** The modified date of the medicaldrug. */
|
@@ -4672,7 +4712,7 @@ export type MedicalDrugClass = {
|
|
4672
4712
|
/** The medicaldrugclass external identifier. */
|
4673
4713
|
identifier?: Maybe<Scalars['String']['output']>;
|
4674
4714
|
/** The extracted hyperlinks. */
|
4675
|
-
links?: Maybe<Array<Maybe<
|
4715
|
+
links?: Maybe<Array<Maybe<LinkReference>>>;
|
4676
4716
|
/** The geo-location of the medicaldrugclass. */
|
4677
4717
|
location?: Maybe<Point>;
|
4678
4718
|
/** The modified date of the medicaldrugclass. */
|
@@ -4918,7 +4958,7 @@ export type MedicalGuideline = {
|
|
4918
4958
|
/** The medicalguideline external identifier. */
|
4919
4959
|
identifier?: Maybe<Scalars['String']['output']>;
|
4920
4960
|
/** The extracted hyperlinks. */
|
4921
|
-
links?: Maybe<Array<Maybe<
|
4961
|
+
links?: Maybe<Array<Maybe<LinkReference>>>;
|
4922
4962
|
/** The geo-location of the medicalguideline. */
|
4923
4963
|
location?: Maybe<Point>;
|
4924
4964
|
/** The modified date of the medicalguideline. */
|
@@ -5059,7 +5099,7 @@ export type MedicalIndication = {
|
|
5059
5099
|
/** The medicalindication external identifier. */
|
5060
5100
|
identifier?: Maybe<Scalars['String']['output']>;
|
5061
5101
|
/** The extracted hyperlinks. */
|
5062
|
-
links?: Maybe<Array<Maybe<
|
5102
|
+
links?: Maybe<Array<Maybe<LinkReference>>>;
|
5063
5103
|
/** The geo-location of the medicalindication. */
|
5064
5104
|
location?: Maybe<Point>;
|
5065
5105
|
/** The modified date of the medicalindication. */
|
@@ -5200,7 +5240,7 @@ export type MedicalProcedure = {
|
|
5200
5240
|
/** The medicalprocedure external identifier. */
|
5201
5241
|
identifier?: Maybe<Scalars['String']['output']>;
|
5202
5242
|
/** The extracted hyperlinks. */
|
5203
|
-
links?: Maybe<Array<Maybe<
|
5243
|
+
links?: Maybe<Array<Maybe<LinkReference>>>;
|
5204
5244
|
/** The geo-location of the medicalprocedure. */
|
5205
5245
|
location?: Maybe<Point>;
|
5206
5246
|
/** The modified date of the medicalprocedure. */
|
@@ -5343,7 +5383,7 @@ export type MedicalStudy = {
|
|
5343
5383
|
/** The medicalstudy external identifier. */
|
5344
5384
|
identifier?: Maybe<Scalars['String']['output']>;
|
5345
5385
|
/** The extracted hyperlinks. */
|
5346
|
-
links?: Maybe<Array<Maybe<
|
5386
|
+
links?: Maybe<Array<Maybe<LinkReference>>>;
|
5347
5387
|
/** The geo-location of the medicalstudy. */
|
5348
5388
|
location?: Maybe<Point>;
|
5349
5389
|
/** The modified date of the medicalstudy. */
|
@@ -5490,7 +5530,7 @@ export type MedicalTest = {
|
|
5490
5530
|
/** The medicaltest external identifier. */
|
5491
5531
|
identifier?: Maybe<Scalars['String']['output']>;
|
5492
5532
|
/** The extracted hyperlinks. */
|
5493
|
-
links?: Maybe<Array<Maybe<
|
5533
|
+
links?: Maybe<Array<Maybe<LinkReference>>>;
|
5494
5534
|
/** The geo-location of the medicaltest. */
|
5495
5535
|
location?: Maybe<Point>;
|
5496
5536
|
/** The modified date of the medicaltest. */
|
@@ -5631,7 +5671,7 @@ export type MedicalTherapy = {
|
|
5631
5671
|
/** The medicaltherapy external identifier. */
|
5632
5672
|
identifier?: Maybe<Scalars['String']['output']>;
|
5633
5673
|
/** The extracted hyperlinks. */
|
5634
|
-
links?: Maybe<Array<Maybe<
|
5674
|
+
links?: Maybe<Array<Maybe<LinkReference>>>;
|
5635
5675
|
/** The geo-location of the medicaltherapy. */
|
5636
5676
|
location?: Maybe<Point>;
|
5637
5677
|
/** The modified date of the medicaltherapy. */
|
@@ -7427,27 +7467,39 @@ export type OpenAiModelPropertiesUpdateInput = {
|
|
7427
7467
|
export declare enum OpenAiModels {
|
7428
7468
|
/** Developer-specified model */
|
7429
7469
|
Custom = "CUSTOM",
|
7430
|
-
/**
|
7470
|
+
/**
|
7471
|
+
* GPT-4 (Latest)
|
7472
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o model instead.
|
7473
|
+
*/
|
7431
7474
|
Gpt4 = "GPT4",
|
7432
|
-
/** GPT-4o 128k (
|
7475
|
+
/** GPT-4o 128k (Latest) */
|
7433
7476
|
Gpt4O_128K = "GPT4O_128K",
|
7434
7477
|
/** GPT-4o 128k (2024-05-13 version) */
|
7435
7478
|
Gpt4O_128K_20240513 = "GPT4O_128K_20240513",
|
7436
7479
|
/** GPT-4o 128k (2024-08-06 version) */
|
7437
7480
|
Gpt4O_128K_20240806 = "GPT4O_128K_20240806",
|
7438
|
-
/** ChatGPT-4o 128k (
|
7481
|
+
/** ChatGPT-4o 128k (Latest) */
|
7439
7482
|
Gpt4OChat_128K = "GPT4O_CHAT_128K",
|
7440
|
-
/** GPT-4o Mini 128k (
|
7483
|
+
/** GPT-4o Mini 128k (Latest) */
|
7441
7484
|
Gpt4OMini_128K = "GPT4O_MINI_128K",
|
7442
7485
|
/** GPT-4o Mini 128k (2024-07-18 version) */
|
7443
7486
|
Gpt4OMini_128K_20240718 = "GPT4O_MINI_128K_20240718",
|
7444
|
-
/**
|
7487
|
+
/**
|
7488
|
+
* GPT-4 (0613 version)
|
7489
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o model instead.
|
7490
|
+
*/
|
7445
7491
|
Gpt4_0613 = "GPT4_0613",
|
7446
|
-
/**
|
7492
|
+
/**
|
7493
|
+
* GPT-4 32k (Latest)
|
7494
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o model instead.
|
7495
|
+
*/
|
7447
7496
|
Gpt4_32K = "GPT4_32K",
|
7448
|
-
/**
|
7497
|
+
/**
|
7498
|
+
* GPT-4 32k (0613 version)
|
7499
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o model instead.
|
7500
|
+
*/
|
7449
7501
|
Gpt4_32K_0613 = "GPT4_32K_0613",
|
7450
|
-
/** GPT-4 Turbo 128k (Latest
|
7502
|
+
/** GPT-4 Turbo 128k (Latest) */
|
7451
7503
|
Gpt4Turbo_128K = "GPT4_TURBO_128K",
|
7452
7504
|
/** GPT-4 Turbo 128k (0125 version) */
|
7453
7505
|
Gpt4Turbo_128K_0125 = "GPT4_TURBO_128K_0125",
|
@@ -7455,27 +7507,45 @@ export declare enum OpenAiModels {
|
|
7455
7507
|
Gpt4Turbo_128K_1106 = "GPT4_TURBO_128K_1106",
|
7456
7508
|
/** GPT-4 Turbo 128k (2024-04-09 version) */
|
7457
7509
|
Gpt4Turbo_128K_20240409 = "GPT4_TURBO_128K_20240409",
|
7458
|
-
/**
|
7510
|
+
/**
|
7511
|
+
* GPT-4 Turbo Vision 128k (Latest)
|
7512
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o model instead.
|
7513
|
+
*/
|
7459
7514
|
Gpt4TurboVision_128K = "GPT4_TURBO_VISION_128K",
|
7460
|
-
/**
|
7515
|
+
/**
|
7516
|
+
* GPT-4 Turbo Vision 128k (1106 version)
|
7517
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o model instead.
|
7518
|
+
*/
|
7461
7519
|
Gpt4TurboVision_128K_1106 = "GPT4_TURBO_VISION_128K_1106",
|
7462
7520
|
/**
|
7463
|
-
* GPT-3.5 Turbo (Latest
|
7464
|
-
* @deprecated OpenAI
|
7521
|
+
* GPT-3.5 Turbo (Latest)
|
7522
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o Mini model instead.
|
7465
7523
|
*/
|
7466
7524
|
Gpt35Turbo = "GPT35_TURBO",
|
7467
7525
|
/**
|
7468
7526
|
* GPT-3.5 Turbo (0613 version)
|
7469
|
-
* @deprecated OpenAI
|
7527
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o Mini model instead.
|
7470
7528
|
*/
|
7471
7529
|
Gpt35Turbo_0613 = "GPT35_TURBO_0613",
|
7472
|
-
/**
|
7530
|
+
/**
|
7531
|
+
* GPT-3.5 Turbo 16k (Latest)
|
7532
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o Mini model instead.
|
7533
|
+
*/
|
7473
7534
|
Gpt35Turbo_16K = "GPT35_TURBO_16K",
|
7474
|
-
/**
|
7535
|
+
/**
|
7536
|
+
* GPT-3.5 Turbo 16k (0125 version)
|
7537
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o Mini model instead.
|
7538
|
+
*/
|
7475
7539
|
Gpt35Turbo_16K_0125 = "GPT35_TURBO_16K_0125",
|
7476
|
-
/**
|
7540
|
+
/**
|
7541
|
+
* GPT-3.5 Turbo 16k (0613 version)
|
7542
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o Mini model instead.
|
7543
|
+
*/
|
7477
7544
|
Gpt35Turbo_16K_0613 = "GPT35_TURBO_16K_0613",
|
7478
|
-
/**
|
7545
|
+
/**
|
7546
|
+
* GPT-3.5 Turbo 16k (1106 version)
|
7547
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o Mini model instead.
|
7548
|
+
*/
|
7479
7549
|
Gpt35Turbo_16K_1106 = "GPT35_TURBO_16K_1106"
|
7480
7550
|
}
|
7481
7551
|
/** OpenAI vision model detail levels */
|
@@ -7539,7 +7609,7 @@ export type Organization = {
|
|
7539
7609
|
/** The currency of the investment into the organization. */
|
7540
7610
|
investmentCurrency?: Maybe<Scalars['String']['output']>;
|
7541
7611
|
/** The extracted hyperlinks. */
|
7542
|
-
links?: Maybe<Array<Maybe<
|
7612
|
+
links?: Maybe<Array<Maybe<LinkReference>>>;
|
7543
7613
|
/** The geo-location of the organization. */
|
7544
7614
|
location?: Maybe<Point>;
|
7545
7615
|
/** The modified date of the organization. */
|
@@ -7774,7 +7844,7 @@ export type Person = {
|
|
7774
7844
|
/** The person external identifier. */
|
7775
7845
|
identifier?: Maybe<Scalars['String']['output']>;
|
7776
7846
|
/** The extracted hyperlinks. */
|
7777
|
-
links?: Maybe<Array<Maybe<
|
7847
|
+
links?: Maybe<Array<Maybe<LinkReference>>>;
|
7778
7848
|
/** The geo-location of the person. */
|
7779
7849
|
location?: Maybe<Point>;
|
7780
7850
|
/** The modified date of the person. */
|
@@ -7981,7 +8051,7 @@ export type Place = {
|
|
7981
8051
|
/** The place external identifier. */
|
7982
8052
|
identifier?: Maybe<Scalars['String']['output']>;
|
7983
8053
|
/** The extracted hyperlinks. */
|
7984
|
-
links?: Maybe<Array<Maybe<
|
8054
|
+
links?: Maybe<Array<Maybe<LinkReference>>>;
|
7985
8055
|
/** The geo-location of the place. */
|
7986
8056
|
location?: Maybe<Point>;
|
7987
8057
|
/** The modified date of the place. */
|
@@ -8224,7 +8294,7 @@ export type Product = {
|
|
8224
8294
|
/** The product external identifier. */
|
8225
8295
|
identifier?: Maybe<Scalars['String']['output']>;
|
8226
8296
|
/** The extracted hyperlinks. */
|
8227
|
-
links?: Maybe<Array<Maybe<
|
8297
|
+
links?: Maybe<Array<Maybe<LinkReference>>>;
|
8228
8298
|
/** The geo-location of the product. */
|
8229
8299
|
location?: Maybe<Point>;
|
8230
8300
|
/** The product manufacturer. */
|
@@ -8446,6 +8516,8 @@ export type Project = {
|
|
8446
8516
|
/** Represents correlated project credits. */
|
8447
8517
|
export type ProjectCredits = {
|
8448
8518
|
__typename?: 'ProjectCredits';
|
8519
|
+
/** The LLM completion ratio of credits. */
|
8520
|
+
completionRatio?: Maybe<Scalars['Decimal']['output']>;
|
8449
8521
|
/** The compute ratio of credits. */
|
8450
8522
|
computeRatio?: Maybe<Scalars['Decimal']['output']>;
|
8451
8523
|
/** The conversations ratio of credits. */
|
@@ -8454,12 +8526,16 @@ export type ProjectCredits = {
|
|
8454
8526
|
correlationId?: Maybe<Scalars['String']['output']>;
|
8455
8527
|
/** The credits used. */
|
8456
8528
|
credits?: Maybe<Scalars['Decimal']['output']>;
|
8529
|
+
/** The LLM embedding ratio of credits. */
|
8530
|
+
embeddingRatio?: Maybe<Scalars['Decimal']['output']>;
|
8457
8531
|
/** The content enrichment ratio of credits. */
|
8458
8532
|
enrichmentRatio?: Maybe<Scalars['Decimal']['output']>;
|
8459
8533
|
/** The content extraction ratio of credits. */
|
8460
8534
|
extractionRatio?: Maybe<Scalars['Decimal']['output']>;
|
8461
8535
|
/** The content indexing ratio of credits. */
|
8462
8536
|
indexingRatio?: Maybe<Scalars['Decimal']['output']>;
|
8537
|
+
/** The content ingestion ratio of credits. */
|
8538
|
+
ingestionRatio?: Maybe<Scalars['Decimal']['output']>;
|
8463
8539
|
/** The tenant identifier. */
|
8464
8540
|
ownerId?: Maybe<Scalars['ID']['output']>;
|
8465
8541
|
/** The content preparation ratio of credits. */
|
@@ -9793,6 +9869,34 @@ export type RevisionStrategyUpdateInput = {
|
|
9793
9869
|
/** The revision strategy type. */
|
9794
9870
|
type?: InputMaybe<RevisionStrategyTypes>;
|
9795
9871
|
};
|
9872
|
+
/** Represents web search feed properties. */
|
9873
|
+
export type SearchFeedProperties = {
|
9874
|
+
__typename?: 'SearchFeedProperties';
|
9875
|
+
/** The limit of items to be read from feed, defaults to 10. */
|
9876
|
+
readLimit?: Maybe<Scalars['Int']['output']>;
|
9877
|
+
/** The web search text. */
|
9878
|
+
text: Scalars['String']['output'];
|
9879
|
+
/** Search service type, defaults to Tavily. */
|
9880
|
+
type?: Maybe<SearchServiceTypes>;
|
9881
|
+
};
|
9882
|
+
/** Represents web search feed properties. */
|
9883
|
+
export type SearchFeedPropertiesInput = {
|
9884
|
+
/** The limit of items to be read from feed, defaults to 10. */
|
9885
|
+
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
9886
|
+
/** The web search text. */
|
9887
|
+
text: Scalars['String']['input'];
|
9888
|
+
/** Search service type, defaults to Tavily. */
|
9889
|
+
type?: InputMaybe<SearchServiceTypes>;
|
9890
|
+
};
|
9891
|
+
/** Represents web search feed properties. */
|
9892
|
+
export type SearchFeedPropertiesUpdateInput = {
|
9893
|
+
/** The limit of items to be read from feed, defaults to 10. */
|
9894
|
+
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
9895
|
+
/** The web search text. */
|
9896
|
+
text?: InputMaybe<Scalars['String']['input']>;
|
9897
|
+
/** Search service type, defaults to Tavily. */
|
9898
|
+
type?: InputMaybe<SearchServiceTypes>;
|
9899
|
+
};
|
9796
9900
|
/** Search query type */
|
9797
9901
|
export declare enum SearchQueryTypes {
|
9798
9902
|
/** Full (Lucene syntax) */
|
@@ -9800,6 +9904,13 @@ export declare enum SearchQueryTypes {
|
|
9800
9904
|
/** Simple */
|
9801
9905
|
Simple = "SIMPLE"
|
9802
9906
|
}
|
9907
|
+
/** Search feed service type */
|
9908
|
+
export declare enum SearchServiceTypes {
|
9909
|
+
/** Exa search feed service */
|
9910
|
+
Exa = "EXA",
|
9911
|
+
/** Tavily search feed service */
|
9912
|
+
Tavily = "TAVILY"
|
9913
|
+
}
|
9803
9914
|
/** Search type */
|
9804
9915
|
export declare enum SearchTypes {
|
9805
9916
|
/** Hybrid (Vector similarity using search text) */
|
@@ -10537,7 +10648,7 @@ export type TextPage = {
|
|
10537
10648
|
/** The text page index. */
|
10538
10649
|
index?: Maybe<Scalars['Int']['output']>;
|
10539
10650
|
/** The text page hyperlinks. */
|
10540
|
-
links?: Maybe<Array<Maybe<
|
10651
|
+
links?: Maybe<Array<Maybe<LinkReference>>>;
|
10541
10652
|
/** The relevance score of the text page. */
|
10542
10653
|
relevance?: Maybe<Scalars['Float']['output']>;
|
10543
10654
|
/** The text page. */
|
@@ -11898,7 +12009,7 @@ export type GetContentQuery = {
|
|
11898
12009
|
name: string;
|
11899
12010
|
} | null> | null;
|
11900
12011
|
links?: Array<{
|
11901
|
-
__typename?: '
|
12012
|
+
__typename?: 'LinkReference';
|
11902
12013
|
uri?: any | null;
|
11903
12014
|
linkType?: LinkTypes | null;
|
11904
12015
|
}> | null;
|
@@ -12329,7 +12440,7 @@ export type QueryContentsQuery = {
|
|
12329
12440
|
name: string;
|
12330
12441
|
} | null> | null;
|
12331
12442
|
links?: Array<{
|
12332
|
-
__typename?: '
|
12443
|
+
__typename?: 'LinkReference';
|
12333
12444
|
uri?: any | null;
|
12334
12445
|
linkType?: LinkTypes | null;
|
12335
12446
|
}> | null;
|
@@ -12605,7 +12716,7 @@ export type QueryContentsFacetsQuery = {
|
|
12605
12716
|
name: string;
|
12606
12717
|
} | null> | null;
|
12607
12718
|
links?: Array<{
|
12608
|
-
__typename?: '
|
12719
|
+
__typename?: 'LinkReference';
|
12609
12720
|
uri?: any | null;
|
12610
12721
|
linkType?: LinkTypes | null;
|
12611
12722
|
}> | null;
|
@@ -14090,6 +14201,12 @@ export type GetFeedQuery = {
|
|
14090
14201
|
allowedPaths?: Array<string> | null;
|
14091
14202
|
excludedPaths?: Array<string> | null;
|
14092
14203
|
} | null;
|
14204
|
+
search?: {
|
14205
|
+
__typename?: 'SearchFeedProperties';
|
14206
|
+
readLimit?: number | null;
|
14207
|
+
type?: SearchServiceTypes | null;
|
14208
|
+
text: string;
|
14209
|
+
} | null;
|
14093
14210
|
reddit?: {
|
14094
14211
|
__typename?: 'RedditFeedProperties';
|
14095
14212
|
readLimit?: number | null;
|
@@ -14297,6 +14414,12 @@ export type QueryFeedsQuery = {
|
|
14297
14414
|
allowedPaths?: Array<string> | null;
|
14298
14415
|
excludedPaths?: Array<string> | null;
|
14299
14416
|
} | null;
|
14417
|
+
search?: {
|
14418
|
+
__typename?: 'SearchFeedProperties';
|
14419
|
+
readLimit?: number | null;
|
14420
|
+
type?: SearchServiceTypes | null;
|
14421
|
+
text: string;
|
14422
|
+
} | null;
|
14300
14423
|
reddit?: {
|
14301
14424
|
__typename?: 'RedditFeedProperties';
|
14302
14425
|
readLimit?: number | null;
|
@@ -16258,6 +16381,9 @@ export type LookupCreditsQuery = {
|
|
16258
16381
|
credits?: any | null;
|
16259
16382
|
storageRatio?: any | null;
|
16260
16383
|
computeRatio?: any | null;
|
16384
|
+
embeddingRatio?: any | null;
|
16385
|
+
completionRatio?: any | null;
|
16386
|
+
ingestionRatio?: any | null;
|
16261
16387
|
indexingRatio?: any | null;
|
16262
16388
|
preparationRatio?: any | null;
|
16263
16389
|
extractionRatio?: any | null;
|
@@ -16319,6 +16445,9 @@ export type QueryCreditsQuery = {
|
|
16319
16445
|
credits?: any | null;
|
16320
16446
|
storageRatio?: any | null;
|
16321
16447
|
computeRatio?: any | null;
|
16448
|
+
embeddingRatio?: any | null;
|
16449
|
+
completionRatio?: any | null;
|
16450
|
+
ingestionRatio?: any | null;
|
16322
16451
|
indexingRatio?: any | null;
|
16323
16452
|
preparationRatio?: any | null;
|
16324
16453
|
extractionRatio?: any | null;
|
@@ -17264,6 +17393,10 @@ export type CreateWorkflowMutation = {
|
|
17264
17393
|
__typename?: 'EntityEnrichmentConnector';
|
17265
17394
|
type?: EntityEnrichmentServiceTypes | null;
|
17266
17395
|
enrichedTypes?: Array<ObservableTypes | null> | null;
|
17396
|
+
fhir?: {
|
17397
|
+
__typename?: 'FHIREnrichmentProperties';
|
17398
|
+
endpoint?: any | null;
|
17399
|
+
} | null;
|
17267
17400
|
} | null;
|
17268
17401
|
} | null> | null;
|
17269
17402
|
} | null;
|
@@ -17484,6 +17617,10 @@ export type GetWorkflowQuery = {
|
|
17484
17617
|
__typename?: 'EntityEnrichmentConnector';
|
17485
17618
|
type?: EntityEnrichmentServiceTypes | null;
|
17486
17619
|
enrichedTypes?: Array<ObservableTypes | null> | null;
|
17620
|
+
fhir?: {
|
17621
|
+
__typename?: 'FHIREnrichmentProperties';
|
17622
|
+
endpoint?: any | null;
|
17623
|
+
} | null;
|
17487
17624
|
} | null;
|
17488
17625
|
} | null> | null;
|
17489
17626
|
} | null;
|
@@ -17670,6 +17807,10 @@ export type QueryWorkflowsQuery = {
|
|
17670
17807
|
__typename?: 'EntityEnrichmentConnector';
|
17671
17808
|
type?: EntityEnrichmentServiceTypes | null;
|
17672
17809
|
enrichedTypes?: Array<ObservableTypes | null> | null;
|
17810
|
+
fhir?: {
|
17811
|
+
__typename?: 'FHIREnrichmentProperties';
|
17812
|
+
endpoint?: any | null;
|
17813
|
+
} | null;
|
17673
17814
|
} | null;
|
17674
17815
|
} | null> | null;
|
17675
17816
|
} | null;
|
@@ -17849,6 +17990,10 @@ export type UpdateWorkflowMutation = {
|
|
17849
17990
|
__typename?: 'EntityEnrichmentConnector';
|
17850
17991
|
type?: EntityEnrichmentServiceTypes | null;
|
17851
17992
|
enrichedTypes?: Array<ObservableTypes | null> | null;
|
17993
|
+
fhir?: {
|
17994
|
+
__typename?: 'FHIREnrichmentProperties';
|
17995
|
+
endpoint?: any | null;
|
17996
|
+
} | null;
|
17852
17997
|
} | null;
|
17853
17998
|
} | null> | null;
|
17854
17999
|
} | null;
|
@@ -1,7 +1,7 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
exports.MedicalDeviceFacetTypes = exports.MedicalContraindicationFacetTypes = exports.MedicalConditionFacetTypes = exports.MailSensitivity = exports.MailPriority = exports.MailImportance = exports.LinkTypes = exports.LabelFacetTypes = exports.IntegrationServiceTypes = exports.ImageProjectionTypes = exports.H3ResolutionTypes = exports.GroqModels = exports.GraphStrategyTypes = 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.CategoryFacetTypes = exports.BillableMetrics = exports.AzureOpenAiModels = exports.AzureDocumentIntelligenceVersions = exports.AzureDocumentIntelligenceModels = exports.ApplyPolicy = exports.AnthropicModels = exports.AlertTypes = void 0;
|
4
|
-
exports.YouTubeTypes = exports.UnitTypes = exports.TimedPolicyRecurrenceTypes = exports.TimeIntervalTypes = exports.TextTypes = exports.TextRoles = exports.SummarizationTypes = exports.SpecificationTypes = exports.SoftwareFacetTypes = exports.SiteTypes = exports.SharePointAuthenticationTypes = exports.SearchTypes = exports.SearchQueryTypes = 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.ModelServiceTypes = exports.MistralModels = exports.MetadataTypes = exports.MedicalTherapyFacetTypes = exports.MedicalTestFacetTypes = exports.MedicalStudyFacetTypes = exports.MedicalProcedureFacetTypes = exports.MedicalIndicationFacetTypes = exports.MedicalGuidelineFacetTypes = exports.MedicalDrugFacetTypes = exports.MedicalDrugClassFacetTypes = void 0;
|
4
|
+
exports.YouTubeTypes = exports.UnitTypes = exports.TimedPolicyRecurrenceTypes = exports.TimeIntervalTypes = exports.TextTypes = exports.TextRoles = exports.SummarizationTypes = exports.SpecificationTypes = exports.SoftwareFacetTypes = exports.SiteTypes = exports.SharePointAuthenticationTypes = exports.SearchTypes = exports.SearchServiceTypes = exports.SearchQueryTypes = 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.ModelServiceTypes = exports.MistralModels = exports.MetadataTypes = exports.MedicalTherapyFacetTypes = exports.MedicalTestFacetTypes = exports.MedicalStudyFacetTypes = exports.MedicalProcedureFacetTypes = exports.MedicalIndicationFacetTypes = exports.MedicalGuidelineFacetTypes = exports.MedicalDrugFacetTypes = exports.MedicalDrugClassFacetTypes = void 0;
|
5
5
|
/** Alert type */
|
6
6
|
var AlertTypes;
|
7
7
|
(function (AlertTypes) {
|
@@ -75,8 +75,15 @@ var AzureDocumentIntelligenceModels;
|
|
75
75
|
})(AzureDocumentIntelligenceModels || (exports.AzureDocumentIntelligenceModels = AzureDocumentIntelligenceModels = {}));
|
76
76
|
var AzureDocumentIntelligenceVersions;
|
77
77
|
(function (AzureDocumentIntelligenceVersions) {
|
78
|
+
/** 2023-07-31 GA API */
|
78
79
|
AzureDocumentIntelligenceVersions["V2023_07_31"] = "V2023_07_31";
|
80
|
+
/**
|
81
|
+
* 2024-02-29 Preview API
|
82
|
+
* @deprecated Use V2024_07_31_PREVIEW instead.
|
83
|
+
*/
|
79
84
|
AzureDocumentIntelligenceVersions["V2024_02_29Preview"] = "V2024_02_29_PREVIEW";
|
85
|
+
/** 2024-07-31 Preview API */
|
86
|
+
AzureDocumentIntelligenceVersions["V2024_07_31Preview"] = "V2024_07_31_PREVIEW";
|
80
87
|
})(AzureDocumentIntelligenceVersions || (exports.AzureDocumentIntelligenceVersions = AzureDocumentIntelligenceVersions = {}));
|
81
88
|
/** Azure OpenAI model type */
|
82
89
|
var AzureOpenAiModels;
|
@@ -110,10 +117,18 @@ var CategoryFacetTypes;
|
|
110
117
|
/** Cohere model type */
|
111
118
|
var CohereModels;
|
112
119
|
(function (CohereModels) {
|
113
|
-
/** Command R */
|
120
|
+
/** Command R (Latest) */
|
114
121
|
CohereModels["CommandR"] = "COMMAND_R";
|
115
|
-
/** Command R
|
122
|
+
/** Command R (2024-03 version) */
|
123
|
+
CohereModels["CommandR_202403"] = "COMMAND_R_202403";
|
124
|
+
/** Command R (2024-08 version) */
|
125
|
+
CohereModels["CommandR_202408"] = "COMMAND_R_202408";
|
126
|
+
/** Command R+ (Latest) */
|
116
127
|
CohereModels["CommandRPlus"] = "COMMAND_R_PLUS";
|
128
|
+
/** Command R+ (2024-04 version) */
|
129
|
+
CohereModels["CommandRPlus_202404"] = "COMMAND_R_PLUS_202404";
|
130
|
+
/** Command R+ (2024-08 version) */
|
131
|
+
CohereModels["CommandRPlus_202408"] = "COMMAND_R_PLUS_202408";
|
117
132
|
/** Developer-specified model */
|
118
133
|
CohereModels["Custom"] = "CUSTOM";
|
119
134
|
})(CohereModels || (exports.CohereModels = CohereModels = {}));
|
@@ -351,6 +366,8 @@ var EntityEnrichmentServiceTypes;
|
|
351
366
|
EntityEnrichmentServiceTypes["Crunchbase"] = "CRUNCHBASE";
|
352
367
|
/** Diffbot */
|
353
368
|
EntityEnrichmentServiceTypes["Diffbot"] = "DIFFBOT";
|
369
|
+
/** FHIR */
|
370
|
+
EntityEnrichmentServiceTypes["Fhir"] = "FHIR";
|
354
371
|
/** Wikipedia */
|
355
372
|
EntityEnrichmentServiceTypes["Wikipedia"] = "WIKIPEDIA";
|
356
373
|
})(EntityEnrichmentServiceTypes || (exports.EntityEnrichmentServiceTypes = EntityEnrichmentServiceTypes = {}));
|
@@ -604,6 +621,8 @@ var FeedTypes;
|
|
604
621
|
FeedTypes["Reddit"] = "REDDIT";
|
605
622
|
/** RSS feed */
|
606
623
|
FeedTypes["Rss"] = "RSS";
|
624
|
+
/** Web Search feed */
|
625
|
+
FeedTypes["Search"] = "SEARCH";
|
607
626
|
/** Cloud storage site feed */
|
608
627
|
FeedTypes["Site"] = "SITE";
|
609
628
|
/** Slack channel feed */
|
@@ -1041,27 +1060,39 @@ var OpenAiModels;
|
|
1041
1060
|
(function (OpenAiModels) {
|
1042
1061
|
/** Developer-specified model */
|
1043
1062
|
OpenAiModels["Custom"] = "CUSTOM";
|
1044
|
-
/**
|
1063
|
+
/**
|
1064
|
+
* GPT-4 (Latest)
|
1065
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o model instead.
|
1066
|
+
*/
|
1045
1067
|
OpenAiModels["Gpt4"] = "GPT4";
|
1046
|
-
/** GPT-4o 128k (
|
1068
|
+
/** GPT-4o 128k (Latest) */
|
1047
1069
|
OpenAiModels["Gpt4O_128K"] = "GPT4O_128K";
|
1048
1070
|
/** GPT-4o 128k (2024-05-13 version) */
|
1049
1071
|
OpenAiModels["Gpt4O_128K_20240513"] = "GPT4O_128K_20240513";
|
1050
1072
|
/** GPT-4o 128k (2024-08-06 version) */
|
1051
1073
|
OpenAiModels["Gpt4O_128K_20240806"] = "GPT4O_128K_20240806";
|
1052
|
-
/** ChatGPT-4o 128k (
|
1074
|
+
/** ChatGPT-4o 128k (Latest) */
|
1053
1075
|
OpenAiModels["Gpt4OChat_128K"] = "GPT4O_CHAT_128K";
|
1054
|
-
/** GPT-4o Mini 128k (
|
1076
|
+
/** GPT-4o Mini 128k (Latest) */
|
1055
1077
|
OpenAiModels["Gpt4OMini_128K"] = "GPT4O_MINI_128K";
|
1056
1078
|
/** GPT-4o Mini 128k (2024-07-18 version) */
|
1057
1079
|
OpenAiModels["Gpt4OMini_128K_20240718"] = "GPT4O_MINI_128K_20240718";
|
1058
|
-
/**
|
1080
|
+
/**
|
1081
|
+
* GPT-4 (0613 version)
|
1082
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o model instead.
|
1083
|
+
*/
|
1059
1084
|
OpenAiModels["Gpt4_0613"] = "GPT4_0613";
|
1060
|
-
/**
|
1085
|
+
/**
|
1086
|
+
* GPT-4 32k (Latest)
|
1087
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o model instead.
|
1088
|
+
*/
|
1061
1089
|
OpenAiModels["Gpt4_32K"] = "GPT4_32K";
|
1062
|
-
/**
|
1090
|
+
/**
|
1091
|
+
* GPT-4 32k (0613 version)
|
1092
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o model instead.
|
1093
|
+
*/
|
1063
1094
|
OpenAiModels["Gpt4_32K_0613"] = "GPT4_32K_0613";
|
1064
|
-
/** GPT-4 Turbo 128k (Latest
|
1095
|
+
/** GPT-4 Turbo 128k (Latest) */
|
1065
1096
|
OpenAiModels["Gpt4Turbo_128K"] = "GPT4_TURBO_128K";
|
1066
1097
|
/** GPT-4 Turbo 128k (0125 version) */
|
1067
1098
|
OpenAiModels["Gpt4Turbo_128K_0125"] = "GPT4_TURBO_128K_0125";
|
@@ -1069,27 +1100,45 @@ var OpenAiModels;
|
|
1069
1100
|
OpenAiModels["Gpt4Turbo_128K_1106"] = "GPT4_TURBO_128K_1106";
|
1070
1101
|
/** GPT-4 Turbo 128k (2024-04-09 version) */
|
1071
1102
|
OpenAiModels["Gpt4Turbo_128K_20240409"] = "GPT4_TURBO_128K_20240409";
|
1072
|
-
/**
|
1103
|
+
/**
|
1104
|
+
* GPT-4 Turbo Vision 128k (Latest)
|
1105
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o model instead.
|
1106
|
+
*/
|
1073
1107
|
OpenAiModels["Gpt4TurboVision_128K"] = "GPT4_TURBO_VISION_128K";
|
1074
|
-
/**
|
1108
|
+
/**
|
1109
|
+
* GPT-4 Turbo Vision 128k (1106 version)
|
1110
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o model instead.
|
1111
|
+
*/
|
1075
1112
|
OpenAiModels["Gpt4TurboVision_128K_1106"] = "GPT4_TURBO_VISION_128K_1106";
|
1076
1113
|
/**
|
1077
|
-
* GPT-3.5 Turbo (Latest
|
1078
|
-
* @deprecated OpenAI
|
1114
|
+
* GPT-3.5 Turbo (Latest)
|
1115
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o Mini model instead.
|
1079
1116
|
*/
|
1080
1117
|
OpenAiModels["Gpt35Turbo"] = "GPT35_TURBO";
|
1081
1118
|
/**
|
1082
1119
|
* GPT-3.5 Turbo (0613 version)
|
1083
|
-
* @deprecated OpenAI
|
1120
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o Mini model instead.
|
1084
1121
|
*/
|
1085
1122
|
OpenAiModels["Gpt35Turbo_0613"] = "GPT35_TURBO_0613";
|
1086
|
-
/**
|
1123
|
+
/**
|
1124
|
+
* GPT-3.5 Turbo 16k (Latest)
|
1125
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o Mini model instead.
|
1126
|
+
*/
|
1087
1127
|
OpenAiModels["Gpt35Turbo_16K"] = "GPT35_TURBO_16K";
|
1088
|
-
/**
|
1128
|
+
/**
|
1129
|
+
* GPT-3.5 Turbo 16k (0125 version)
|
1130
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o Mini model instead.
|
1131
|
+
*/
|
1089
1132
|
OpenAiModels["Gpt35Turbo_16K_0125"] = "GPT35_TURBO_16K_0125";
|
1090
|
-
/**
|
1133
|
+
/**
|
1134
|
+
* GPT-3.5 Turbo 16k (0613 version)
|
1135
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o Mini model instead.
|
1136
|
+
*/
|
1091
1137
|
OpenAiModels["Gpt35Turbo_16K_0613"] = "GPT35_TURBO_16K_0613";
|
1092
|
-
/**
|
1138
|
+
/**
|
1139
|
+
* GPT-3.5 Turbo 16k (1106 version)
|
1140
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o Mini model instead.
|
1141
|
+
*/
|
1093
1142
|
OpenAiModels["Gpt35Turbo_16K_1106"] = "GPT35_TURBO_16K_1106";
|
1094
1143
|
})(OpenAiModels || (exports.OpenAiModels = OpenAiModels = {}));
|
1095
1144
|
/** OpenAI vision model detail levels */
|
@@ -1271,6 +1320,14 @@ var SearchQueryTypes;
|
|
1271
1320
|
/** Simple */
|
1272
1321
|
SearchQueryTypes["Simple"] = "SIMPLE";
|
1273
1322
|
})(SearchQueryTypes || (exports.SearchQueryTypes = SearchQueryTypes = {}));
|
1323
|
+
/** Search feed service type */
|
1324
|
+
var SearchServiceTypes;
|
1325
|
+
(function (SearchServiceTypes) {
|
1326
|
+
/** Exa search feed service */
|
1327
|
+
SearchServiceTypes["Exa"] = "EXA";
|
1328
|
+
/** Tavily search feed service */
|
1329
|
+
SearchServiceTypes["Tavily"] = "TAVILY";
|
1330
|
+
})(SearchServiceTypes || (exports.SearchServiceTypes = SearchServiceTypes = {}));
|
1274
1331
|
/** Search type */
|
1275
1332
|
var SearchTypes;
|
1276
1333
|
(function (SearchTypes) {
|