graphlit-client 1.0.20241203001 → 1.0.20241206001
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
@@ -38,6 +38,7 @@ declare class Graphlit {
|
|
38
38
|
queryCollections(filter?: Types.CollectionFilter): Promise<Types.QueryCollectionsQuery>;
|
39
39
|
describeImage(prompt: string, uri: string, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.DescribeImageMutation>;
|
40
40
|
describeEncodedImage(prompt: string, mimeType: string, data: string, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.DescribeEncodedImageMutation>;
|
41
|
+
screenshotPage(uri: string, maximumHeight?: number, isSynchronous?: boolean, workflow?: Types.EntityReferenceInput, collections?: [Types.EntityReferenceInput], correlationId?: string): Promise<Types.ScreenshotPageMutation>;
|
41
42
|
ingestBatch(uris: [string], workflow?: Types.EntityReferenceInput, collections?: [Types.EntityReferenceInput], correlationId?: string): Promise<Types.IngestBatchMutation>;
|
42
43
|
ingestUri(uri: string, name?: string, id?: string, isSynchronous?: boolean, workflow?: Types.EntityReferenceInput, collections?: [Types.EntityReferenceInput], correlationId?: string): Promise<Types.IngestUriMutation>;
|
43
44
|
ingestText(name: string, text: string, textType?: Types.TextTypes, uri?: string, id?: string, isSynchronous?: boolean, workflow?: Types.EntityReferenceInput, collections?: [Types.EntityReferenceInput], correlationId?: string): Promise<Types.IngestTextMutation>;
|
@@ -46,6 +47,7 @@ declare class Graphlit {
|
|
46
47
|
deleteContent(id: string): Promise<Types.DeleteContentMutation>;
|
47
48
|
deleteContents(): Promise<Types.DeleteContentsMutation>;
|
48
49
|
deleteAllContents(): Promise<Types.DeleteAllContentsMutation>;
|
50
|
+
summarizeText(summarization: Types.SummarizationStrategyInput, text: string, textType?: Types.TextTypes, correlationId?: string): Promise<Types.SummarizeTextMutation>;
|
49
51
|
summarizeContents(summarizations: [Types.SummarizationStrategyInput], filter?: Types.ContentFilter, correlationId?: string): Promise<Types.SummarizeContentsMutation>;
|
50
52
|
extractContents(prompt: string, filter?: Types.ContentFilter, specification?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.ExtractContentsMutation>;
|
51
53
|
publishContents(summaryPrompt: string, summarySpecification: Types.EntityReferenceInput, connector: Types.ContentPublishingConnectorInput, publishPrompt?: string, publishSpecification?: Types.EntityReferenceInput, name?: string, filter?: Types.ContentFilter, workflow?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.PublishContentsMutation>;
|
package/dist/client.js
CHANGED
@@ -248,6 +248,11 @@ class Graphlit {
|
|
248
248
|
return this.mutateAndCheckError(Documents.DescribeEncodedImage, { prompt: prompt, mimeType: mimeType, data: data, specification: specification, correlationId: correlationId });
|
249
249
|
});
|
250
250
|
}
|
251
|
+
screenshotPage(uri, maximumHeight, isSynchronous, workflow, collections, correlationId) {
|
252
|
+
return __awaiter(this, void 0, void 0, function* () {
|
253
|
+
return this.mutateAndCheckError(Documents.ScreenshotPage, { uri: uri, maximumHeight: maximumHeight, isSynchronous: isSynchronous, workflow: workflow, collections: collections, correlationId: correlationId });
|
254
|
+
});
|
255
|
+
}
|
251
256
|
ingestBatch(uris, workflow, collections, correlationId) {
|
252
257
|
return __awaiter(this, void 0, void 0, function* () {
|
253
258
|
return this.mutateAndCheckError(Documents.IngestBatch, { uris: uris, workflow: workflow, collections: collections, correlationId: correlationId });
|
@@ -288,6 +293,11 @@ class Graphlit {
|
|
288
293
|
return this.mutateAndCheckError(Documents.DeleteAllContents);
|
289
294
|
});
|
290
295
|
}
|
296
|
+
summarizeText(summarization, text, textType, correlationId) {
|
297
|
+
return __awaiter(this, void 0, void 0, function* () {
|
298
|
+
return this.mutateAndCheckError(Documents.SummarizeText, { summarization: summarization, text: text, textType: textType, correlationId: correlationId });
|
299
|
+
});
|
300
|
+
}
|
291
301
|
summarizeContents(summarizations, filter, correlationId) {
|
292
302
|
return __awaiter(this, void 0, void 0, function* () {
|
293
303
|
return this.mutateAndCheckError(Documents.SummarizeContents, { summarizations: summarizations, filter: filter, correlationId: correlationId });
|
@@ -45,7 +45,9 @@ export declare const PublishText: import("graphql").DocumentNode;
|
|
45
45
|
export declare const QueryContents: import("graphql").DocumentNode;
|
46
46
|
export declare const QueryContentsFacets: import("graphql").DocumentNode;
|
47
47
|
export declare const QueryContentsGraph: import("graphql").DocumentNode;
|
48
|
+
export declare const ScreenshotPage: import("graphql").DocumentNode;
|
48
49
|
export declare const SummarizeContents: import("graphql").DocumentNode;
|
50
|
+
export declare const SummarizeText: import("graphql").DocumentNode;
|
49
51
|
export declare const UpdateContent: import("graphql").DocumentNode;
|
50
52
|
export declare const ClearConversation: import("graphql").DocumentNode;
|
51
53
|
export declare const CloseConversation: import("graphql").DocumentNode;
|
@@ -3,12 +3,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
4
|
};
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
6
|
-
exports.
|
7
|
-
exports.
|
8
|
-
exports.
|
9
|
-
exports.
|
10
|
-
exports.
|
11
|
-
exports.UpdateWorkflow = exports.QueryWorkflows = exports.GetWorkflow = exports.DeleteWorkflows = exports.DeleteWorkflow = exports.DeleteAllWorkflows = exports.CreateWorkflow = exports.CountWorkflows = exports.UpdateSpecification = exports.QuerySpecifications = exports.PromptSpecifications = exports.GetSpecification = exports.DeleteSpecifications = exports.DeleteSpecification = exports.DeleteAllSpecifications = exports.CreateSpecification = void 0;
|
6
|
+
exports.SummarizeText = 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.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.DeleteAllLabels = exports.CreateLabel = exports.CountLabels = exports.UpdateFeed = exports.QuerySharePointLibraries = exports.QuerySharePointFolders = exports.QueryOneDriveFolders = exports.QueryMicrosoftTeamsTeams = exports.QueryMicrosoftTeamsChannels = exports.QueryFeeds = exports.IsFeedDone = exports.GetSharePointConsentUri = exports.GetFeed = exports.EnableFeed = exports.DisableFeed = exports.DeleteFeeds = exports.DeleteFeed = exports.DeleteAllFeeds = exports.CreateFeed = exports.CountFeeds = exports.UpdateEvent = exports.QueryEvents = exports.GetEvent = exports.DeleteEvents = exports.DeleteEvent = exports.DeleteAllEvents = exports.CreateEvent = exports.CountEvents = exports.UpdateConversation = exports.SuggestConversation = exports.ReviseText = exports.ReviseImage = exports.ReviseEncodedImage = exports.ReviseContent = exports.QueryConversations = exports.PublishConversation = exports.PromptConversation = exports.Prompt = exports.GetConversation = exports.FormatConversation = exports.DeleteConversations = exports.DeleteConversation = exports.DeleteAllConversations = exports.CreateConversation = exports.CountConversations = exports.ContinueConversation = exports.CompleteConversation = exports.CloseConversation = exports.ClearConversation = exports.UpdateContent = void 0;
|
8
|
+
exports.DeleteMedicalGuidelines = exports.DeleteMedicalGuideline = exports.DeleteAllMedicalGuidelines = exports.CreateMedicalGuideline = exports.CountMedicalGuidelines = exports.UpdateMedicalDrugClass = exports.QueryMedicalDrugClasses = exports.GetMedicalDrugClass = exports.DeleteMedicalDrugClasses = exports.DeleteMedicalDrugClass = exports.DeleteAllMedicalDrugClasses = exports.CreateMedicalDrugClass = exports.CountMedicalDrugClasses = exports.UpdateMedicalDrug = exports.QueryMedicalDrugs = exports.GetMedicalDrug = exports.DeleteMedicalDrugs = exports.DeleteMedicalDrug = exports.DeleteAllMedicalDrugs = exports.CreateMedicalDrug = exports.CountMedicalDrugs = exports.UpdateMedicalDevice = exports.QueryMedicalDevices = exports.GetMedicalDevice = exports.DeleteMedicalDevices = exports.DeleteMedicalDevice = exports.DeleteAllMedicalDevices = exports.CreateMedicalDevice = exports.CountMedicalDevices = exports.UpdateMedicalContraindication = exports.QueryMedicalContraindications = exports.GetMedicalContraindication = exports.DeleteMedicalContraindications = exports.DeleteMedicalContraindication = exports.DeleteAllMedicalContraindications = exports.CreateMedicalContraindication = exports.CountMedicalContraindications = exports.UpdateMedicalCondition = exports.QueryMedicalConditions = exports.GetMedicalCondition = exports.DeleteMedicalConditions = exports.DeleteMedicalCondition = exports.DeleteAllMedicalConditions = exports.CreateMedicalCondition = exports.CountMedicalConditions = exports.UpdateLabel = exports.QueryLabels = exports.GetLabel = exports.DeleteLabels = exports.DeleteLabel = void 0;
|
9
|
+
exports.DeleteOrganization = exports.DeleteAllOrganizations = exports.CreateOrganization = exports.CountOrganizations = exports.UpdateObservation = exports.DeleteObservation = exports.CreateObservation = exports.UpdateMedicalTherapy = exports.QueryMedicalTherapies = exports.GetMedicalTherapy = exports.DeleteMedicalTherapy = exports.DeleteMedicalTherapies = exports.DeleteAllMedicalTherapies = exports.CreateMedicalTherapy = exports.CountMedicalTherapies = exports.UpdateMedicalTest = exports.QueryMedicalTests = exports.GetMedicalTest = exports.DeleteMedicalTests = exports.DeleteMedicalTest = exports.DeleteAllMedicalTests = exports.CreateMedicalTest = exports.CountMedicalTests = exports.UpdateMedicalStudy = exports.QueryMedicalStudies = exports.GetMedicalStudy = exports.DeleteMedicalStudy = exports.DeleteMedicalStudies = exports.DeleteAllMedicalStudies = exports.CreateMedicalStudy = exports.CountMedicalStudies = exports.UpdateMedicalProcedure = exports.QueryMedicalProcedures = exports.GetMedicalProcedure = exports.DeleteMedicalProcedures = exports.DeleteMedicalProcedure = exports.DeleteAllMedicalProcedures = exports.CreateMedicalProcedure = exports.CountMedicalProcedures = exports.UpdateMedicalIndication = exports.QueryMedicalIndications = exports.GetMedicalIndication = exports.DeleteMedicalIndications = exports.DeleteMedicalIndication = exports.DeleteAllMedicalIndications = exports.CreateMedicalIndication = exports.CountMedicalIndications = exports.UpdateMedicalGuideline = exports.QueryMedicalGuidelines = exports.GetMedicalGuideline = void 0;
|
10
|
+
exports.QuerySoftwares = exports.GetSoftware = exports.DeleteSoftwares = exports.DeleteSoftware = exports.DeleteAllSoftwares = exports.CreateSoftware = exports.CountSoftwares = exports.SearchWeb = exports.UpdateRepo = exports.QueryRepos = exports.GetRepo = exports.DeleteRepos = exports.DeleteRepo = exports.DeleteAllRepos = exports.CreateRepo = exports.CountRepos = exports.UpdateProject = exports.QueryUsage = exports.QueryCredits = exports.LookupUsage = exports.LookupCredits = exports.GetProject = exports.UpdateProduct = exports.QueryProducts = exports.GetProduct = exports.DeleteProducts = exports.DeleteProduct = exports.DeleteAllProducts = exports.CreateProduct = exports.CountProducts = exports.UpdatePlace = exports.QueryPlaces = exports.GetPlace = exports.DeletePlaces = exports.DeletePlace = exports.DeleteAllPlaces = exports.CreatePlace = exports.CountPlaces = exports.UpdatePerson = exports.QueryPersons = exports.GetPerson = exports.DeletePersons = exports.DeletePerson = exports.DeleteAllPersons = exports.CreatePerson = exports.CountPersons = exports.UpdateOrganization = exports.QueryOrganizations = exports.GetOrganization = exports.DeleteOrganizations = void 0;
|
11
|
+
exports.UpdateWorkflow = exports.QueryWorkflows = exports.GetWorkflow = exports.DeleteWorkflows = exports.DeleteWorkflow = exports.DeleteAllWorkflows = exports.CreateWorkflow = exports.CountWorkflows = exports.UpdateSpecification = exports.QuerySpecifications = exports.PromptSpecifications = exports.GetSpecification = exports.DeleteSpecifications = exports.DeleteSpecification = exports.DeleteAllSpecifications = exports.CreateSpecification = exports.CountSpecifications = exports.UpdateSoftware = 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) {
|
@@ -1766,6 +1766,30 @@ exports.QueryContentsGraph = (0, graphql_tag_1.default) `
|
|
1766
1766
|
}
|
1767
1767
|
}
|
1768
1768
|
`;
|
1769
|
+
exports.ScreenshotPage = (0, graphql_tag_1.default) `
|
1770
|
+
mutation ScreenshotPage($uri: URL!, $maximumHeight: Int, $isSynchronous: Boolean, $workflow: EntityReferenceInput, $collections: [EntityReferenceInput!], $correlationId: String) {
|
1771
|
+
screenshotPage(
|
1772
|
+
uri: $uri
|
1773
|
+
maximumHeight: $maximumHeight
|
1774
|
+
workflow: $workflow
|
1775
|
+
collections: $collections
|
1776
|
+
isSynchronous: $isSynchronous
|
1777
|
+
correlationId: $correlationId
|
1778
|
+
) {
|
1779
|
+
id
|
1780
|
+
name
|
1781
|
+
state
|
1782
|
+
type
|
1783
|
+
fileType
|
1784
|
+
mimeType
|
1785
|
+
uri
|
1786
|
+
collections {
|
1787
|
+
id
|
1788
|
+
name
|
1789
|
+
}
|
1790
|
+
}
|
1791
|
+
}
|
1792
|
+
`;
|
1769
1793
|
exports.SummarizeContents = (0, graphql_tag_1.default) `
|
1770
1794
|
mutation SummarizeContents($summarizations: [SummarizationStrategyInput!]!, $filter: ContentFilter, $correlationId: String) {
|
1771
1795
|
summarizeContents(
|
@@ -1789,6 +1813,30 @@ exports.SummarizeContents = (0, graphql_tag_1.default) `
|
|
1789
1813
|
}
|
1790
1814
|
}
|
1791
1815
|
`;
|
1816
|
+
exports.SummarizeText = (0, graphql_tag_1.default) `
|
1817
|
+
mutation SummarizeText($summarization: SummarizationStrategyInput!, $text: String!, $textType: TextTypes, $correlationId: String) {
|
1818
|
+
summarizeText(
|
1819
|
+
summarization: $summarization
|
1820
|
+
text: $text
|
1821
|
+
textType: $textType
|
1822
|
+
correlationId: $correlationId
|
1823
|
+
) {
|
1824
|
+
specification {
|
1825
|
+
id
|
1826
|
+
}
|
1827
|
+
content {
|
1828
|
+
id
|
1829
|
+
}
|
1830
|
+
type
|
1831
|
+
items {
|
1832
|
+
text
|
1833
|
+
tokens
|
1834
|
+
summarizationTime
|
1835
|
+
}
|
1836
|
+
error
|
1837
|
+
}
|
1838
|
+
}
|
1839
|
+
`;
|
1792
1840
|
exports.UpdateContent = (0, graphql_tag_1.default) `
|
1793
1841
|
mutation UpdateContent($content: ContentUpdateInput!) {
|
1794
1842
|
updateContent(content: $content) {
|
@@ -4046,6 +4094,8 @@ exports.GetFeed = (0, graphql_tag_1.default) `
|
|
4046
4094
|
}
|
4047
4095
|
oneDrive {
|
4048
4096
|
folderId
|
4097
|
+
clientId
|
4098
|
+
clientSecret
|
4049
4099
|
refreshToken
|
4050
4100
|
}
|
4051
4101
|
googleDrive {
|
@@ -4075,6 +4125,8 @@ exports.GetFeed = (0, graphql_tag_1.default) `
|
|
4075
4125
|
microsoft {
|
4076
4126
|
type
|
4077
4127
|
refreshToken
|
4128
|
+
clientId
|
4129
|
+
clientSecret
|
4078
4130
|
}
|
4079
4131
|
readLimit
|
4080
4132
|
}
|
@@ -4142,6 +4194,15 @@ exports.GetFeed = (0, graphql_tag_1.default) `
|
|
4142
4194
|
channel
|
4143
4195
|
includeAttachments
|
4144
4196
|
}
|
4197
|
+
microsoftTeams {
|
4198
|
+
readLimit
|
4199
|
+
type
|
4200
|
+
clientId
|
4201
|
+
clientSecret
|
4202
|
+
refreshToken
|
4203
|
+
teamId
|
4204
|
+
channelId
|
4205
|
+
}
|
4145
4206
|
discord {
|
4146
4207
|
readLimit
|
4147
4208
|
type
|
@@ -4232,6 +4293,8 @@ exports.QueryFeeds = (0, graphql_tag_1.default) `
|
|
4232
4293
|
}
|
4233
4294
|
oneDrive {
|
4234
4295
|
folderId
|
4296
|
+
clientId
|
4297
|
+
clientSecret
|
4235
4298
|
refreshToken
|
4236
4299
|
}
|
4237
4300
|
googleDrive {
|
@@ -4261,6 +4324,8 @@ exports.QueryFeeds = (0, graphql_tag_1.default) `
|
|
4261
4324
|
microsoft {
|
4262
4325
|
type
|
4263
4326
|
refreshToken
|
4327
|
+
clientId
|
4328
|
+
clientSecret
|
4264
4329
|
}
|
4265
4330
|
readLimit
|
4266
4331
|
}
|
@@ -4328,6 +4393,15 @@ exports.QueryFeeds = (0, graphql_tag_1.default) `
|
|
4328
4393
|
channel
|
4329
4394
|
includeAttachments
|
4330
4395
|
}
|
4396
|
+
microsoftTeams {
|
4397
|
+
readLimit
|
4398
|
+
type
|
4399
|
+
clientId
|
4400
|
+
clientSecret
|
4401
|
+
refreshToken
|
4402
|
+
teamId
|
4403
|
+
channelId
|
4404
|
+
}
|
4331
4405
|
discord {
|
4332
4406
|
readLimit
|
4333
4407
|
type
|
@@ -6197,6 +6271,7 @@ exports.GetSpecification = (0, graphql_tag_1.default) `
|
|
6197
6271
|
type
|
6198
6272
|
messageLimit
|
6199
6273
|
embedCitations
|
6274
|
+
flattenCitations
|
6200
6275
|
enableFacets
|
6201
6276
|
messagesWeight
|
6202
6277
|
contentsWeight
|
@@ -6500,6 +6575,7 @@ exports.QuerySpecifications = (0, graphql_tag_1.default) `
|
|
6500
6575
|
type
|
6501
6576
|
messageLimit
|
6502
6577
|
embedCitations
|
6578
|
+
flattenCitations
|
6503
6579
|
enableFacets
|
6504
6580
|
messagesWeight
|
6505
6581
|
contentsWeight
|
@@ -1885,6 +1885,8 @@ export type ConversationStrategy = {
|
|
1885
1885
|
embedCitations?: Maybe<Scalars['Boolean']['output']>;
|
1886
1886
|
/** Provide content facets with completed conversation. */
|
1887
1887
|
enableFacets?: Maybe<Scalars['Boolean']['output']>;
|
1888
|
+
/** Flatten content citations such that only one citation is embedded per content. */
|
1889
|
+
flattenCitations?: Maybe<Scalars['Boolean']['output']>;
|
1888
1890
|
/** The maximum number of retrieval user messages to provide with prompt context. Defaults to 5. */
|
1889
1891
|
messageLimit?: Maybe<Scalars['Int']['output']>;
|
1890
1892
|
/** The weight of conversation messages within prompt context, in range [0.0 - 1.0]. */
|
@@ -1900,6 +1902,8 @@ export type ConversationStrategyInput = {
|
|
1900
1902
|
embedCitations?: InputMaybe<Scalars['Boolean']['input']>;
|
1901
1903
|
/** Provide content facets with completed conversation. */
|
1902
1904
|
enableFacets?: InputMaybe<Scalars['Boolean']['input']>;
|
1905
|
+
/** Flatten content citations such that only one citation is embedded per content. */
|
1906
|
+
flattenCitations?: InputMaybe<Scalars['Boolean']['input']>;
|
1903
1907
|
/** The maximum number of retrieval user messages to provide with prompt context. Defaults to 5. */
|
1904
1908
|
messageLimit?: InputMaybe<Scalars['Int']['input']>;
|
1905
1909
|
/** The weight of conversation messages within prompt context, in range [0.0 - 1.0]. */
|
@@ -1922,6 +1926,8 @@ export type ConversationStrategyUpdateInput = {
|
|
1922
1926
|
embedCitations?: InputMaybe<Scalars['Boolean']['input']>;
|
1923
1927
|
/** Provide content facets with completed conversation. */
|
1924
1928
|
enableFacets?: InputMaybe<Scalars['Boolean']['input']>;
|
1929
|
+
/** Flatten content citations such that only one citation is embedded per content. */
|
1930
|
+
flattenCitations?: InputMaybe<Scalars['Boolean']['input']>;
|
1925
1931
|
/** The maximum number of retrieval user messages to provide with prompt context. Defaults to 5. */
|
1926
1932
|
messageLimit?: InputMaybe<Scalars['Int']['input']>;
|
1927
1933
|
/** The weight of conversation messages within prompt context, in range [0.0 - 1.0]. */
|
@@ -3542,11 +3548,11 @@ export type GoogleDriveFeedPropertiesUpdateInput = {
|
|
3542
3548
|
/** Represents Google Email feed properties. */
|
3543
3549
|
export type GoogleEmailFeedProperties = {
|
3544
3550
|
__typename?: 'GoogleEmailFeedProperties';
|
3545
|
-
/** Google client identifier. */
|
3551
|
+
/** Google Email client identifier. */
|
3546
3552
|
clientId: Scalars['String']['output'];
|
3547
|
-
/** Google client secret. */
|
3553
|
+
/** Google Email client secret. */
|
3548
3554
|
clientSecret: Scalars['String']['output'];
|
3549
|
-
/** Google refresh token. */
|
3555
|
+
/** Google Email refresh token. */
|
3550
3556
|
refreshToken?: Maybe<Scalars['String']['output']>;
|
3551
3557
|
/** Email listing type, i.e. past or new emails. */
|
3552
3558
|
type?: Maybe<EmailListingTypes>;
|
@@ -3813,7 +3819,10 @@ export declare enum GroqModels {
|
|
3813
3819
|
Custom = "CUSTOM",
|
3814
3820
|
/** LLaMA 3.1 8b */
|
3815
3821
|
Llama_3_1_8B = "LLAMA_3_1_8B",
|
3816
|
-
/**
|
3822
|
+
/**
|
3823
|
+
* LLaMA 3.1 70b
|
3824
|
+
* @deprecated Use Llama 3.3 70b instead.
|
3825
|
+
*/
|
3817
3826
|
Llama_3_1_70B = "LLAMA_3_1_70B",
|
3818
3827
|
/** LLaMA 3.1 405b */
|
3819
3828
|
Llama_3_1_405B = "LLAMA_3_1_405B",
|
@@ -3835,6 +3844,8 @@ export declare enum GroqModels {
|
|
3835
3844
|
Llama_3_2_90BTextPreview = "LLAMA_3_2_90B_TEXT_PREVIEW",
|
3836
3845
|
/** LLaMA 3.2 90b Vision Preview */
|
3837
3846
|
Llama_3_2_90BVisionPreview = "LLAMA_3_2_90B_VISION_PREVIEW",
|
3847
|
+
/** LLaMA 3.3 70b */
|
3848
|
+
Llama_3_3_70B = "LLAMA_3_3_70B",
|
3838
3849
|
/** LLaMA 3 8b */
|
3839
3850
|
Llama_3_8B = "LLAMA_3_8B",
|
3840
3851
|
/** LLaMA 3 70b */
|
@@ -6267,21 +6278,33 @@ export type MetadataUpdateInput = {
|
|
6267
6278
|
/** Represents Microsoft Email feed properties. */
|
6268
6279
|
export type MicrosoftEmailFeedProperties = {
|
6269
6280
|
__typename?: 'MicrosoftEmailFeedProperties';
|
6270
|
-
/** Microsoft
|
6281
|
+
/** Microsoft Email client identifier. */
|
6282
|
+
clientId: Scalars['String']['output'];
|
6283
|
+
/** Microsoft Email client secret. */
|
6284
|
+
clientSecret: Scalars['String']['output'];
|
6285
|
+
/** Microsoft Email refresh token. */
|
6271
6286
|
refreshToken: Scalars['String']['output'];
|
6272
6287
|
/** Email listing type, i.e. past or new emails. */
|
6273
6288
|
type?: Maybe<EmailListingTypes>;
|
6274
6289
|
};
|
6275
6290
|
/** Represents Microsoft Email feed properties. */
|
6276
6291
|
export type MicrosoftEmailFeedPropertiesInput = {
|
6277
|
-
/** Microsoft
|
6292
|
+
/** Microsoft Email client identifier. */
|
6293
|
+
clientId: Scalars['String']['input'];
|
6294
|
+
/** Microsoft Email client secret. */
|
6295
|
+
clientSecret: Scalars['String']['input'];
|
6296
|
+
/** Microsoft Email refresh token. */
|
6278
6297
|
refreshToken: Scalars['String']['input'];
|
6279
6298
|
/** Email listing type, i.e. past or new emails. */
|
6280
6299
|
type?: InputMaybe<EmailListingTypes>;
|
6281
6300
|
};
|
6282
6301
|
/** Represents Microsoft Email feed properties. */
|
6283
6302
|
export type MicrosoftEmailFeedPropertiesUpdateInput = {
|
6284
|
-
/** Microsoft
|
6303
|
+
/** Microsoft Email client identifier. */
|
6304
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
6305
|
+
/** Microsoft Email client secret. */
|
6306
|
+
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
6307
|
+
/** Microsoft Email refresh token. */
|
6285
6308
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
6286
6309
|
/** Email listing type, i.e. past or new emails. */
|
6287
6310
|
type?: InputMaybe<EmailListingTypes>;
|
@@ -6302,45 +6325,57 @@ export type MicrosoftTeamsChannelResults = {
|
|
6302
6325
|
};
|
6303
6326
|
/** Represents Microsoft Teams team channels properties. */
|
6304
6327
|
export type MicrosoftTeamsChannelsInput = {
|
6305
|
-
/**
|
6328
|
+
/** Microsoft Teams refresh token. */
|
6306
6329
|
refreshToken: Scalars['String']['input'];
|
6307
6330
|
};
|
6308
6331
|
/** Represents Microsoft Teams feed properties. */
|
6309
6332
|
export type MicrosoftTeamsFeedProperties = {
|
6310
6333
|
__typename?: 'MicrosoftTeamsFeedProperties';
|
6311
|
-
/**
|
6334
|
+
/** Microsoft Teams channel identifier. */
|
6312
6335
|
channelId: Scalars['String']['output'];
|
6336
|
+
/** Microsoft Teams client identifier. */
|
6337
|
+
clientId: Scalars['String']['output'];
|
6338
|
+
/** Microsoft Teams client secret. */
|
6339
|
+
clientSecret: Scalars['String']['output'];
|
6313
6340
|
/** The limit of items to be read from feed, defaults to 100. */
|
6314
6341
|
readLimit?: Maybe<Scalars['Int']['output']>;
|
6315
|
-
/**
|
6342
|
+
/** Microsoft Teams refresh token. */
|
6316
6343
|
refreshToken: Scalars['String']['output'];
|
6317
|
-
/**
|
6344
|
+
/** Microsoft Teams team identifier. */
|
6318
6345
|
teamId: Scalars['String']['output'];
|
6319
6346
|
/** Feed listing type, i.e. past or new messages. */
|
6320
6347
|
type?: Maybe<FeedListingTypes>;
|
6321
6348
|
};
|
6322
6349
|
/** Represents Microsoft Teams feed properties. */
|
6323
6350
|
export type MicrosoftTeamsFeedPropertiesInput = {
|
6324
|
-
/**
|
6351
|
+
/** Microsoft Teams channel identifier. */
|
6325
6352
|
channelId: Scalars['String']['input'];
|
6353
|
+
/** Microsoft Teams client identifier. */
|
6354
|
+
clientId: Scalars['String']['input'];
|
6355
|
+
/** Microsoft Teams client secret. */
|
6356
|
+
clientSecret: Scalars['String']['input'];
|
6326
6357
|
/** The limit of items to be read from feed, defaults to 100. */
|
6327
6358
|
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
6328
|
-
/**
|
6359
|
+
/** Microsoft Teams refresh token. */
|
6329
6360
|
refreshToken: Scalars['String']['input'];
|
6330
|
-
/**
|
6361
|
+
/** Microsoft Teams team identifier. */
|
6331
6362
|
teamId: Scalars['String']['input'];
|
6332
6363
|
/** Feed listing type, i.e. past or new messages. */
|
6333
6364
|
type?: InputMaybe<FeedListingTypes>;
|
6334
6365
|
};
|
6335
6366
|
/** Represents Microsoft Teams feed properties. */
|
6336
6367
|
export type MicrosoftTeamsFeedPropertiesUpdateInput = {
|
6337
|
-
/**
|
6368
|
+
/** Microsoft Teams channel identifier. */
|
6338
6369
|
channelId: Scalars['String']['input'];
|
6370
|
+
/** Microsoft Teams client identifier. */
|
6371
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
6372
|
+
/** Microsoft Teams client secret. */
|
6373
|
+
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
6339
6374
|
/** The limit of items to be read from feed, defaults to 100. */
|
6340
6375
|
readLimit?: InputMaybe<Scalars['Int']['input']>;
|
6341
|
-
/**
|
6376
|
+
/** Microsoft Teams refresh token. */
|
6342
6377
|
refreshToken?: InputMaybe<Scalars['String']['input']>;
|
6343
|
-
/**
|
6378
|
+
/** Microsoft Teams team identifier. */
|
6344
6379
|
teamId: Scalars['String']['input'];
|
6345
6380
|
/** Feed listing type, i.e. past or new messages. */
|
6346
6381
|
type?: InputMaybe<FeedListingTypes>;
|
@@ -6361,7 +6396,7 @@ export type MicrosoftTeamsTeamResults = {
|
|
6361
6396
|
};
|
6362
6397
|
/** Represents Microsoft Teams teams properties. */
|
6363
6398
|
export type MicrosoftTeamsTeamsInput = {
|
6364
|
-
/**
|
6399
|
+
/** Microsoft Teams refresh token. */
|
6365
6400
|
refreshToken: Scalars['String']['input'];
|
6366
6401
|
};
|
6367
6402
|
/** Represents Mistral model properties. */
|
@@ -6818,10 +6853,14 @@ export type Mutation = {
|
|
6818
6853
|
reviseImage?: Maybe<ReviseContent>;
|
6819
6854
|
/** Revise text via prompted conversation. */
|
6820
6855
|
reviseText?: Maybe<ReviseContent>;
|
6856
|
+
/** Screenshot web page by URI. */
|
6857
|
+
screenshotPage?: Maybe<Content>;
|
6821
6858
|
/** Suggest prompts for a conversation. */
|
6822
6859
|
suggestConversation?: Maybe<PromptSuggestion>;
|
6823
6860
|
/** Summarizes contents based on the provided filter criteria. */
|
6824
6861
|
summarizeContents?: Maybe<Array<Maybe<PromptSummarization>>>;
|
6862
|
+
/** Summarizes text. */
|
6863
|
+
summarizeText?: Maybe<PromptSummarization>;
|
6825
6864
|
/** Undo an existing conversation. */
|
6826
6865
|
undoConversation?: Maybe<Conversation>;
|
6827
6866
|
/** Updates an existing alert. */
|
@@ -7518,6 +7557,14 @@ export type MutationReviseTextArgs = {
|
|
7518
7557
|
specification?: InputMaybe<EntityReferenceInput>;
|
7519
7558
|
text: Scalars['String']['input'];
|
7520
7559
|
};
|
7560
|
+
export type MutationScreenshotPageArgs = {
|
7561
|
+
collections?: InputMaybe<Array<EntityReferenceInput>>;
|
7562
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7563
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
7564
|
+
maximumHeight?: InputMaybe<Scalars['Int']['input']>;
|
7565
|
+
uri: Scalars['URL']['input'];
|
7566
|
+
workflow?: InputMaybe<EntityReferenceInput>;
|
7567
|
+
};
|
7521
7568
|
export type MutationSuggestConversationArgs = {
|
7522
7569
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7523
7570
|
count?: InputMaybe<Scalars['Int']['input']>;
|
@@ -7529,6 +7576,12 @@ export type MutationSummarizeContentsArgs = {
|
|
7529
7576
|
filter?: InputMaybe<ContentFilter>;
|
7530
7577
|
summarizations: Array<InputMaybe<SummarizationStrategyInput>>;
|
7531
7578
|
};
|
7579
|
+
export type MutationSummarizeTextArgs = {
|
7580
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7581
|
+
summarization: SummarizationStrategyInput;
|
7582
|
+
text: Scalars['String']['input'];
|
7583
|
+
textType?: InputMaybe<TextTypes>;
|
7584
|
+
};
|
7532
7585
|
export type MutationUndoConversationArgs = {
|
7533
7586
|
id: Scalars['ID']['input'];
|
7534
7587
|
};
|
@@ -7862,6 +7915,10 @@ export declare enum OccurrenceTypes {
|
|
7862
7915
|
/** Represents OneDrive properties. */
|
7863
7916
|
export type OneDriveFeedProperties = {
|
7864
7917
|
__typename?: 'OneDriveFeedProperties';
|
7918
|
+
/** OneDrive client identifier. */
|
7919
|
+
clientId: Scalars['String']['output'];
|
7920
|
+
/** OneDrive client secret. */
|
7921
|
+
clientSecret: Scalars['String']['output'];
|
7865
7922
|
/** OneDrive folder identifier. */
|
7866
7923
|
folderId?: Maybe<Scalars['ID']['output']>;
|
7867
7924
|
/** OneDrive refresh token. */
|
@@ -7869,6 +7926,10 @@ export type OneDriveFeedProperties = {
|
|
7869
7926
|
};
|
7870
7927
|
/** Represents OneDrive properties. */
|
7871
7928
|
export type OneDriveFeedPropertiesInput = {
|
7929
|
+
/** OneDrive client identifier. */
|
7930
|
+
clientId: Scalars['String']['input'];
|
7931
|
+
/** OneDrive client secret. */
|
7932
|
+
clientSecret: Scalars['String']['input'];
|
7872
7933
|
/** OneDrive folder identifier. */
|
7873
7934
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
7874
7935
|
/** OneDrive refresh token. */
|
@@ -7876,6 +7937,10 @@ export type OneDriveFeedPropertiesInput = {
|
|
7876
7937
|
};
|
7877
7938
|
/** Represents OneDrive properties. */
|
7878
7939
|
export type OneDriveFeedPropertiesUpdateInput = {
|
7940
|
+
/** OneDrive client identifier. */
|
7941
|
+
clientId?: InputMaybe<Scalars['String']['input']>;
|
7942
|
+
/** OneDrive client secret. */
|
7943
|
+
clientSecret?: InputMaybe<Scalars['String']['input']>;
|
7879
7944
|
/** OneDrive folder identifier. */
|
7880
7945
|
folderId?: InputMaybe<Scalars['ID']['input']>;
|
7881
7946
|
/** OneDrive refresh token. */
|
@@ -9386,13 +9451,13 @@ export type PromptSuggestion = {
|
|
9386
9451
|
/** Represents an LLM summarization. */
|
9387
9452
|
export type PromptSummarization = {
|
9388
9453
|
__typename?: 'PromptSummarization';
|
9389
|
-
/** The summarized content. */
|
9390
|
-
content
|
9454
|
+
/** The summarized content. Not assigned when summarizing text */
|
9455
|
+
content?: Maybe<EntityReference>;
|
9391
9456
|
/** If summarization failed, the error message. */
|
9392
9457
|
error?: Maybe<Scalars['String']['output']>;
|
9393
9458
|
/** The summarized items. */
|
9394
9459
|
items?: Maybe<Array<Summarized>>;
|
9395
|
-
/** The LLM specification. */
|
9460
|
+
/** The LLM specification, optional. */
|
9396
9461
|
specification?: Maybe<EntityReference>;
|
9397
9462
|
/** The summarization type. */
|
9398
9463
|
type: SummarizationTypes;
|
@@ -13833,6 +13898,32 @@ export type QueryContentsGraphQuery = {
|
|
13833
13898
|
} | null;
|
13834
13899
|
} | null;
|
13835
13900
|
};
|
13901
|
+
export type ScreenshotPageMutationVariables = Exact<{
|
13902
|
+
uri: Scalars['URL']['input'];
|
13903
|
+
maximumHeight?: InputMaybe<Scalars['Int']['input']>;
|
13904
|
+
isSynchronous?: InputMaybe<Scalars['Boolean']['input']>;
|
13905
|
+
workflow?: InputMaybe<EntityReferenceInput>;
|
13906
|
+
collections?: InputMaybe<Array<EntityReferenceInput> | EntityReferenceInput>;
|
13907
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
13908
|
+
}>;
|
13909
|
+
export type ScreenshotPageMutation = {
|
13910
|
+
__typename?: 'Mutation';
|
13911
|
+
screenshotPage?: {
|
13912
|
+
__typename?: 'Content';
|
13913
|
+
id: string;
|
13914
|
+
name: string;
|
13915
|
+
state: EntityState;
|
13916
|
+
type?: ContentTypes | null;
|
13917
|
+
fileType?: FileTypes | null;
|
13918
|
+
mimeType?: string | null;
|
13919
|
+
uri?: any | null;
|
13920
|
+
collections?: Array<{
|
13921
|
+
__typename?: 'Collection';
|
13922
|
+
id: string;
|
13923
|
+
name: string;
|
13924
|
+
} | null> | null;
|
13925
|
+
} | null;
|
13926
|
+
};
|
13836
13927
|
export type SummarizeContentsMutationVariables = Exact<{
|
13837
13928
|
summarizations: Array<SummarizationStrategyInput> | SummarizationStrategyInput;
|
13838
13929
|
filter?: InputMaybe<ContentFilter>;
|
@@ -13848,10 +13939,10 @@ export type SummarizeContentsMutation = {
|
|
13848
13939
|
__typename?: 'EntityReference';
|
13849
13940
|
id: string;
|
13850
13941
|
} | null;
|
13851
|
-
content
|
13942
|
+
content?: {
|
13852
13943
|
__typename?: 'EntityReference';
|
13853
13944
|
id: string;
|
13854
|
-
};
|
13945
|
+
} | null;
|
13855
13946
|
items?: Array<{
|
13856
13947
|
__typename?: 'Summarized';
|
13857
13948
|
text?: string | null;
|
@@ -13860,6 +13951,34 @@ export type SummarizeContentsMutation = {
|
|
13860
13951
|
}> | null;
|
13861
13952
|
} | null> | null;
|
13862
13953
|
};
|
13954
|
+
export type SummarizeTextMutationVariables = Exact<{
|
13955
|
+
summarization: SummarizationStrategyInput;
|
13956
|
+
text: Scalars['String']['input'];
|
13957
|
+
textType?: InputMaybe<TextTypes>;
|
13958
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
13959
|
+
}>;
|
13960
|
+
export type SummarizeTextMutation = {
|
13961
|
+
__typename?: 'Mutation';
|
13962
|
+
summarizeText?: {
|
13963
|
+
__typename?: 'PromptSummarization';
|
13964
|
+
type: SummarizationTypes;
|
13965
|
+
error?: string | null;
|
13966
|
+
specification?: {
|
13967
|
+
__typename?: 'EntityReference';
|
13968
|
+
id: string;
|
13969
|
+
} | null;
|
13970
|
+
content?: {
|
13971
|
+
__typename?: 'EntityReference';
|
13972
|
+
id: string;
|
13973
|
+
} | null;
|
13974
|
+
items?: Array<{
|
13975
|
+
__typename?: 'Summarized';
|
13976
|
+
text?: string | null;
|
13977
|
+
tokens: number;
|
13978
|
+
summarizationTime?: any | null;
|
13979
|
+
}> | null;
|
13980
|
+
} | null;
|
13981
|
+
};
|
13863
13982
|
export type UpdateContentMutationVariables = Exact<{
|
13864
13983
|
content: ContentUpdateInput;
|
13865
13984
|
}>;
|
@@ -16441,6 +16560,8 @@ export type GetFeedQuery = {
|
|
16441
16560
|
oneDrive?: {
|
16442
16561
|
__typename?: 'OneDriveFeedProperties';
|
16443
16562
|
folderId?: string | null;
|
16563
|
+
clientId: string;
|
16564
|
+
clientSecret: string;
|
16444
16565
|
refreshToken: string;
|
16445
16566
|
} | null;
|
16446
16567
|
googleDrive?: {
|
@@ -16475,6 +16596,8 @@ export type GetFeedQuery = {
|
|
16475
16596
|
__typename?: 'MicrosoftEmailFeedProperties';
|
16476
16597
|
type?: EmailListingTypes | null;
|
16477
16598
|
refreshToken: string;
|
16599
|
+
clientId: string;
|
16600
|
+
clientSecret: string;
|
16478
16601
|
} | null;
|
16479
16602
|
} | null;
|
16480
16603
|
issue?: {
|
@@ -16552,6 +16675,16 @@ export type GetFeedQuery = {
|
|
16552
16675
|
channel: string;
|
16553
16676
|
includeAttachments?: boolean | null;
|
16554
16677
|
} | null;
|
16678
|
+
microsoftTeams?: {
|
16679
|
+
__typename?: 'MicrosoftTeamsFeedProperties';
|
16680
|
+
readLimit?: number | null;
|
16681
|
+
type?: FeedListingTypes | null;
|
16682
|
+
clientId: string;
|
16683
|
+
clientSecret: string;
|
16684
|
+
refreshToken: string;
|
16685
|
+
teamId: string;
|
16686
|
+
channelId: string;
|
16687
|
+
} | null;
|
16555
16688
|
discord?: {
|
16556
16689
|
__typename?: 'DiscordFeedProperties';
|
16557
16690
|
readLimit?: number | null;
|
@@ -16664,6 +16797,8 @@ export type QueryFeedsQuery = {
|
|
16664
16797
|
oneDrive?: {
|
16665
16798
|
__typename?: 'OneDriveFeedProperties';
|
16666
16799
|
folderId?: string | null;
|
16800
|
+
clientId: string;
|
16801
|
+
clientSecret: string;
|
16667
16802
|
refreshToken: string;
|
16668
16803
|
} | null;
|
16669
16804
|
googleDrive?: {
|
@@ -16698,6 +16833,8 @@ export type QueryFeedsQuery = {
|
|
16698
16833
|
__typename?: 'MicrosoftEmailFeedProperties';
|
16699
16834
|
type?: EmailListingTypes | null;
|
16700
16835
|
refreshToken: string;
|
16836
|
+
clientId: string;
|
16837
|
+
clientSecret: string;
|
16701
16838
|
} | null;
|
16702
16839
|
} | null;
|
16703
16840
|
issue?: {
|
@@ -16775,6 +16912,16 @@ export type QueryFeedsQuery = {
|
|
16775
16912
|
channel: string;
|
16776
16913
|
includeAttachments?: boolean | null;
|
16777
16914
|
} | null;
|
16915
|
+
microsoftTeams?: {
|
16916
|
+
__typename?: 'MicrosoftTeamsFeedProperties';
|
16917
|
+
readLimit?: number | null;
|
16918
|
+
type?: FeedListingTypes | null;
|
16919
|
+
clientId: string;
|
16920
|
+
clientSecret: string;
|
16921
|
+
refreshToken: string;
|
16922
|
+
teamId: string;
|
16923
|
+
channelId: string;
|
16924
|
+
} | null;
|
16778
16925
|
discord?: {
|
16779
16926
|
__typename?: 'DiscordFeedProperties';
|
16780
16927
|
readLimit?: number | null;
|
@@ -19161,6 +19308,7 @@ export type GetSpecificationQuery = {
|
|
19161
19308
|
type?: ConversationStrategyTypes | null;
|
19162
19309
|
messageLimit?: number | null;
|
19163
19310
|
embedCitations?: boolean | null;
|
19311
|
+
flattenCitations?: boolean | null;
|
19164
19312
|
enableFacets?: boolean | null;
|
19165
19313
|
messagesWeight?: number | null;
|
19166
19314
|
contentsWeight?: number | null;
|
@@ -19501,6 +19649,7 @@ export type QuerySpecificationsQuery = {
|
|
19501
19649
|
type?: ConversationStrategyTypes | null;
|
19502
19650
|
messageLimit?: number | null;
|
19503
19651
|
embedCitations?: boolean | null;
|
19652
|
+
flattenCitations?: boolean | null;
|
19504
19653
|
enableFacets?: boolean | null;
|
19505
19654
|
messagesWeight?: number | null;
|
19506
19655
|
contentsWeight?: number | null;
|
@@ -761,7 +761,10 @@ var GroqModels;
|
|
761
761
|
GroqModels["Custom"] = "CUSTOM";
|
762
762
|
/** LLaMA 3.1 8b */
|
763
763
|
GroqModels["Llama_3_1_8B"] = "LLAMA_3_1_8B";
|
764
|
-
/**
|
764
|
+
/**
|
765
|
+
* LLaMA 3.1 70b
|
766
|
+
* @deprecated Use Llama 3.3 70b instead.
|
767
|
+
*/
|
765
768
|
GroqModels["Llama_3_1_70B"] = "LLAMA_3_1_70B";
|
766
769
|
/** LLaMA 3.1 405b */
|
767
770
|
GroqModels["Llama_3_1_405B"] = "LLAMA_3_1_405B";
|
@@ -783,6 +786,8 @@ var GroqModels;
|
|
783
786
|
GroqModels["Llama_3_2_90BTextPreview"] = "LLAMA_3_2_90B_TEXT_PREVIEW";
|
784
787
|
/** LLaMA 3.2 90b Vision Preview */
|
785
788
|
GroqModels["Llama_3_2_90BVisionPreview"] = "LLAMA_3_2_90B_VISION_PREVIEW";
|
789
|
+
/** LLaMA 3.3 70b */
|
790
|
+
GroqModels["Llama_3_3_70B"] = "LLAMA_3_3_70B";
|
786
791
|
/** LLaMA 3 8b */
|
787
792
|
GroqModels["Llama_3_8B"] = "LLAMA_3_8B";
|
788
793
|
/** LLaMA 3 70b */
|