graphlit-client 1.0.20240901001 → 1.0.20240906001
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
|
@@ -4287,6 +4297,7 @@ exports.LookupCredits = (0, graphql_tag_1.default) `
|
|
4287
4297
|
computeRatio
|
4288
4298
|
embeddingRatio
|
4289
4299
|
completionRatio
|
4300
|
+
ingestionRatio
|
4290
4301
|
indexingRatio
|
4291
4302
|
preparationRatio
|
4292
4303
|
extractionRatio
|
@@ -4343,6 +4354,7 @@ exports.QueryCredits = (0, graphql_tag_1.default) `
|
|
4343
4354
|
computeRatio
|
4344
4355
|
embeddingRatio
|
4345
4356
|
completionRatio
|
4357
|
+
ingestionRatio
|
4346
4358
|
indexingRatio
|
4347
4359
|
preparationRatio
|
4348
4360
|
extractionRatio
|
@@ -2902,6 +2902,8 @@ export type Feed = {
|
|
2902
2902
|
rss?: Maybe<RssFeedProperties>;
|
2903
2903
|
/** The feed schedule policy. */
|
2904
2904
|
schedulePolicy?: Maybe<FeedSchedulePolicy>;
|
2905
|
+
/** The web search feed properties. */
|
2906
|
+
search?: Maybe<SearchFeedProperties>;
|
2905
2907
|
/** The site feed properties. */
|
2906
2908
|
site?: Maybe<SiteFeedProperties>;
|
2907
2909
|
/** The Slack feed properties. */
|
@@ -2986,6 +2988,8 @@ export type FeedInput = {
|
|
2986
2988
|
rss?: InputMaybe<RssFeedPropertiesInput>;
|
2987
2989
|
/** The feed schedule policy. */
|
2988
2990
|
schedulePolicy?: InputMaybe<FeedSchedulePolicyInput>;
|
2991
|
+
/** The web search feed properties. */
|
2992
|
+
search?: InputMaybe<SearchFeedPropertiesInput>;
|
2989
2993
|
/** The site feed properties. */
|
2990
2994
|
site?: InputMaybe<SiteFeedPropertiesInput>;
|
2991
2995
|
/** The Slack feed properties. */
|
@@ -3070,6 +3074,8 @@ export declare enum FeedTypes {
|
|
3070
3074
|
Reddit = "REDDIT",
|
3071
3075
|
/** RSS feed */
|
3072
3076
|
Rss = "RSS",
|
3077
|
+
/** Web Search feed */
|
3078
|
+
Search = "SEARCH",
|
3073
3079
|
/** Cloud storage site feed */
|
3074
3080
|
Site = "SITE",
|
3075
3081
|
/** Slack channel feed */
|
@@ -3103,6 +3109,8 @@ export type FeedUpdateInput = {
|
|
3103
3109
|
rss?: InputMaybe<RssFeedPropertiesUpdateInput>;
|
3104
3110
|
/** The feed schedule policy. */
|
3105
3111
|
schedulePolicy?: InputMaybe<FeedSchedulePolicyInput>;
|
3112
|
+
/** The web search feed properties. */
|
3113
|
+
search?: InputMaybe<SearchFeedPropertiesUpdateInput>;
|
3106
3114
|
/** The site feed properties. */
|
3107
3115
|
site?: InputMaybe<SiteFeedPropertiesUpdateInput>;
|
3108
3116
|
/** The Slack feed properties. */
|
@@ -3493,6 +3501,8 @@ export declare enum GroqModels {
|
|
3493
3501
|
Llama_3_8B = "LLAMA_3_8B",
|
3494
3502
|
/** LLaMA 3 70b */
|
3495
3503
|
Llama_3_70B = "LLAMA_3_70B",
|
3504
|
+
/** LLaVA 1.5 7B */
|
3505
|
+
Llava_1_5_7B = "LLAVA_1_5_7B",
|
3496
3506
|
/** Mixtral 8x7b Instruct */
|
3497
3507
|
Mixtral_8X7BInstruct = "MIXTRAL_8X7B_INSTRUCT"
|
3498
3508
|
}
|
@@ -7459,7 +7469,10 @@ export type OpenAiModelPropertiesUpdateInput = {
|
|
7459
7469
|
export declare enum OpenAiModels {
|
7460
7470
|
/** Developer-specified model */
|
7461
7471
|
Custom = "CUSTOM",
|
7462
|
-
/**
|
7472
|
+
/**
|
7473
|
+
* GPT-4 (Latest)
|
7474
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o model instead.
|
7475
|
+
*/
|
7463
7476
|
Gpt4 = "GPT4",
|
7464
7477
|
/** GPT-4o 128k (Latest) */
|
7465
7478
|
Gpt4O_128K = "GPT4O_128K",
|
@@ -7473,11 +7486,20 @@ export declare enum OpenAiModels {
|
|
7473
7486
|
Gpt4OMini_128K = "GPT4O_MINI_128K",
|
7474
7487
|
/** GPT-4o Mini 128k (2024-07-18 version) */
|
7475
7488
|
Gpt4OMini_128K_20240718 = "GPT4O_MINI_128K_20240718",
|
7476
|
-
/**
|
7489
|
+
/**
|
7490
|
+
* GPT-4 (0613 version)
|
7491
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o model instead.
|
7492
|
+
*/
|
7477
7493
|
Gpt4_0613 = "GPT4_0613",
|
7478
|
-
/**
|
7494
|
+
/**
|
7495
|
+
* GPT-4 32k (Latest)
|
7496
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o model instead.
|
7497
|
+
*/
|
7479
7498
|
Gpt4_32K = "GPT4_32K",
|
7480
|
-
/**
|
7499
|
+
/**
|
7500
|
+
* GPT-4 32k (0613 version)
|
7501
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o model instead.
|
7502
|
+
*/
|
7481
7503
|
Gpt4_32K_0613 = "GPT4_32K_0613",
|
7482
7504
|
/** GPT-4 Turbo 128k (Latest) */
|
7483
7505
|
Gpt4Turbo_128K = "GPT4_TURBO_128K",
|
@@ -7487,27 +7509,45 @@ export declare enum OpenAiModels {
|
|
7487
7509
|
Gpt4Turbo_128K_1106 = "GPT4_TURBO_128K_1106",
|
7488
7510
|
/** GPT-4 Turbo 128k (2024-04-09 version) */
|
7489
7511
|
Gpt4Turbo_128K_20240409 = "GPT4_TURBO_128K_20240409",
|
7490
|
-
/**
|
7512
|
+
/**
|
7513
|
+
* GPT-4 Turbo Vision 128k (Latest)
|
7514
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o model instead.
|
7515
|
+
*/
|
7491
7516
|
Gpt4TurboVision_128K = "GPT4_TURBO_VISION_128K",
|
7492
|
-
/**
|
7517
|
+
/**
|
7518
|
+
* GPT-4 Turbo Vision 128k (1106 version)
|
7519
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o model instead.
|
7520
|
+
*/
|
7493
7521
|
Gpt4TurboVision_128K_1106 = "GPT4_TURBO_VISION_128K_1106",
|
7494
7522
|
/**
|
7495
7523
|
* GPT-3.5 Turbo (Latest)
|
7496
|
-
* @deprecated OpenAI
|
7524
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o Mini model instead.
|
7497
7525
|
*/
|
7498
7526
|
Gpt35Turbo = "GPT35_TURBO",
|
7499
7527
|
/**
|
7500
7528
|
* GPT-3.5 Turbo (0613 version)
|
7501
|
-
* @deprecated OpenAI
|
7529
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o Mini model instead.
|
7502
7530
|
*/
|
7503
7531
|
Gpt35Turbo_0613 = "GPT35_TURBO_0613",
|
7504
|
-
/**
|
7532
|
+
/**
|
7533
|
+
* GPT-3.5 Turbo 16k (Latest)
|
7534
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o Mini model instead.
|
7535
|
+
*/
|
7505
7536
|
Gpt35Turbo_16K = "GPT35_TURBO_16K",
|
7506
|
-
/**
|
7537
|
+
/**
|
7538
|
+
* GPT-3.5 Turbo 16k (0125 version)
|
7539
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o Mini model instead.
|
7540
|
+
*/
|
7507
7541
|
Gpt35Turbo_16K_0125 = "GPT35_TURBO_16K_0125",
|
7508
|
-
/**
|
7542
|
+
/**
|
7543
|
+
* GPT-3.5 Turbo 16k (0613 version)
|
7544
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o Mini model instead.
|
7545
|
+
*/
|
7509
7546
|
Gpt35Turbo_16K_0613 = "GPT35_TURBO_16K_0613",
|
7510
|
-
/**
|
7547
|
+
/**
|
7548
|
+
* GPT-3.5 Turbo 16k (1106 version)
|
7549
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o Mini model instead.
|
7550
|
+
*/
|
7511
7551
|
Gpt35Turbo_16K_1106 = "GPT35_TURBO_16K_1106"
|
7512
7552
|
}
|
7513
7553
|
/** OpenAI vision model detail levels */
|
@@ -8496,6 +8536,8 @@ export type ProjectCredits = {
|
|
8496
8536
|
extractionRatio?: Maybe<Scalars['Decimal']['output']>;
|
8497
8537
|
/** The content indexing ratio of credits. */
|
8498
8538
|
indexingRatio?: Maybe<Scalars['Decimal']['output']>;
|
8539
|
+
/** The content ingestion ratio of credits. */
|
8540
|
+
ingestionRatio?: Maybe<Scalars['Decimal']['output']>;
|
8499
8541
|
/** The tenant identifier. */
|
8500
8542
|
ownerId?: Maybe<Scalars['ID']['output']>;
|
8501
8543
|
/** The content preparation ratio of credits. */
|
@@ -9829,6 +9871,34 @@ export type RevisionStrategyUpdateInput = {
|
|
9829
9871
|
/** The revision strategy type. */
|
9830
9872
|
type?: InputMaybe<RevisionStrategyTypes>;
|
9831
9873
|
};
|
9874
|
+
/** Represents web search feed properties. */
|
9875
|
+
export type SearchFeedProperties = {
|
9876
|
+
__typename?: 'SearchFeedProperties';
|
9877
|
+
/** The limit of items to be read from feed, defaults to 10. */
|
9878
|
+
readLimit?: Maybe<Scalars['Int']['output']>;
|
9879
|
+
/** The web search text. */
|
9880
|
+
text: Scalars['String']['output'];
|
9881
|
+
/** Search service type, defaults to Tavily. */
|
9882
|
+
type?: Maybe<SearchServiceTypes>;
|
9883
|
+
};
|
9884
|
+
/** Represents web search feed properties. */
|
9885
|
+
export type SearchFeedPropertiesInput = {
|
9886
|
+
/** The limit of items to be read from feed, defaults to 10. */
|
9887
|
+
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
9888
|
+
/** The web search text. */
|
9889
|
+
text: Scalars['String']['input'];
|
9890
|
+
/** Search service type, defaults to Tavily. */
|
9891
|
+
type?: InputMaybe<SearchServiceTypes>;
|
9892
|
+
};
|
9893
|
+
/** Represents web search feed properties. */
|
9894
|
+
export type SearchFeedPropertiesUpdateInput = {
|
9895
|
+
/** The limit of items to be read from feed, defaults to 10. */
|
9896
|
+
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
9897
|
+
/** The web search text. */
|
9898
|
+
text?: InputMaybe<Scalars['String']['input']>;
|
9899
|
+
/** Search service type, defaults to Tavily. */
|
9900
|
+
type?: InputMaybe<SearchServiceTypes>;
|
9901
|
+
};
|
9832
9902
|
/** Search query type */
|
9833
9903
|
export declare enum SearchQueryTypes {
|
9834
9904
|
/** Full (Lucene syntax) */
|
@@ -9836,6 +9906,13 @@ export declare enum SearchQueryTypes {
|
|
9836
9906
|
/** Simple */
|
9837
9907
|
Simple = "SIMPLE"
|
9838
9908
|
}
|
9909
|
+
/** Search feed service type */
|
9910
|
+
export declare enum SearchServiceTypes {
|
9911
|
+
/** Exa search feed service */
|
9912
|
+
Exa = "EXA",
|
9913
|
+
/** Tavily search feed service */
|
9914
|
+
Tavily = "TAVILY"
|
9915
|
+
}
|
9839
9916
|
/** Search type */
|
9840
9917
|
export declare enum SearchTypes {
|
9841
9918
|
/** Hybrid (Vector similarity using search text) */
|
@@ -14126,6 +14203,12 @@ export type GetFeedQuery = {
|
|
14126
14203
|
allowedPaths?: Array<string> | null;
|
14127
14204
|
excludedPaths?: Array<string> | null;
|
14128
14205
|
} | null;
|
14206
|
+
search?: {
|
14207
|
+
__typename?: 'SearchFeedProperties';
|
14208
|
+
readLimit?: number | null;
|
14209
|
+
type?: SearchServiceTypes | null;
|
14210
|
+
text: string;
|
14211
|
+
} | null;
|
14129
14212
|
reddit?: {
|
14130
14213
|
__typename?: 'RedditFeedProperties';
|
14131
14214
|
readLimit?: number | null;
|
@@ -14333,6 +14416,12 @@ export type QueryFeedsQuery = {
|
|
14333
14416
|
allowedPaths?: Array<string> | null;
|
14334
14417
|
excludedPaths?: Array<string> | null;
|
14335
14418
|
} | null;
|
14419
|
+
search?: {
|
14420
|
+
__typename?: 'SearchFeedProperties';
|
14421
|
+
readLimit?: number | null;
|
14422
|
+
type?: SearchServiceTypes | null;
|
14423
|
+
text: string;
|
14424
|
+
} | null;
|
14336
14425
|
reddit?: {
|
14337
14426
|
__typename?: 'RedditFeedProperties';
|
14338
14427
|
readLimit?: number | null;
|
@@ -16296,6 +16385,7 @@ export type LookupCreditsQuery = {
|
|
16296
16385
|
computeRatio?: any | null;
|
16297
16386
|
embeddingRatio?: any | null;
|
16298
16387
|
completionRatio?: any | null;
|
16388
|
+
ingestionRatio?: any | null;
|
16299
16389
|
indexingRatio?: any | null;
|
16300
16390
|
preparationRatio?: any | null;
|
16301
16391
|
extractionRatio?: any | null;
|
@@ -16359,6 +16449,7 @@ export type QueryCreditsQuery = {
|
|
16359
16449
|
computeRatio?: any | null;
|
16360
16450
|
embeddingRatio?: any | null;
|
16361
16451
|
completionRatio?: any | null;
|
16452
|
+
ingestionRatio?: any | null;
|
16362
16453
|
indexingRatio?: any | null;
|
16363
16454
|
preparationRatio?: any | null;
|
16364
16455
|
extractionRatio?: any | 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) {
|
@@ -621,6 +621,8 @@ var FeedTypes;
|
|
621
621
|
FeedTypes["Reddit"] = "REDDIT";
|
622
622
|
/** RSS feed */
|
623
623
|
FeedTypes["Rss"] = "RSS";
|
624
|
+
/** Web Search feed */
|
625
|
+
FeedTypes["Search"] = "SEARCH";
|
624
626
|
/** Cloud storage site feed */
|
625
627
|
FeedTypes["Site"] = "SITE";
|
626
628
|
/** Slack channel feed */
|
@@ -703,6 +705,8 @@ var GroqModels;
|
|
703
705
|
GroqModels["Llama_3_8B"] = "LLAMA_3_8B";
|
704
706
|
/** LLaMA 3 70b */
|
705
707
|
GroqModels["Llama_3_70B"] = "LLAMA_3_70B";
|
708
|
+
/** LLaVA 1.5 7B */
|
709
|
+
GroqModels["Llava_1_5_7B"] = "LLAVA_1_5_7B";
|
706
710
|
/** Mixtral 8x7b Instruct */
|
707
711
|
GroqModels["Mixtral_8X7BInstruct"] = "MIXTRAL_8X7B_INSTRUCT";
|
708
712
|
})(GroqModels || (exports.GroqModels = GroqModels = {}));
|
@@ -1058,7 +1062,10 @@ var OpenAiModels;
|
|
1058
1062
|
(function (OpenAiModels) {
|
1059
1063
|
/** Developer-specified model */
|
1060
1064
|
OpenAiModels["Custom"] = "CUSTOM";
|
1061
|
-
/**
|
1065
|
+
/**
|
1066
|
+
* GPT-4 (Latest)
|
1067
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o model instead.
|
1068
|
+
*/
|
1062
1069
|
OpenAiModels["Gpt4"] = "GPT4";
|
1063
1070
|
/** GPT-4o 128k (Latest) */
|
1064
1071
|
OpenAiModels["Gpt4O_128K"] = "GPT4O_128K";
|
@@ -1072,11 +1079,20 @@ var OpenAiModels;
|
|
1072
1079
|
OpenAiModels["Gpt4OMini_128K"] = "GPT4O_MINI_128K";
|
1073
1080
|
/** GPT-4o Mini 128k (2024-07-18 version) */
|
1074
1081
|
OpenAiModels["Gpt4OMini_128K_20240718"] = "GPT4O_MINI_128K_20240718";
|
1075
|
-
/**
|
1082
|
+
/**
|
1083
|
+
* GPT-4 (0613 version)
|
1084
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o model instead.
|
1085
|
+
*/
|
1076
1086
|
OpenAiModels["Gpt4_0613"] = "GPT4_0613";
|
1077
|
-
/**
|
1087
|
+
/**
|
1088
|
+
* GPT-4 32k (Latest)
|
1089
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o model instead.
|
1090
|
+
*/
|
1078
1091
|
OpenAiModels["Gpt4_32K"] = "GPT4_32K";
|
1079
|
-
/**
|
1092
|
+
/**
|
1093
|
+
* GPT-4 32k (0613 version)
|
1094
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o model instead.
|
1095
|
+
*/
|
1080
1096
|
OpenAiModels["Gpt4_32K_0613"] = "GPT4_32K_0613";
|
1081
1097
|
/** GPT-4 Turbo 128k (Latest) */
|
1082
1098
|
OpenAiModels["Gpt4Turbo_128K"] = "GPT4_TURBO_128K";
|
@@ -1086,27 +1102,45 @@ var OpenAiModels;
|
|
1086
1102
|
OpenAiModels["Gpt4Turbo_128K_1106"] = "GPT4_TURBO_128K_1106";
|
1087
1103
|
/** GPT-4 Turbo 128k (2024-04-09 version) */
|
1088
1104
|
OpenAiModels["Gpt4Turbo_128K_20240409"] = "GPT4_TURBO_128K_20240409";
|
1089
|
-
/**
|
1105
|
+
/**
|
1106
|
+
* GPT-4 Turbo Vision 128k (Latest)
|
1107
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o model instead.
|
1108
|
+
*/
|
1090
1109
|
OpenAiModels["Gpt4TurboVision_128K"] = "GPT4_TURBO_VISION_128K";
|
1091
|
-
/**
|
1110
|
+
/**
|
1111
|
+
* GPT-4 Turbo Vision 128k (1106 version)
|
1112
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o model instead.
|
1113
|
+
*/
|
1092
1114
|
OpenAiModels["Gpt4TurboVision_128K_1106"] = "GPT4_TURBO_VISION_128K_1106";
|
1093
1115
|
/**
|
1094
1116
|
* GPT-3.5 Turbo (Latest)
|
1095
|
-
* @deprecated OpenAI
|
1117
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o Mini model instead.
|
1096
1118
|
*/
|
1097
1119
|
OpenAiModels["Gpt35Turbo"] = "GPT35_TURBO";
|
1098
1120
|
/**
|
1099
1121
|
* GPT-3.5 Turbo (0613 version)
|
1100
|
-
* @deprecated OpenAI
|
1122
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o Mini model instead.
|
1101
1123
|
*/
|
1102
1124
|
OpenAiModels["Gpt35Turbo_0613"] = "GPT35_TURBO_0613";
|
1103
|
-
/**
|
1125
|
+
/**
|
1126
|
+
* GPT-3.5 Turbo 16k (Latest)
|
1127
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o Mini model instead.
|
1128
|
+
*/
|
1104
1129
|
OpenAiModels["Gpt35Turbo_16K"] = "GPT35_TURBO_16K";
|
1105
|
-
/**
|
1130
|
+
/**
|
1131
|
+
* GPT-3.5 Turbo 16k (0125 version)
|
1132
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o Mini model instead.
|
1133
|
+
*/
|
1106
1134
|
OpenAiModels["Gpt35Turbo_16K_0125"] = "GPT35_TURBO_16K_0125";
|
1107
|
-
/**
|
1135
|
+
/**
|
1136
|
+
* GPT-3.5 Turbo 16k (0613 version)
|
1137
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o Mini model instead.
|
1138
|
+
*/
|
1108
1139
|
OpenAiModels["Gpt35Turbo_16K_0613"] = "GPT35_TURBO_16K_0613";
|
1109
|
-
/**
|
1140
|
+
/**
|
1141
|
+
* GPT-3.5 Turbo 16k (1106 version)
|
1142
|
+
* @deprecated OpenAI has deprecated this model. Use the GPT-4o Mini model instead.
|
1143
|
+
*/
|
1110
1144
|
OpenAiModels["Gpt35Turbo_16K_1106"] = "GPT35_TURBO_16K_1106";
|
1111
1145
|
})(OpenAiModels || (exports.OpenAiModels = OpenAiModels = {}));
|
1112
1146
|
/** OpenAI vision model detail levels */
|
@@ -1288,6 +1322,14 @@ var SearchQueryTypes;
|
|
1288
1322
|
/** Simple */
|
1289
1323
|
SearchQueryTypes["Simple"] = "SIMPLE";
|
1290
1324
|
})(SearchQueryTypes || (exports.SearchQueryTypes = SearchQueryTypes = {}));
|
1325
|
+
/** Search feed service type */
|
1326
|
+
var SearchServiceTypes;
|
1327
|
+
(function (SearchServiceTypes) {
|
1328
|
+
/** Exa search feed service */
|
1329
|
+
SearchServiceTypes["Exa"] = "EXA";
|
1330
|
+
/** Tavily search feed service */
|
1331
|
+
SearchServiceTypes["Tavily"] = "TAVILY";
|
1332
|
+
})(SearchServiceTypes || (exports.SearchServiceTypes = SearchServiceTypes = {}));
|
1291
1333
|
/** Search type */
|
1292
1334
|
var SearchTypes;
|
1293
1335
|
(function (SearchTypes) {
|