graphlit-client 1.0.20241206001 → 1.0.20241207001
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
@@ -17,6 +17,7 @@ declare class Graphlit {
|
|
17
17
|
lookupProjectCredits(correlationId: string): Promise<Types.LookupCreditsQuery>;
|
18
18
|
queryProjectUsage(startDate: Types.Scalars['DateTime'], duration: Types.Scalars['TimeSpan']): Promise<Types.QueryUsageQuery>;
|
19
19
|
queryProjectCredits(startDate: Types.Scalars['DateTime'], duration: Types.Scalars['TimeSpan']): Promise<Types.QueryCreditsQuery>;
|
20
|
+
mapWeb(uri: string, allowedPaths?: string[], excludedPaths?: string[], correlationId?: string): Promise<Types.MapWebQuery>;
|
20
21
|
searchWeb(text: string, service?: Types.SearchServiceTypes, limit?: number, correlationId?: string): Promise<Types.SearchWebQuery>;
|
21
22
|
createAlert(alert: Types.AlertInput, correlationId?: string): Promise<Types.CreateAlertMutation>;
|
22
23
|
updateAlert(alert: Types.AlertUpdateInput): Promise<Types.UpdateAlertMutation>;
|
@@ -49,7 +50,8 @@ declare class Graphlit {
|
|
49
50
|
deleteAllContents(): Promise<Types.DeleteAllContentsMutation>;
|
50
51
|
summarizeText(summarization: Types.SummarizationStrategyInput, text: string, textType?: Types.TextTypes, correlationId?: string): Promise<Types.SummarizeTextMutation>;
|
51
52
|
summarizeContents(summarizations: [Types.SummarizationStrategyInput], filter?: Types.ContentFilter, correlationId?: string): Promise<Types.SummarizeContentsMutation>;
|
52
|
-
|
53
|
+
extractText(prompt: string, text: string, specification: Types.EntityReferenceInput, tools: Types.ToolDefinitionInput[], textType?: Types.TextTypes, correlationId?: string): Promise<Types.ExtractTextMutation>;
|
54
|
+
extractContents(prompt: string, specification: Types.EntityReferenceInput, tools: Types.ToolDefinitionInput[], filter?: Types.ContentFilter, correlationId?: string): Promise<Types.ExtractContentsMutation>;
|
53
55
|
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>;
|
54
56
|
publishText(text: string, textType: Types.TextTypes, connector: Types.ContentPublishingConnectorInput, name?: string, workflow?: Types.EntityReferenceInput, correlationId?: string): Promise<Types.PublishTextMutation>;
|
55
57
|
getContent(id: string): Promise<Types.GetContentQuery>;
|
package/dist/client.js
CHANGED
@@ -143,6 +143,11 @@ class Graphlit {
|
|
143
143
|
return this.queryAndCheckError(Documents.QueryCredits, { startDate: startDate, duration: duration });
|
144
144
|
});
|
145
145
|
}
|
146
|
+
mapWeb(uri, allowedPaths, excludedPaths, correlationId) {
|
147
|
+
return __awaiter(this, void 0, void 0, function* () {
|
148
|
+
return this.queryAndCheckError(Documents.MapWeb, { uri: uri, allowedPaths: allowedPaths, excludedPaths: excludedPaths, correlationId: correlationId });
|
149
|
+
});
|
150
|
+
}
|
146
151
|
searchWeb(text, service, limit, correlationId) {
|
147
152
|
return __awaiter(this, void 0, void 0, function* () {
|
148
153
|
return this.queryAndCheckError(Documents.SearchWeb, { text: text, service: service, limit: limit, correlationId: correlationId });
|
@@ -303,9 +308,14 @@ class Graphlit {
|
|
303
308
|
return this.mutateAndCheckError(Documents.SummarizeContents, { summarizations: summarizations, filter: filter, correlationId: correlationId });
|
304
309
|
});
|
305
310
|
}
|
306
|
-
|
311
|
+
extractText(prompt, text, specification, tools, textType, correlationId) {
|
312
|
+
return __awaiter(this, void 0, void 0, function* () {
|
313
|
+
return this.mutateAndCheckError(Documents.ExtractText, { prompt: prompt, text: text, textType: textType, specification: specification, tools: tools, correlationId: correlationId });
|
314
|
+
});
|
315
|
+
}
|
316
|
+
extractContents(prompt, specification, tools, filter, correlationId) {
|
307
317
|
return __awaiter(this, void 0, void 0, function* () {
|
308
|
-
return this.mutateAndCheckError(Documents.ExtractContents, { prompt: prompt, filter: filter, specification: specification, correlationId: correlationId });
|
318
|
+
return this.mutateAndCheckError(Documents.ExtractContents, { prompt: prompt, filter: filter, specification: specification, tools: tools, correlationId: correlationId });
|
309
319
|
});
|
310
320
|
}
|
311
321
|
publishContents(summaryPrompt, summarySpecification, connector, publishPrompt, publishSpecification, name, filter, workflow, correlationId) {
|
@@ -33,6 +33,7 @@ export declare const DeleteContents: import("graphql").DocumentNode;
|
|
33
33
|
export declare const DescribeEncodedImage: import("graphql").DocumentNode;
|
34
34
|
export declare const DescribeImage: import("graphql").DocumentNode;
|
35
35
|
export declare const ExtractContents: import("graphql").DocumentNode;
|
36
|
+
export declare const ExtractText: import("graphql").DocumentNode;
|
36
37
|
export declare const GetContent: import("graphql").DocumentNode;
|
37
38
|
export declare const IngestBatch: import("graphql").DocumentNode;
|
38
39
|
export declare const IngestEncodedFile: import("graphql").DocumentNode;
|
@@ -240,6 +241,7 @@ export declare const DeleteRepos: import("graphql").DocumentNode;
|
|
240
241
|
export declare const GetRepo: import("graphql").DocumentNode;
|
241
242
|
export declare const QueryRepos: import("graphql").DocumentNode;
|
242
243
|
export declare const UpdateRepo: import("graphql").DocumentNode;
|
244
|
+
export declare const MapWeb: import("graphql").DocumentNode;
|
243
245
|
export declare const SearchWeb: import("graphql").DocumentNode;
|
244
246
|
export declare const CountSoftwares: import("graphql").DocumentNode;
|
245
247
|
export declare const CreateSoftware: 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 = exports.CountSpecifications = exports.UpdateSoftware = void 0;
|
6
|
+
exports.SummarizeContents = exports.ScreenshotPage = exports.QueryContentsGraph = exports.QueryContentsFacets = exports.QueryContents = exports.PublishText = exports.PublishContents = exports.IsContentDone = exports.IngestUri = exports.IngestTextBatch = exports.IngestText = exports.IngestEncodedFile = exports.IngestBatch = exports.GetContent = exports.ExtractText = exports.ExtractContents = exports.DescribeImage = exports.DescribeEncodedImage = exports.DeleteContents = exports.DeleteContent = exports.DeleteAllContents = exports.CountContents = exports.UpdateCollection = exports.RemoveContentsFromCollection = exports.QueryCollections = exports.GetCollection = exports.DeleteCollections = exports.DeleteCollection = exports.DeleteAllCollections = exports.CreateCollection = exports.CountCollections = exports.AddContentsToCollections = exports.UpdateCategory = exports.QueryCategories = exports.GetCategory = exports.DeleteCategory = exports.DeleteCategories = exports.DeleteAllCategories = exports.CreateCategory = exports.CountCategories = exports.UpdateAlert = exports.QueryAlerts = exports.GetAlert = exports.EnableAlert = exports.DisableAlert = exports.DeleteAllAlerts = exports.DeleteAlerts = exports.DeleteAlert = exports.CreateAlert = exports.CountAlerts = void 0;
|
7
|
+
exports.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 = exports.SummarizeText = void 0;
|
8
|
+
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 = exports.DeleteAllLabels = void 0;
|
9
|
+
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 = exports.DeleteMedicalGuidelines = void 0;
|
10
|
+
exports.DeleteSoftwares = exports.DeleteSoftware = exports.DeleteAllSoftwares = exports.CreateSoftware = exports.CountSoftwares = exports.SearchWeb = exports.MapWeb = exports.UpdateRepo = exports.QueryRepos = exports.GetRepo = exports.DeleteRepos = exports.DeleteRepo = exports.DeleteAllRepos = exports.CreateRepo = exports.CountRepos = exports.UpdateProject = exports.QueryUsage = exports.QueryCredits = exports.LookupUsage = exports.LookupCredits = exports.GetProject = exports.UpdateProduct = exports.QueryProducts = exports.GetProduct = exports.DeleteProducts = exports.DeleteProduct = exports.DeleteAllProducts = exports.CreateProduct = exports.CountProducts = exports.UpdatePlace = exports.QueryPlaces = exports.GetPlace = exports.DeletePlaces = exports.DeletePlace = exports.DeleteAllPlaces = exports.CreatePlace = exports.CountPlaces = exports.UpdatePerson = exports.QueryPersons = exports.GetPerson = exports.DeletePersons = exports.DeletePerson = exports.DeleteAllPersons = exports.CreatePerson = exports.CountPersons = exports.UpdateOrganization = exports.QueryOrganizations = exports.GetOrganization = exports.DeleteOrganizations = exports.DeleteOrganization = 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 = exports.QuerySoftwares = exports.GetSoftware = 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) {
|
@@ -806,6 +806,32 @@ exports.ExtractContents = (0, graphql_tag_1.default) `
|
|
806
806
|
content {
|
807
807
|
id
|
808
808
|
}
|
809
|
+
name
|
810
|
+
value
|
811
|
+
startTime
|
812
|
+
endTime
|
813
|
+
pageNumber
|
814
|
+
error
|
815
|
+
}
|
816
|
+
}
|
817
|
+
`;
|
818
|
+
exports.ExtractText = (0, graphql_tag_1.default) `
|
819
|
+
mutation ExtractText($prompt: String!, $text: String!, $textType: TextTypes, $specification: EntityReferenceInput!, $tools: [ToolDefinitionInput!]!, $correlationId: String) {
|
820
|
+
extractText(
|
821
|
+
prompt: $prompt
|
822
|
+
text: $text
|
823
|
+
textType: $textType
|
824
|
+
specification: $specification
|
825
|
+
tools: $tools
|
826
|
+
correlationId: $correlationId
|
827
|
+
) {
|
828
|
+
specification {
|
829
|
+
id
|
830
|
+
}
|
831
|
+
content {
|
832
|
+
id
|
833
|
+
}
|
834
|
+
name
|
809
835
|
value
|
810
836
|
startTime
|
811
837
|
endTime
|
@@ -6105,6 +6131,18 @@ exports.UpdateRepo = (0, graphql_tag_1.default) `
|
|
6105
6131
|
}
|
6106
6132
|
}
|
6107
6133
|
`;
|
6134
|
+
exports.MapWeb = (0, graphql_tag_1.default) `
|
6135
|
+
query MapWeb($uri: URL!, $allowedPaths: [String!], $excludedPaths: [String!], $correlationId: String) {
|
6136
|
+
mapWeb(
|
6137
|
+
uri: $uri
|
6138
|
+
allowedPaths: $allowedPaths
|
6139
|
+
excludedPaths: $excludedPaths
|
6140
|
+
correlationId: $correlationId
|
6141
|
+
) {
|
6142
|
+
results
|
6143
|
+
}
|
6144
|
+
}
|
6145
|
+
`;
|
6108
6146
|
exports.SearchWeb = (0, graphql_tag_1.default) `
|
6109
6147
|
query SearchWeb($text: String!, $service: SearchServiceTypes, $limit: Int, $correlationId: String) {
|
6110
6148
|
searchWeb(
|
@@ -3000,23 +3000,25 @@ export type EventUpdateInput = {
|
|
3000
3000
|
/** The event URI. */
|
3001
3001
|
uri?: InputMaybe<Scalars['URL']['input']>;
|
3002
3002
|
};
|
3003
|
-
/** Represents an prompted LLM extraction. */
|
3003
|
+
/** Represents an prompted LLM data extraction. */
|
3004
3004
|
export type ExtractCompletion = {
|
3005
3005
|
__typename?: 'ExtractCompletion';
|
3006
|
-
/** The content. */
|
3006
|
+
/** The content from which data was extracted, optional. */
|
3007
3007
|
content?: Maybe<EntityReference>;
|
3008
|
-
/** The end time of the audio transcript segment. */
|
3008
|
+
/** The end time of the audio transcript segment, when extracting from audio content. */
|
3009
3009
|
endTime?: Maybe<Scalars['TimeSpan']['output']>;
|
3010
|
-
/** If
|
3010
|
+
/** If data extraction failed, the error message. */
|
3011
3011
|
error?: Maybe<Scalars['String']['output']>;
|
3012
|
-
/** The
|
3012
|
+
/** The name of the called tool. */
|
3013
|
+
name: Scalars['String']['output'];
|
3014
|
+
/** The page index of the text document, when extracting from document content. */
|
3013
3015
|
pageNumber?: Maybe<Scalars['Int']['output']>;
|
3014
|
-
/** The LLM specification. */
|
3015
|
-
specification
|
3016
|
-
/** The start time of the audio transcript segment. */
|
3016
|
+
/** The LLM specification used for data extraction. */
|
3017
|
+
specification: EntityReference;
|
3018
|
+
/** The start time of the audio transcript segment, when extracting from audio content. */
|
3017
3019
|
startTime?: Maybe<Scalars['TimeSpan']['output']>;
|
3018
|
-
/** The extracted JSON value. */
|
3019
|
-
value
|
3020
|
+
/** The extracted JSON value from the called tool. */
|
3021
|
+
value: Scalars['String']['output'];
|
3020
3022
|
};
|
3021
3023
|
/** Represents an extraction workflow job. */
|
3022
3024
|
export type ExtractionWorkflowJob = {
|
@@ -6797,6 +6799,8 @@ export type Mutation = {
|
|
6797
6799
|
enableFeed?: Maybe<Feed>;
|
6798
6800
|
/** Extracts data using tool calling, from contents resulting from the provided filter criteria. */
|
6799
6801
|
extractContents?: Maybe<Array<Maybe<ExtractCompletion>>>;
|
6802
|
+
/** Extracts data using tool calling, from text. */
|
6803
|
+
extractText?: Maybe<Array<Maybe<ExtractCompletion>>>;
|
6800
6804
|
/** Format a conversation LLM user prompt. */
|
6801
6805
|
formatConversation?: Maybe<PromptConversation>;
|
6802
6806
|
/** Ingests a batch of content by URI. Supports files and webpages. */
|
@@ -7392,6 +7396,14 @@ export type MutationExtractContentsArgs = {
|
|
7392
7396
|
specification: EntityReferenceInput;
|
7393
7397
|
tools: Array<ToolDefinitionInput>;
|
7394
7398
|
};
|
7399
|
+
export type MutationExtractTextArgs = {
|
7400
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7401
|
+
prompt: Scalars['String']['input'];
|
7402
|
+
specification: EntityReferenceInput;
|
7403
|
+
text: Scalars['String']['input'];
|
7404
|
+
textType?: InputMaybe<TextTypes>;
|
7405
|
+
tools: Array<ToolDefinitionInput>;
|
7406
|
+
};
|
7395
7407
|
export type MutationFormatConversationArgs = {
|
7396
7408
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
7397
7409
|
id?: InputMaybe<Scalars['ID']['input']>;
|
@@ -9400,7 +9412,7 @@ export type PromptCompletion = {
|
|
9400
9412
|
error?: Maybe<Scalars['String']['output']>;
|
9401
9413
|
/** The completed messages. */
|
9402
9414
|
messages?: Maybe<Array<Maybe<ConversationMessage>>>;
|
9403
|
-
/** The LLM specification. */
|
9415
|
+
/** The LLM specification used for prompt completion, optional. */
|
9404
9416
|
specification?: Maybe<EntityReference>;
|
9405
9417
|
};
|
9406
9418
|
/** Represents a prompted conversation. */
|
@@ -9562,6 +9574,8 @@ export type Query = {
|
|
9562
9574
|
lookupCredits?: Maybe<ProjectCredits>;
|
9563
9575
|
/** Lookup usage records given tenant correlation identifier. */
|
9564
9576
|
lookupUsage?: Maybe<Array<Maybe<ProjectUsageRecord>>>;
|
9577
|
+
/** Enumerates the web pages at or beneath the provided URL using web sitemap. */
|
9578
|
+
mapWeb?: Maybe<UriResults>;
|
9565
9579
|
/** Lookup a medical condition given its ID. */
|
9566
9580
|
medicalCondition?: Maybe<MedicalCondition>;
|
9567
9581
|
/** Retrieves medical conditions based on the provided filter criteria. */
|
@@ -9862,6 +9876,12 @@ export type QueryLookupCreditsArgs = {
|
|
9862
9876
|
export type QueryLookupUsageArgs = {
|
9863
9877
|
correlationId: Scalars['String']['input'];
|
9864
9878
|
};
|
9879
|
+
export type QueryMapWebArgs = {
|
9880
|
+
allowedPaths?: InputMaybe<Array<Scalars['String']['input']>>;
|
9881
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
9882
|
+
excludedPaths?: InputMaybe<Array<Scalars['String']['input']>>;
|
9883
|
+
uri: Scalars['URL']['input'];
|
9884
|
+
};
|
9865
9885
|
export type QueryMedicalConditionArgs = {
|
9866
9886
|
correlationId?: InputMaybe<Scalars['String']['input']>;
|
9867
9887
|
id: Scalars['ID']['input'];
|
@@ -11518,6 +11538,12 @@ export type UriResult = {
|
|
11518
11538
|
/** The URI result. */
|
11519
11539
|
uri?: Maybe<Scalars['URL']['output']>;
|
11520
11540
|
};
|
11541
|
+
/** Represents URI results. */
|
11542
|
+
export type UriResults = {
|
11543
|
+
__typename?: 'UriResults';
|
11544
|
+
/** The URI results. */
|
11545
|
+
results?: Maybe<Array<Maybe<Scalars['URL']['output']>>>;
|
11546
|
+
};
|
11521
11547
|
/** Represents video metadata. */
|
11522
11548
|
export type VideoMetadata = {
|
11523
11549
|
__typename?: 'VideoMetadata';
|
@@ -12804,15 +12830,44 @@ export type ExtractContentsMutation = {
|
|
12804
12830
|
__typename?: 'Mutation';
|
12805
12831
|
extractContents?: Array<{
|
12806
12832
|
__typename?: 'ExtractCompletion';
|
12807
|
-
|
12833
|
+
name: string;
|
12834
|
+
value: string;
|
12808
12835
|
startTime?: any | null;
|
12809
12836
|
endTime?: any | null;
|
12810
12837
|
pageNumber?: number | null;
|
12811
12838
|
error?: string | null;
|
12812
|
-
specification
|
12839
|
+
specification: {
|
12840
|
+
__typename?: 'EntityReference';
|
12841
|
+
id: string;
|
12842
|
+
};
|
12843
|
+
content?: {
|
12813
12844
|
__typename?: 'EntityReference';
|
12814
12845
|
id: string;
|
12815
12846
|
} | null;
|
12847
|
+
} | null> | null;
|
12848
|
+
};
|
12849
|
+
export type ExtractTextMutationVariables = Exact<{
|
12850
|
+
prompt: Scalars['String']['input'];
|
12851
|
+
text: Scalars['String']['input'];
|
12852
|
+
textType?: InputMaybe<TextTypes>;
|
12853
|
+
specification: EntityReferenceInput;
|
12854
|
+
tools: Array<ToolDefinitionInput> | ToolDefinitionInput;
|
12855
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
12856
|
+
}>;
|
12857
|
+
export type ExtractTextMutation = {
|
12858
|
+
__typename?: 'Mutation';
|
12859
|
+
extractText?: Array<{
|
12860
|
+
__typename?: 'ExtractCompletion';
|
12861
|
+
name: string;
|
12862
|
+
value: string;
|
12863
|
+
startTime?: any | null;
|
12864
|
+
endTime?: any | null;
|
12865
|
+
pageNumber?: number | null;
|
12866
|
+
error?: string | null;
|
12867
|
+
specification: {
|
12868
|
+
__typename?: 'EntityReference';
|
12869
|
+
id: string;
|
12870
|
+
};
|
12816
12871
|
content?: {
|
12817
12872
|
__typename?: 'EntityReference';
|
12818
12873
|
id: string;
|
@@ -19096,6 +19151,19 @@ export type UpdateRepoMutation = {
|
|
19096
19151
|
name: string;
|
19097
19152
|
} | null;
|
19098
19153
|
};
|
19154
|
+
export type MapWebQueryVariables = Exact<{
|
19155
|
+
uri: Scalars['URL']['input'];
|
19156
|
+
allowedPaths?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
19157
|
+
excludedPaths?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
|
19158
|
+
correlationId?: InputMaybe<Scalars['String']['input']>;
|
19159
|
+
}>;
|
19160
|
+
export type MapWebQuery = {
|
19161
|
+
__typename?: 'Query';
|
19162
|
+
mapWeb?: {
|
19163
|
+
__typename?: 'UriResults';
|
19164
|
+
results?: Array<any | null> | null;
|
19165
|
+
} | null;
|
19166
|
+
};
|
19099
19167
|
export type SearchWebQueryVariables = Exact<{
|
19100
19168
|
text: Scalars['String']['input'];
|
19101
19169
|
service?: InputMaybe<SearchServiceTypes>;
|