@semantha/sdk 11.4.0 → 11.6.0
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/index.d.mts +47 -7
- package/dist/index.d.ts +47 -7
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +16 -13
package/dist/index.d.mts
CHANGED
|
@@ -272,6 +272,8 @@ interface Chat {
|
|
|
272
272
|
topK?: number;
|
|
273
273
|
conversationId?: string;
|
|
274
274
|
polarionAccessToken?: string;
|
|
275
|
+
polarionBaseUrl?: string;
|
|
276
|
+
enabledMcpTools?: string[];
|
|
275
277
|
}
|
|
276
278
|
|
|
277
279
|
/**
|
|
@@ -1197,6 +1199,17 @@ declare const MatcherTypeEnumValues: readonly ["REGEX", "ANDREGEX", "ANDNOTREGEX
|
|
|
1197
1199
|
type MatcherTypeEnum = (typeof MatcherTypeEnumValues)[number];
|
|
1198
1200
|
declare function isMatcherTypeEnumValue(value: any): value is MatcherTypeEnum;
|
|
1199
1201
|
|
|
1202
|
+
/**
|
|
1203
|
+
* @author semantha
|
|
1204
|
+
*
|
|
1205
|
+
* This is a generated file do not change manually!
|
|
1206
|
+
*/
|
|
1207
|
+
interface McpToolDescriptor {
|
|
1208
|
+
label?: string;
|
|
1209
|
+
description?: string;
|
|
1210
|
+
allowedTools?: string[];
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1200
1213
|
/**
|
|
1201
1214
|
* @author semantha
|
|
1202
1215
|
*
|
|
@@ -1222,7 +1235,7 @@ interface MetaInfoPage {
|
|
|
1222
1235
|
*
|
|
1223
1236
|
* This is a generated file do not change manually!
|
|
1224
1237
|
*/
|
|
1225
|
-
declare const ModeEnumValues: readonly ["fingerprint", "keyword", "document", "document_fingerprint", "fingerprint_keyword", "auto"];
|
|
1238
|
+
declare const ModeEnumValues: readonly ["fingerprint", "keyword", "document", "document_fingerprint", "fingerprint_keyword", "auto", "fingerprint_exact", "document_fingerprint_exact"];
|
|
1226
1239
|
type ModeEnum = (typeof ModeEnumValues)[number];
|
|
1227
1240
|
declare function isModeEnumValue(value: any): value is ModeEnum;
|
|
1228
1241
|
|
|
@@ -1603,7 +1616,7 @@ interface SemanticModel {
|
|
|
1603
1616
|
*
|
|
1604
1617
|
* This is a generated file do not change manually!
|
|
1605
1618
|
*/
|
|
1606
|
-
declare const SettingsDefaultSimilarityModeEnumValues: readonly ["fingerprint", "keyword", "document", "document_fingerprint", "fingerprint_keyword", "auto"];
|
|
1619
|
+
declare const SettingsDefaultSimilarityModeEnumValues: readonly ["fingerprint", "keyword", "document", "document_fingerprint", "fingerprint_keyword", "auto", "fingerprint_exact", "document_fingerprint_exact"];
|
|
1607
1620
|
type SettingsDefaultSimilarityModeEnum = (typeof SettingsDefaultSimilarityModeEnumValues)[number];
|
|
1608
1621
|
declare function isSettingsDefaultSimilarityModeEnumValue(value: any): value is SettingsDefaultSimilarityModeEnum;
|
|
1609
1622
|
|
|
@@ -2969,6 +2982,24 @@ declare class DocumenttypesEndpoint {
|
|
|
2969
2982
|
post(body?: DocumentType): Promise<DocumentType>;
|
|
2970
2983
|
}
|
|
2971
2984
|
|
|
2985
|
+
/**
|
|
2986
|
+
* @author semantha
|
|
2987
|
+
*
|
|
2988
|
+
* Class to access resource "/api/domains/{domainname}/mcptools"
|
|
2989
|
+
* This is a generated file do not change manually!
|
|
2990
|
+
*/
|
|
2991
|
+
declare class McptoolsEndpoint {
|
|
2992
|
+
private readonly restClient;
|
|
2993
|
+
private readonly parentEndpoint;
|
|
2994
|
+
private readonly ENDPOINT;
|
|
2995
|
+
constructor(restClient: RestClient, parentEndpoint: string);
|
|
2996
|
+
/**
|
|
2997
|
+
* List MCP tools activated for this domain.
|
|
2998
|
+
* Returns the MCP servers that have been activated for the given domain. Chat callers may reference any of these by `label` in the `enabledMcpTools` field of the chat request body. The list is the intersection of the platform's global MCP server pool and the domain's activation set.
|
|
2999
|
+
*/
|
|
3000
|
+
get(): Promise<McpToolDescriptor[]>;
|
|
3001
|
+
}
|
|
3002
|
+
|
|
2972
3003
|
/**
|
|
2973
3004
|
* @author semantha
|
|
2974
3005
|
*
|
|
@@ -3557,7 +3588,9 @@ declare class ReferencesEndpoint {
|
|
|
3557
3588
|
* keyword: keyword: search based on sentences;
|
|
3558
3589
|
* document: a bag-of-words search that ranks a set of documents based on the query terms appearing in each document, regardless of their proximity within the document. Higher scores indicate higher similarity. Please note that the similarity score has no upper limit and is not normalized;
|
|
3559
3590
|
* document_fingerprint: a bag-of-words search that ranks a set of documents based on the query terms appearing in each document, regardless of their proximity within the document. The results are then reranked based on a semantic search. This reranking results in normalized scores and as such represents an enhancement of the mode document;
|
|
3560
|
-
* fingerprint_keyword (formerly auto): semantic search, if no results are found a keyword search is performed
|
|
3591
|
+
* fingerprint_keyword (formerly auto): semantic search, if no results are found a keyword search is performed;
|
|
3592
|
+
* fingerprint_exact: like fingerprint, but forces an exact (brute-force) vector search instead of the approximate one for this request;
|
|
3593
|
+
* document_fingerprint_exact: like document_fingerprint, but forces an exact (brute-force) vector search for the semantic reranking step of this request
|
|
3561
3594
|
* Creating document model: It also defines what structure should be considered for what operator (similarity or extraction).
|
|
3562
3595
|
* @param documenttype string? - Specifies the document type that is to be used by semantha when reading the uploaded document.
|
|
3563
3596
|
* @param metadata DocumentMetaData[]? - Filter by metadata
|
|
@@ -3615,7 +3648,9 @@ declare class ReferencesEndpoint {
|
|
|
3615
3648
|
* keyword: keyword: search based on sentences;
|
|
3616
3649
|
* document: a bag-of-words search that ranks a set of documents based on the query terms appearing in each document, regardless of their proximity within the document. Higher scores indicate higher similarity. Please note that the similarity score has no upper limit and is not normalized;
|
|
3617
3650
|
* document_fingerprint: a bag-of-words search that ranks a set of documents based on the query terms appearing in each document, regardless of their proximity within the document. The results are then reranked based on a semantic search. This reranking results in normalized scores and as such represents an enhancement of the mode document;
|
|
3618
|
-
* fingerprint_keyword (formerly auto): semantic search, if no results are found a keyword search is performed
|
|
3651
|
+
* fingerprint_keyword (formerly auto): semantic search, if no results are found a keyword search is performed;
|
|
3652
|
+
* fingerprint_exact: like fingerprint, but forces an exact (brute-force) vector search instead of the approximate one for this request;
|
|
3653
|
+
* document_fingerprint_exact: like document_fingerprint, but forces an exact (brute-force) vector search for the semantic reranking step of this request
|
|
3619
3654
|
* Creating document model: It also defines what structure should be considered for what operator (similarity or extraction).
|
|
3620
3655
|
* @param documenttype string? - Specifies the document type that is to be used by semantha when reading the uploaded document.
|
|
3621
3656
|
* @param metadata DocumentMetaData[]? - Filter by metadata
|
|
@@ -3673,7 +3708,9 @@ declare class ReferencesEndpoint {
|
|
|
3673
3708
|
* keyword: keyword: search based on sentences;
|
|
3674
3709
|
* document: a bag-of-words search that ranks a set of documents based on the query terms appearing in each document, regardless of their proximity within the document. Higher scores indicate higher similarity. Please note that the similarity score has no upper limit and is not normalized;
|
|
3675
3710
|
* document_fingerprint: a bag-of-words search that ranks a set of documents based on the query terms appearing in each document, regardless of their proximity within the document. The results are then reranked based on a semantic search. This reranking results in normalized scores and as such represents an enhancement of the mode document;
|
|
3676
|
-
* fingerprint_keyword (formerly auto): semantic search, if no results are found a keyword search is performed
|
|
3711
|
+
* fingerprint_keyword (formerly auto): semantic search, if no results are found a keyword search is performed;
|
|
3712
|
+
* fingerprint_exact: like fingerprint, but forces an exact (brute-force) vector search instead of the approximate one for this request;
|
|
3713
|
+
* document_fingerprint_exact: like document_fingerprint, but forces an exact (brute-force) vector search for the semantic reranking step of this request
|
|
3677
3714
|
* Creating document model: It also defines what structure should be considered for what operator (similarity or extraction).
|
|
3678
3715
|
* @param documenttype string? - Specifies the document type that is to be used by semantha when reading the uploaded document.
|
|
3679
3716
|
* @param metadata DocumentMetaData[]? - Filter by metadata
|
|
@@ -3731,7 +3768,9 @@ declare class ReferencesEndpoint {
|
|
|
3731
3768
|
* keyword: keyword: search based on sentences;
|
|
3732
3769
|
* document: a bag-of-words search that ranks a set of documents based on the query terms appearing in each document, regardless of their proximity within the document. Higher scores indicate higher similarity. Please note that the similarity score has no upper limit and is not normalized;
|
|
3733
3770
|
* document_fingerprint: a bag-of-words search that ranks a set of documents based on the query terms appearing in each document, regardless of their proximity within the document. The results are then reranked based on a semantic search. This reranking results in normalized scores and as such represents an enhancement of the mode document;
|
|
3734
|
-
* fingerprint_keyword (formerly auto): semantic search, if no results are found a keyword search is performed
|
|
3771
|
+
* fingerprint_keyword (formerly auto): semantic search, if no results are found a keyword search is performed;
|
|
3772
|
+
* fingerprint_exact: like fingerprint, but forces an exact (brute-force) vector search instead of the approximate one for this request;
|
|
3773
|
+
* document_fingerprint_exact: like document_fingerprint, but forces an exact (brute-force) vector search for the semantic reranking step of this request
|
|
3735
3774
|
* Creating document model: It also defines what structure should be considered for what operator (similarity or extraction).
|
|
3736
3775
|
* @param documenttype string? - Specifies the document type that is to be used by semantha when reading the uploaded document.
|
|
3737
3776
|
* @param metadata DocumentMetaData[]? - Filter by metadata
|
|
@@ -3973,6 +4012,7 @@ declare class DomainEndpoint {
|
|
|
3973
4012
|
documents(): DocumentsEndpoint;
|
|
3974
4013
|
documenttypes(): DocumenttypesEndpoint;
|
|
3975
4014
|
documenttypes(id: string): DocumenttypeEndpoint;
|
|
4015
|
+
mcptools(): McptoolsEndpoint;
|
|
3976
4016
|
modelclasses(): ModelclassesEndpoint;
|
|
3977
4017
|
modelinstances(): ModelinstancesEndpoint;
|
|
3978
4018
|
prompts(): PromptsEndpoint;
|
|
@@ -5081,4 +5121,4 @@ declare class SemanthaAPI {
|
|
|
5081
5121
|
model(): ModelEndpoint;
|
|
5082
5122
|
}
|
|
5083
5123
|
|
|
5084
|
-
export { type AnnotationCell, type AnnotationPage, type Answer, type AnswerReference, AnswersEndpoint, type Area, type Argument, type Attachment, type Attribute, type AttributeDatatypeEnum, AttributeDatatypeEnumValues, type AttributeOverview, type AttributeOverviewDatatypeEnum, AttributeOverviewDatatypeEnumValues, type BoostWord, BulkDomainsEndpoint, BulkEndpoint, BulkModelEndpoint, BulkdomainsDocumentclassesEndpoint, BulkdomainsDocumenttypesEndpoint, BulkdomainsDomainEndpoint, BulkdomainsReferencedocumentsEndpoint, BulkdomainsReferencesEndpoint, BulkmodelBoostwordsEndpoint, BulkmodelClassEndpoint, BulkmodelClassesEndpoint, BulkmodelDatapropertiesEndpoint, BulkmodelDomainEndpoint, BulkmodelDomainsEndpoint, BulkmodelInstancesEndpoint, BulkmodelMetadataEndpoint, BulkmodelNamedentitiesEndpoint, BulkmodelRulesEndpoint, BulkmodelStopwordsEndpoint, BulkmodelSynonymsEndpoint, BulkmodelclassInstancesEndpoint, type CellType, CelltypesEndpoint, type Char, type Chat, ChatEndpoint, type ChatResponse, ChatsEndpoint, ChildExtractorclassesEndpoint, type Class, type ClassBulk, type ClassBulkDatatypeEnum, ClassBulkDatatypeEnumValues, type ClassesOverview, CloneEndpoint, type ComplexProperty, type Condition, type ConditionValue, ConversionsEndpoint, type CurrentUser, CurrentuserEndpoint, type CustomField, type DataProperty, DiffEndpoint, type Difference, type DifferenceOperationEnum, DifferenceOperationEnumValues, type Distance, DocclassCustomfieldsEndpoint, DocclassDocumentclassesEndpoint, DocclassReferencedocumentsEndpoint, DocclassTagsEndpoint, type Document, type DocumentClass, type DocumentClassBulk, type DocumentClassNode, type DocumentInformation, type DocumentMetaData, type DocumentNamedEntity, type DocumentTable, type DocumentType, type DocumentTypeChange, type DocumentTypeConfig, DocumentannotationsEndpoint, DocumentclassEndpoint, DocumentclassesEndpoint, type DocumentmodeEnum, DocumentmodeEnumValues, DocumentsEndpoint, DocumenttypeEndpoint, DocumenttypesEndpoint, type Domain, DomainEndpoint, type DomainInfo, DomainsEndpoint, type Entity, type ErrorContainer, type ErrorField, type ErrorFieldCodeEnum, ErrorFieldCodeEnumValues, type Expression, type ExtractionArea, type ExtractionFile, type ExtractionReference, type Extractor, type ExtractorAttribute, type ExtractorAttributeDatatypeEnum, ExtractorAttributeDatatypeEnumValues, type ExtractorClass, type ExtractorClassOverview, type ExtractorTypeEnum, ExtractorTypeEnumValues, type Features, type Field, type FieldTypeEnum, FieldTypeEnumValues, type FileReference, type Finding, type FormatInformation, type Formatter, ImageEndpoint, ImagesEndpoint, type Info, InfoEndpoint, type Instance, type InstanceChild, type InstanceOverview, type Label, type LanguageDetection, LanguagesEndpoint, type Link, type LinkedInstance, type LinkedValue, MarkdownEndpoint, type Matcher, type MatcherTypeEnum, MatcherTypeEnumValues, MediaType, type Message, type MessageRoleEnum, MessageRoleEnumValues, type MetaInfoPage, type Metadata, type MetadataValue, type ModeEnum, ModeEnumValues, ModelAttributesEndpoint, ModelBoostwordEndpoint, ModelBoostwordsEndpoint, type ModelClass, ModelDatapropertiesEndpoint, ModelDatapropertyEndpoint, ModelDatatypesEndpoint, ModelDomainEndpoint, ModelDomainsEndpoint, ModelEndpoint, ModelExtractorclassEndpoint, ModelExtractorclassesEndpoint, ModelExtractorsEndpoint, ModelExtractortypesEndpoint, ModelFormattersEndpoint, type ModelInstance, type ModelMetadata, ModelMetadataEndpoint, ModelMetadatatypesEndpoint, ModelNamedentitiesEndpoint, ModelNamedentityEndpoint, ModelObjectpropertiesEndpoint, ModelOnemetadataEndpoint, ModelRegexEndpoint, ModelRegexesEndpoint, ModelRelationEndpoint, ModelRelationsEndpoint, ModelRuleEndpoint, ModelRulefunctionsEndpoint, ModelRulesEndpoint, ModelStopwordEndpoint, ModelStopwordsEndpoint, ModelSynonymEndpoint, ModelSynonymsEndpoint, ModelclassesEndpoint, ModelinstancesEndpoint, ModelontAttributeEndpoint, ModelontAttributesEndpoint, ModelontClassEndpoint, ModelontClassesEndpoint, ModelontInstanceEndpoint, ModelontInstancesEndpoint, ModelontclassInstancesEndpoint, type Name, type NamedEntity, NamedentitiesEndpoint, type Overview, type Page, type PageContent, type Paragraph, ParagraphEndpoint, type ParagraphPreview, type ParagraphUpdate, ParagraphsEndpoint, type ProcessInformation, type Prompt, PromptEndpoint, type PromptExecution, type PromptLabelEnum, PromptLabelEnumValues, type PromptOverview, type PromptOverviewPromptLabelEnum, PromptOverviewPromptLabelEnumValues, type PromptPromptLabelEnum, PromptPromptLabelEnumValues, type PromptResponse, PromptValidationEndpoint, type PromptValidationRequest, type PromptValidationResponse, type PromptValidationResult, type PromptValidationTemplate, PromptsEndpoint, type Range, type Rect, type Reference, type ReferenceDocumentsResponseContainer, ReferencedocumentEndpoint, ReferencedocumentsEndpoint, ReferencedocumentsStreamEndpoint, ReferencesEndpoint, type Regex, type Relation, type RelationCondition, type ResponseMetaInfo, RestClient, RestResponse, RolesEndpoint, type Row, type Rule, type RuleFunction, type RuleFunctionTypeEnum, RuleFunctionTypeEnumValues, type RuleOverview, SemanthaAPI, type SemanticModel, type Sentence, SentenceEndpoint, SentencesEndpoint, type Settings, type SettingsDefaultSimilarityModeEnum, SettingsDefaultSimilarityModeEnumValues, SettingsEndpoint, type SettingsExtractionStrategyEnum, SettingsExtractionStrategyEnumValues, type SettingsTaggingStrategyEnum, SettingsTaggingStrategyEnumValues, type SimpleProperty, type Statistic, StatisticEndpoint, type StopWord, type Summarization, SummarizationsEndpoint, type SummarylengthEnum, SummarylengthEnumValues, type Synonym, type TableCell, type TableInstance, type TagDocs, TagEndpoint, TagReferencedocumentsEndpoint, TagsEndpoint, type TextType, TexttypesEndpoint, type Translation, type TranslationResponse, TranslationsEndpoint, TreeEndpoint, type TypeEnum, TypeEnumValues, ValidationEndpoint, type Version, isAttributeDatatypeEnumValue, isAttributeOverviewDatatypeEnumValue, isClassBulkDatatypeEnumValue, isDifferenceOperationEnumValue, isDocumentmodeEnumValue, isErrorFieldCodeEnumValue, isExtractorAttributeDatatypeEnumValue, isExtractorTypeEnumValue, isFieldTypeEnumValue, isMatcherTypeEnumValue, isMessageRoleEnumValue, isModeEnumValue, isPromptLabelEnumValue, isPromptOverviewPromptLabelEnumValue, isPromptPromptLabelEnumValue, isRuleFunctionTypeEnumValue, isSettingsDefaultSimilarityModeEnumValue, isSettingsExtractionStrategyEnumValue, isSettingsTaggingStrategyEnumValue, isSummarylengthEnumValue, isTypeEnumValue };
|
|
5124
|
+
export { type AnnotationCell, type AnnotationPage, type Answer, type AnswerReference, AnswersEndpoint, type Area, type Argument, type Attachment, type Attribute, type AttributeDatatypeEnum, AttributeDatatypeEnumValues, type AttributeOverview, type AttributeOverviewDatatypeEnum, AttributeOverviewDatatypeEnumValues, type BoostWord, BulkDomainsEndpoint, BulkEndpoint, BulkModelEndpoint, BulkdomainsDocumentclassesEndpoint, BulkdomainsDocumenttypesEndpoint, BulkdomainsDomainEndpoint, BulkdomainsReferencedocumentsEndpoint, BulkdomainsReferencesEndpoint, BulkmodelBoostwordsEndpoint, BulkmodelClassEndpoint, BulkmodelClassesEndpoint, BulkmodelDatapropertiesEndpoint, BulkmodelDomainEndpoint, BulkmodelDomainsEndpoint, BulkmodelInstancesEndpoint, BulkmodelMetadataEndpoint, BulkmodelNamedentitiesEndpoint, BulkmodelRulesEndpoint, BulkmodelStopwordsEndpoint, BulkmodelSynonymsEndpoint, BulkmodelclassInstancesEndpoint, type CellType, CelltypesEndpoint, type Char, type Chat, ChatEndpoint, type ChatResponse, ChatsEndpoint, ChildExtractorclassesEndpoint, type Class, type ClassBulk, type ClassBulkDatatypeEnum, ClassBulkDatatypeEnumValues, type ClassesOverview, CloneEndpoint, type ComplexProperty, type Condition, type ConditionValue, ConversionsEndpoint, type CurrentUser, CurrentuserEndpoint, type CustomField, type DataProperty, DiffEndpoint, type Difference, type DifferenceOperationEnum, DifferenceOperationEnumValues, type Distance, DocclassCustomfieldsEndpoint, DocclassDocumentclassesEndpoint, DocclassReferencedocumentsEndpoint, DocclassTagsEndpoint, type Document, type DocumentClass, type DocumentClassBulk, type DocumentClassNode, type DocumentInformation, type DocumentMetaData, type DocumentNamedEntity, type DocumentTable, type DocumentType, type DocumentTypeChange, type DocumentTypeConfig, DocumentannotationsEndpoint, DocumentclassEndpoint, DocumentclassesEndpoint, type DocumentmodeEnum, DocumentmodeEnumValues, DocumentsEndpoint, DocumenttypeEndpoint, DocumenttypesEndpoint, type Domain, DomainEndpoint, type DomainInfo, DomainsEndpoint, type Entity, type ErrorContainer, type ErrorField, type ErrorFieldCodeEnum, ErrorFieldCodeEnumValues, type Expression, type ExtractionArea, type ExtractionFile, type ExtractionReference, type Extractor, type ExtractorAttribute, type ExtractorAttributeDatatypeEnum, ExtractorAttributeDatatypeEnumValues, type ExtractorClass, type ExtractorClassOverview, type ExtractorTypeEnum, ExtractorTypeEnumValues, type Features, type Field, type FieldTypeEnum, FieldTypeEnumValues, type FileReference, type Finding, type FormatInformation, type Formatter, ImageEndpoint, ImagesEndpoint, type Info, InfoEndpoint, type Instance, type InstanceChild, type InstanceOverview, type Label, type LanguageDetection, LanguagesEndpoint, type Link, type LinkedInstance, type LinkedValue, MarkdownEndpoint, type Matcher, type MatcherTypeEnum, MatcherTypeEnumValues, type McpToolDescriptor, McptoolsEndpoint, MediaType, type Message, type MessageRoleEnum, MessageRoleEnumValues, type MetaInfoPage, type Metadata, type MetadataValue, type ModeEnum, ModeEnumValues, ModelAttributesEndpoint, ModelBoostwordEndpoint, ModelBoostwordsEndpoint, type ModelClass, ModelDatapropertiesEndpoint, ModelDatapropertyEndpoint, ModelDatatypesEndpoint, ModelDomainEndpoint, ModelDomainsEndpoint, ModelEndpoint, ModelExtractorclassEndpoint, ModelExtractorclassesEndpoint, ModelExtractorsEndpoint, ModelExtractortypesEndpoint, ModelFormattersEndpoint, type ModelInstance, type ModelMetadata, ModelMetadataEndpoint, ModelMetadatatypesEndpoint, ModelNamedentitiesEndpoint, ModelNamedentityEndpoint, ModelObjectpropertiesEndpoint, ModelOnemetadataEndpoint, ModelRegexEndpoint, ModelRegexesEndpoint, ModelRelationEndpoint, ModelRelationsEndpoint, ModelRuleEndpoint, ModelRulefunctionsEndpoint, ModelRulesEndpoint, ModelStopwordEndpoint, ModelStopwordsEndpoint, ModelSynonymEndpoint, ModelSynonymsEndpoint, ModelclassesEndpoint, ModelinstancesEndpoint, ModelontAttributeEndpoint, ModelontAttributesEndpoint, ModelontClassEndpoint, ModelontClassesEndpoint, ModelontInstanceEndpoint, ModelontInstancesEndpoint, ModelontclassInstancesEndpoint, type Name, type NamedEntity, NamedentitiesEndpoint, type Overview, type Page, type PageContent, type Paragraph, ParagraphEndpoint, type ParagraphPreview, type ParagraphUpdate, ParagraphsEndpoint, type ProcessInformation, type Prompt, PromptEndpoint, type PromptExecution, type PromptLabelEnum, PromptLabelEnumValues, type PromptOverview, type PromptOverviewPromptLabelEnum, PromptOverviewPromptLabelEnumValues, type PromptPromptLabelEnum, PromptPromptLabelEnumValues, type PromptResponse, PromptValidationEndpoint, type PromptValidationRequest, type PromptValidationResponse, type PromptValidationResult, type PromptValidationTemplate, PromptsEndpoint, type Range, type Rect, type Reference, type ReferenceDocumentsResponseContainer, ReferencedocumentEndpoint, ReferencedocumentsEndpoint, ReferencedocumentsStreamEndpoint, ReferencesEndpoint, type Regex, type Relation, type RelationCondition, type ResponseMetaInfo, RestClient, RestResponse, RolesEndpoint, type Row, type Rule, type RuleFunction, type RuleFunctionTypeEnum, RuleFunctionTypeEnumValues, type RuleOverview, SemanthaAPI, type SemanticModel, type Sentence, SentenceEndpoint, SentencesEndpoint, type Settings, type SettingsDefaultSimilarityModeEnum, SettingsDefaultSimilarityModeEnumValues, SettingsEndpoint, type SettingsExtractionStrategyEnum, SettingsExtractionStrategyEnumValues, type SettingsTaggingStrategyEnum, SettingsTaggingStrategyEnumValues, type SimpleProperty, type Statistic, StatisticEndpoint, type StopWord, type Summarization, SummarizationsEndpoint, type SummarylengthEnum, SummarylengthEnumValues, type Synonym, type TableCell, type TableInstance, type TagDocs, TagEndpoint, TagReferencedocumentsEndpoint, TagsEndpoint, type TextType, TexttypesEndpoint, type Translation, type TranslationResponse, TranslationsEndpoint, TreeEndpoint, type TypeEnum, TypeEnumValues, ValidationEndpoint, type Version, isAttributeDatatypeEnumValue, isAttributeOverviewDatatypeEnumValue, isClassBulkDatatypeEnumValue, isDifferenceOperationEnumValue, isDocumentmodeEnumValue, isErrorFieldCodeEnumValue, isExtractorAttributeDatatypeEnumValue, isExtractorTypeEnumValue, isFieldTypeEnumValue, isMatcherTypeEnumValue, isMessageRoleEnumValue, isModeEnumValue, isPromptLabelEnumValue, isPromptOverviewPromptLabelEnumValue, isPromptPromptLabelEnumValue, isRuleFunctionTypeEnumValue, isSettingsDefaultSimilarityModeEnumValue, isSettingsExtractionStrategyEnumValue, isSettingsTaggingStrategyEnumValue, isSummarylengthEnumValue, isTypeEnumValue };
|
package/dist/index.d.ts
CHANGED
|
@@ -272,6 +272,8 @@ interface Chat {
|
|
|
272
272
|
topK?: number;
|
|
273
273
|
conversationId?: string;
|
|
274
274
|
polarionAccessToken?: string;
|
|
275
|
+
polarionBaseUrl?: string;
|
|
276
|
+
enabledMcpTools?: string[];
|
|
275
277
|
}
|
|
276
278
|
|
|
277
279
|
/**
|
|
@@ -1197,6 +1199,17 @@ declare const MatcherTypeEnumValues: readonly ["REGEX", "ANDREGEX", "ANDNOTREGEX
|
|
|
1197
1199
|
type MatcherTypeEnum = (typeof MatcherTypeEnumValues)[number];
|
|
1198
1200
|
declare function isMatcherTypeEnumValue(value: any): value is MatcherTypeEnum;
|
|
1199
1201
|
|
|
1202
|
+
/**
|
|
1203
|
+
* @author semantha
|
|
1204
|
+
*
|
|
1205
|
+
* This is a generated file do not change manually!
|
|
1206
|
+
*/
|
|
1207
|
+
interface McpToolDescriptor {
|
|
1208
|
+
label?: string;
|
|
1209
|
+
description?: string;
|
|
1210
|
+
allowedTools?: string[];
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1200
1213
|
/**
|
|
1201
1214
|
* @author semantha
|
|
1202
1215
|
*
|
|
@@ -1222,7 +1235,7 @@ interface MetaInfoPage {
|
|
|
1222
1235
|
*
|
|
1223
1236
|
* This is a generated file do not change manually!
|
|
1224
1237
|
*/
|
|
1225
|
-
declare const ModeEnumValues: readonly ["fingerprint", "keyword", "document", "document_fingerprint", "fingerprint_keyword", "auto"];
|
|
1238
|
+
declare const ModeEnumValues: readonly ["fingerprint", "keyword", "document", "document_fingerprint", "fingerprint_keyword", "auto", "fingerprint_exact", "document_fingerprint_exact"];
|
|
1226
1239
|
type ModeEnum = (typeof ModeEnumValues)[number];
|
|
1227
1240
|
declare function isModeEnumValue(value: any): value is ModeEnum;
|
|
1228
1241
|
|
|
@@ -1603,7 +1616,7 @@ interface SemanticModel {
|
|
|
1603
1616
|
*
|
|
1604
1617
|
* This is a generated file do not change manually!
|
|
1605
1618
|
*/
|
|
1606
|
-
declare const SettingsDefaultSimilarityModeEnumValues: readonly ["fingerprint", "keyword", "document", "document_fingerprint", "fingerprint_keyword", "auto"];
|
|
1619
|
+
declare const SettingsDefaultSimilarityModeEnumValues: readonly ["fingerprint", "keyword", "document", "document_fingerprint", "fingerprint_keyword", "auto", "fingerprint_exact", "document_fingerprint_exact"];
|
|
1607
1620
|
type SettingsDefaultSimilarityModeEnum = (typeof SettingsDefaultSimilarityModeEnumValues)[number];
|
|
1608
1621
|
declare function isSettingsDefaultSimilarityModeEnumValue(value: any): value is SettingsDefaultSimilarityModeEnum;
|
|
1609
1622
|
|
|
@@ -2969,6 +2982,24 @@ declare class DocumenttypesEndpoint {
|
|
|
2969
2982
|
post(body?: DocumentType): Promise<DocumentType>;
|
|
2970
2983
|
}
|
|
2971
2984
|
|
|
2985
|
+
/**
|
|
2986
|
+
* @author semantha
|
|
2987
|
+
*
|
|
2988
|
+
* Class to access resource "/api/domains/{domainname}/mcptools"
|
|
2989
|
+
* This is a generated file do not change manually!
|
|
2990
|
+
*/
|
|
2991
|
+
declare class McptoolsEndpoint {
|
|
2992
|
+
private readonly restClient;
|
|
2993
|
+
private readonly parentEndpoint;
|
|
2994
|
+
private readonly ENDPOINT;
|
|
2995
|
+
constructor(restClient: RestClient, parentEndpoint: string);
|
|
2996
|
+
/**
|
|
2997
|
+
* List MCP tools activated for this domain.
|
|
2998
|
+
* Returns the MCP servers that have been activated for the given domain. Chat callers may reference any of these by `label` in the `enabledMcpTools` field of the chat request body. The list is the intersection of the platform's global MCP server pool and the domain's activation set.
|
|
2999
|
+
*/
|
|
3000
|
+
get(): Promise<McpToolDescriptor[]>;
|
|
3001
|
+
}
|
|
3002
|
+
|
|
2972
3003
|
/**
|
|
2973
3004
|
* @author semantha
|
|
2974
3005
|
*
|
|
@@ -3557,7 +3588,9 @@ declare class ReferencesEndpoint {
|
|
|
3557
3588
|
* keyword: keyword: search based on sentences;
|
|
3558
3589
|
* document: a bag-of-words search that ranks a set of documents based on the query terms appearing in each document, regardless of their proximity within the document. Higher scores indicate higher similarity. Please note that the similarity score has no upper limit and is not normalized;
|
|
3559
3590
|
* document_fingerprint: a bag-of-words search that ranks a set of documents based on the query terms appearing in each document, regardless of their proximity within the document. The results are then reranked based on a semantic search. This reranking results in normalized scores and as such represents an enhancement of the mode document;
|
|
3560
|
-
* fingerprint_keyword (formerly auto): semantic search, if no results are found a keyword search is performed
|
|
3591
|
+
* fingerprint_keyword (formerly auto): semantic search, if no results are found a keyword search is performed;
|
|
3592
|
+
* fingerprint_exact: like fingerprint, but forces an exact (brute-force) vector search instead of the approximate one for this request;
|
|
3593
|
+
* document_fingerprint_exact: like document_fingerprint, but forces an exact (brute-force) vector search for the semantic reranking step of this request
|
|
3561
3594
|
* Creating document model: It also defines what structure should be considered for what operator (similarity or extraction).
|
|
3562
3595
|
* @param documenttype string? - Specifies the document type that is to be used by semantha when reading the uploaded document.
|
|
3563
3596
|
* @param metadata DocumentMetaData[]? - Filter by metadata
|
|
@@ -3615,7 +3648,9 @@ declare class ReferencesEndpoint {
|
|
|
3615
3648
|
* keyword: keyword: search based on sentences;
|
|
3616
3649
|
* document: a bag-of-words search that ranks a set of documents based on the query terms appearing in each document, regardless of their proximity within the document. Higher scores indicate higher similarity. Please note that the similarity score has no upper limit and is not normalized;
|
|
3617
3650
|
* document_fingerprint: a bag-of-words search that ranks a set of documents based on the query terms appearing in each document, regardless of their proximity within the document. The results are then reranked based on a semantic search. This reranking results in normalized scores and as such represents an enhancement of the mode document;
|
|
3618
|
-
* fingerprint_keyword (formerly auto): semantic search, if no results are found a keyword search is performed
|
|
3651
|
+
* fingerprint_keyword (formerly auto): semantic search, if no results are found a keyword search is performed;
|
|
3652
|
+
* fingerprint_exact: like fingerprint, but forces an exact (brute-force) vector search instead of the approximate one for this request;
|
|
3653
|
+
* document_fingerprint_exact: like document_fingerprint, but forces an exact (brute-force) vector search for the semantic reranking step of this request
|
|
3619
3654
|
* Creating document model: It also defines what structure should be considered for what operator (similarity or extraction).
|
|
3620
3655
|
* @param documenttype string? - Specifies the document type that is to be used by semantha when reading the uploaded document.
|
|
3621
3656
|
* @param metadata DocumentMetaData[]? - Filter by metadata
|
|
@@ -3673,7 +3708,9 @@ declare class ReferencesEndpoint {
|
|
|
3673
3708
|
* keyword: keyword: search based on sentences;
|
|
3674
3709
|
* document: a bag-of-words search that ranks a set of documents based on the query terms appearing in each document, regardless of their proximity within the document. Higher scores indicate higher similarity. Please note that the similarity score has no upper limit and is not normalized;
|
|
3675
3710
|
* document_fingerprint: a bag-of-words search that ranks a set of documents based on the query terms appearing in each document, regardless of their proximity within the document. The results are then reranked based on a semantic search. This reranking results in normalized scores and as such represents an enhancement of the mode document;
|
|
3676
|
-
* fingerprint_keyword (formerly auto): semantic search, if no results are found a keyword search is performed
|
|
3711
|
+
* fingerprint_keyword (formerly auto): semantic search, if no results are found a keyword search is performed;
|
|
3712
|
+
* fingerprint_exact: like fingerprint, but forces an exact (brute-force) vector search instead of the approximate one for this request;
|
|
3713
|
+
* document_fingerprint_exact: like document_fingerprint, but forces an exact (brute-force) vector search for the semantic reranking step of this request
|
|
3677
3714
|
* Creating document model: It also defines what structure should be considered for what operator (similarity or extraction).
|
|
3678
3715
|
* @param documenttype string? - Specifies the document type that is to be used by semantha when reading the uploaded document.
|
|
3679
3716
|
* @param metadata DocumentMetaData[]? - Filter by metadata
|
|
@@ -3731,7 +3768,9 @@ declare class ReferencesEndpoint {
|
|
|
3731
3768
|
* keyword: keyword: search based on sentences;
|
|
3732
3769
|
* document: a bag-of-words search that ranks a set of documents based on the query terms appearing in each document, regardless of their proximity within the document. Higher scores indicate higher similarity. Please note that the similarity score has no upper limit and is not normalized;
|
|
3733
3770
|
* document_fingerprint: a bag-of-words search that ranks a set of documents based on the query terms appearing in each document, regardless of their proximity within the document. The results are then reranked based on a semantic search. This reranking results in normalized scores and as such represents an enhancement of the mode document;
|
|
3734
|
-
* fingerprint_keyword (formerly auto): semantic search, if no results are found a keyword search is performed
|
|
3771
|
+
* fingerprint_keyword (formerly auto): semantic search, if no results are found a keyword search is performed;
|
|
3772
|
+
* fingerprint_exact: like fingerprint, but forces an exact (brute-force) vector search instead of the approximate one for this request;
|
|
3773
|
+
* document_fingerprint_exact: like document_fingerprint, but forces an exact (brute-force) vector search for the semantic reranking step of this request
|
|
3735
3774
|
* Creating document model: It also defines what structure should be considered for what operator (similarity or extraction).
|
|
3736
3775
|
* @param documenttype string? - Specifies the document type that is to be used by semantha when reading the uploaded document.
|
|
3737
3776
|
* @param metadata DocumentMetaData[]? - Filter by metadata
|
|
@@ -3973,6 +4012,7 @@ declare class DomainEndpoint {
|
|
|
3973
4012
|
documents(): DocumentsEndpoint;
|
|
3974
4013
|
documenttypes(): DocumenttypesEndpoint;
|
|
3975
4014
|
documenttypes(id: string): DocumenttypeEndpoint;
|
|
4015
|
+
mcptools(): McptoolsEndpoint;
|
|
3976
4016
|
modelclasses(): ModelclassesEndpoint;
|
|
3977
4017
|
modelinstances(): ModelinstancesEndpoint;
|
|
3978
4018
|
prompts(): PromptsEndpoint;
|
|
@@ -5081,4 +5121,4 @@ declare class SemanthaAPI {
|
|
|
5081
5121
|
model(): ModelEndpoint;
|
|
5082
5122
|
}
|
|
5083
5123
|
|
|
5084
|
-
export { type AnnotationCell, type AnnotationPage, type Answer, type AnswerReference, AnswersEndpoint, type Area, type Argument, type Attachment, type Attribute, type AttributeDatatypeEnum, AttributeDatatypeEnumValues, type AttributeOverview, type AttributeOverviewDatatypeEnum, AttributeOverviewDatatypeEnumValues, type BoostWord, BulkDomainsEndpoint, BulkEndpoint, BulkModelEndpoint, BulkdomainsDocumentclassesEndpoint, BulkdomainsDocumenttypesEndpoint, BulkdomainsDomainEndpoint, BulkdomainsReferencedocumentsEndpoint, BulkdomainsReferencesEndpoint, BulkmodelBoostwordsEndpoint, BulkmodelClassEndpoint, BulkmodelClassesEndpoint, BulkmodelDatapropertiesEndpoint, BulkmodelDomainEndpoint, BulkmodelDomainsEndpoint, BulkmodelInstancesEndpoint, BulkmodelMetadataEndpoint, BulkmodelNamedentitiesEndpoint, BulkmodelRulesEndpoint, BulkmodelStopwordsEndpoint, BulkmodelSynonymsEndpoint, BulkmodelclassInstancesEndpoint, type CellType, CelltypesEndpoint, type Char, type Chat, ChatEndpoint, type ChatResponse, ChatsEndpoint, ChildExtractorclassesEndpoint, type Class, type ClassBulk, type ClassBulkDatatypeEnum, ClassBulkDatatypeEnumValues, type ClassesOverview, CloneEndpoint, type ComplexProperty, type Condition, type ConditionValue, ConversionsEndpoint, type CurrentUser, CurrentuserEndpoint, type CustomField, type DataProperty, DiffEndpoint, type Difference, type DifferenceOperationEnum, DifferenceOperationEnumValues, type Distance, DocclassCustomfieldsEndpoint, DocclassDocumentclassesEndpoint, DocclassReferencedocumentsEndpoint, DocclassTagsEndpoint, type Document, type DocumentClass, type DocumentClassBulk, type DocumentClassNode, type DocumentInformation, type DocumentMetaData, type DocumentNamedEntity, type DocumentTable, type DocumentType, type DocumentTypeChange, type DocumentTypeConfig, DocumentannotationsEndpoint, DocumentclassEndpoint, DocumentclassesEndpoint, type DocumentmodeEnum, DocumentmodeEnumValues, DocumentsEndpoint, DocumenttypeEndpoint, DocumenttypesEndpoint, type Domain, DomainEndpoint, type DomainInfo, DomainsEndpoint, type Entity, type ErrorContainer, type ErrorField, type ErrorFieldCodeEnum, ErrorFieldCodeEnumValues, type Expression, type ExtractionArea, type ExtractionFile, type ExtractionReference, type Extractor, type ExtractorAttribute, type ExtractorAttributeDatatypeEnum, ExtractorAttributeDatatypeEnumValues, type ExtractorClass, type ExtractorClassOverview, type ExtractorTypeEnum, ExtractorTypeEnumValues, type Features, type Field, type FieldTypeEnum, FieldTypeEnumValues, type FileReference, type Finding, type FormatInformation, type Formatter, ImageEndpoint, ImagesEndpoint, type Info, InfoEndpoint, type Instance, type InstanceChild, type InstanceOverview, type Label, type LanguageDetection, LanguagesEndpoint, type Link, type LinkedInstance, type LinkedValue, MarkdownEndpoint, type Matcher, type MatcherTypeEnum, MatcherTypeEnumValues, MediaType, type Message, type MessageRoleEnum, MessageRoleEnumValues, type MetaInfoPage, type Metadata, type MetadataValue, type ModeEnum, ModeEnumValues, ModelAttributesEndpoint, ModelBoostwordEndpoint, ModelBoostwordsEndpoint, type ModelClass, ModelDatapropertiesEndpoint, ModelDatapropertyEndpoint, ModelDatatypesEndpoint, ModelDomainEndpoint, ModelDomainsEndpoint, ModelEndpoint, ModelExtractorclassEndpoint, ModelExtractorclassesEndpoint, ModelExtractorsEndpoint, ModelExtractortypesEndpoint, ModelFormattersEndpoint, type ModelInstance, type ModelMetadata, ModelMetadataEndpoint, ModelMetadatatypesEndpoint, ModelNamedentitiesEndpoint, ModelNamedentityEndpoint, ModelObjectpropertiesEndpoint, ModelOnemetadataEndpoint, ModelRegexEndpoint, ModelRegexesEndpoint, ModelRelationEndpoint, ModelRelationsEndpoint, ModelRuleEndpoint, ModelRulefunctionsEndpoint, ModelRulesEndpoint, ModelStopwordEndpoint, ModelStopwordsEndpoint, ModelSynonymEndpoint, ModelSynonymsEndpoint, ModelclassesEndpoint, ModelinstancesEndpoint, ModelontAttributeEndpoint, ModelontAttributesEndpoint, ModelontClassEndpoint, ModelontClassesEndpoint, ModelontInstanceEndpoint, ModelontInstancesEndpoint, ModelontclassInstancesEndpoint, type Name, type NamedEntity, NamedentitiesEndpoint, type Overview, type Page, type PageContent, type Paragraph, ParagraphEndpoint, type ParagraphPreview, type ParagraphUpdate, ParagraphsEndpoint, type ProcessInformation, type Prompt, PromptEndpoint, type PromptExecution, type PromptLabelEnum, PromptLabelEnumValues, type PromptOverview, type PromptOverviewPromptLabelEnum, PromptOverviewPromptLabelEnumValues, type PromptPromptLabelEnum, PromptPromptLabelEnumValues, type PromptResponse, PromptValidationEndpoint, type PromptValidationRequest, type PromptValidationResponse, type PromptValidationResult, type PromptValidationTemplate, PromptsEndpoint, type Range, type Rect, type Reference, type ReferenceDocumentsResponseContainer, ReferencedocumentEndpoint, ReferencedocumentsEndpoint, ReferencedocumentsStreamEndpoint, ReferencesEndpoint, type Regex, type Relation, type RelationCondition, type ResponseMetaInfo, RestClient, RestResponse, RolesEndpoint, type Row, type Rule, type RuleFunction, type RuleFunctionTypeEnum, RuleFunctionTypeEnumValues, type RuleOverview, SemanthaAPI, type SemanticModel, type Sentence, SentenceEndpoint, SentencesEndpoint, type Settings, type SettingsDefaultSimilarityModeEnum, SettingsDefaultSimilarityModeEnumValues, SettingsEndpoint, type SettingsExtractionStrategyEnum, SettingsExtractionStrategyEnumValues, type SettingsTaggingStrategyEnum, SettingsTaggingStrategyEnumValues, type SimpleProperty, type Statistic, StatisticEndpoint, type StopWord, type Summarization, SummarizationsEndpoint, type SummarylengthEnum, SummarylengthEnumValues, type Synonym, type TableCell, type TableInstance, type TagDocs, TagEndpoint, TagReferencedocumentsEndpoint, TagsEndpoint, type TextType, TexttypesEndpoint, type Translation, type TranslationResponse, TranslationsEndpoint, TreeEndpoint, type TypeEnum, TypeEnumValues, ValidationEndpoint, type Version, isAttributeDatatypeEnumValue, isAttributeOverviewDatatypeEnumValue, isClassBulkDatatypeEnumValue, isDifferenceOperationEnumValue, isDocumentmodeEnumValue, isErrorFieldCodeEnumValue, isExtractorAttributeDatatypeEnumValue, isExtractorTypeEnumValue, isFieldTypeEnumValue, isMatcherTypeEnumValue, isMessageRoleEnumValue, isModeEnumValue, isPromptLabelEnumValue, isPromptOverviewPromptLabelEnumValue, isPromptPromptLabelEnumValue, isRuleFunctionTypeEnumValue, isSettingsDefaultSimilarityModeEnumValue, isSettingsExtractionStrategyEnumValue, isSettingsTaggingStrategyEnumValue, isSummarylengthEnumValue, isTypeEnumValue };
|
|
5124
|
+
export { type AnnotationCell, type AnnotationPage, type Answer, type AnswerReference, AnswersEndpoint, type Area, type Argument, type Attachment, type Attribute, type AttributeDatatypeEnum, AttributeDatatypeEnumValues, type AttributeOverview, type AttributeOverviewDatatypeEnum, AttributeOverviewDatatypeEnumValues, type BoostWord, BulkDomainsEndpoint, BulkEndpoint, BulkModelEndpoint, BulkdomainsDocumentclassesEndpoint, BulkdomainsDocumenttypesEndpoint, BulkdomainsDomainEndpoint, BulkdomainsReferencedocumentsEndpoint, BulkdomainsReferencesEndpoint, BulkmodelBoostwordsEndpoint, BulkmodelClassEndpoint, BulkmodelClassesEndpoint, BulkmodelDatapropertiesEndpoint, BulkmodelDomainEndpoint, BulkmodelDomainsEndpoint, BulkmodelInstancesEndpoint, BulkmodelMetadataEndpoint, BulkmodelNamedentitiesEndpoint, BulkmodelRulesEndpoint, BulkmodelStopwordsEndpoint, BulkmodelSynonymsEndpoint, BulkmodelclassInstancesEndpoint, type CellType, CelltypesEndpoint, type Char, type Chat, ChatEndpoint, type ChatResponse, ChatsEndpoint, ChildExtractorclassesEndpoint, type Class, type ClassBulk, type ClassBulkDatatypeEnum, ClassBulkDatatypeEnumValues, type ClassesOverview, CloneEndpoint, type ComplexProperty, type Condition, type ConditionValue, ConversionsEndpoint, type CurrentUser, CurrentuserEndpoint, type CustomField, type DataProperty, DiffEndpoint, type Difference, type DifferenceOperationEnum, DifferenceOperationEnumValues, type Distance, DocclassCustomfieldsEndpoint, DocclassDocumentclassesEndpoint, DocclassReferencedocumentsEndpoint, DocclassTagsEndpoint, type Document, type DocumentClass, type DocumentClassBulk, type DocumentClassNode, type DocumentInformation, type DocumentMetaData, type DocumentNamedEntity, type DocumentTable, type DocumentType, type DocumentTypeChange, type DocumentTypeConfig, DocumentannotationsEndpoint, DocumentclassEndpoint, DocumentclassesEndpoint, type DocumentmodeEnum, DocumentmodeEnumValues, DocumentsEndpoint, DocumenttypeEndpoint, DocumenttypesEndpoint, type Domain, DomainEndpoint, type DomainInfo, DomainsEndpoint, type Entity, type ErrorContainer, type ErrorField, type ErrorFieldCodeEnum, ErrorFieldCodeEnumValues, type Expression, type ExtractionArea, type ExtractionFile, type ExtractionReference, type Extractor, type ExtractorAttribute, type ExtractorAttributeDatatypeEnum, ExtractorAttributeDatatypeEnumValues, type ExtractorClass, type ExtractorClassOverview, type ExtractorTypeEnum, ExtractorTypeEnumValues, type Features, type Field, type FieldTypeEnum, FieldTypeEnumValues, type FileReference, type Finding, type FormatInformation, type Formatter, ImageEndpoint, ImagesEndpoint, type Info, InfoEndpoint, type Instance, type InstanceChild, type InstanceOverview, type Label, type LanguageDetection, LanguagesEndpoint, type Link, type LinkedInstance, type LinkedValue, MarkdownEndpoint, type Matcher, type MatcherTypeEnum, MatcherTypeEnumValues, type McpToolDescriptor, McptoolsEndpoint, MediaType, type Message, type MessageRoleEnum, MessageRoleEnumValues, type MetaInfoPage, type Metadata, type MetadataValue, type ModeEnum, ModeEnumValues, ModelAttributesEndpoint, ModelBoostwordEndpoint, ModelBoostwordsEndpoint, type ModelClass, ModelDatapropertiesEndpoint, ModelDatapropertyEndpoint, ModelDatatypesEndpoint, ModelDomainEndpoint, ModelDomainsEndpoint, ModelEndpoint, ModelExtractorclassEndpoint, ModelExtractorclassesEndpoint, ModelExtractorsEndpoint, ModelExtractortypesEndpoint, ModelFormattersEndpoint, type ModelInstance, type ModelMetadata, ModelMetadataEndpoint, ModelMetadatatypesEndpoint, ModelNamedentitiesEndpoint, ModelNamedentityEndpoint, ModelObjectpropertiesEndpoint, ModelOnemetadataEndpoint, ModelRegexEndpoint, ModelRegexesEndpoint, ModelRelationEndpoint, ModelRelationsEndpoint, ModelRuleEndpoint, ModelRulefunctionsEndpoint, ModelRulesEndpoint, ModelStopwordEndpoint, ModelStopwordsEndpoint, ModelSynonymEndpoint, ModelSynonymsEndpoint, ModelclassesEndpoint, ModelinstancesEndpoint, ModelontAttributeEndpoint, ModelontAttributesEndpoint, ModelontClassEndpoint, ModelontClassesEndpoint, ModelontInstanceEndpoint, ModelontInstancesEndpoint, ModelontclassInstancesEndpoint, type Name, type NamedEntity, NamedentitiesEndpoint, type Overview, type Page, type PageContent, type Paragraph, ParagraphEndpoint, type ParagraphPreview, type ParagraphUpdate, ParagraphsEndpoint, type ProcessInformation, type Prompt, PromptEndpoint, type PromptExecution, type PromptLabelEnum, PromptLabelEnumValues, type PromptOverview, type PromptOverviewPromptLabelEnum, PromptOverviewPromptLabelEnumValues, type PromptPromptLabelEnum, PromptPromptLabelEnumValues, type PromptResponse, PromptValidationEndpoint, type PromptValidationRequest, type PromptValidationResponse, type PromptValidationResult, type PromptValidationTemplate, PromptsEndpoint, type Range, type Rect, type Reference, type ReferenceDocumentsResponseContainer, ReferencedocumentEndpoint, ReferencedocumentsEndpoint, ReferencedocumentsStreamEndpoint, ReferencesEndpoint, type Regex, type Relation, type RelationCondition, type ResponseMetaInfo, RestClient, RestResponse, RolesEndpoint, type Row, type Rule, type RuleFunction, type RuleFunctionTypeEnum, RuleFunctionTypeEnumValues, type RuleOverview, SemanthaAPI, type SemanticModel, type Sentence, SentenceEndpoint, SentencesEndpoint, type Settings, type SettingsDefaultSimilarityModeEnum, SettingsDefaultSimilarityModeEnumValues, SettingsEndpoint, type SettingsExtractionStrategyEnum, SettingsExtractionStrategyEnumValues, type SettingsTaggingStrategyEnum, SettingsTaggingStrategyEnumValues, type SimpleProperty, type Statistic, StatisticEndpoint, type StopWord, type Summarization, SummarizationsEndpoint, type SummarylengthEnum, SummarylengthEnumValues, type Synonym, type TableCell, type TableInstance, type TagDocs, TagEndpoint, TagReferencedocumentsEndpoint, TagsEndpoint, type TextType, TexttypesEndpoint, type Translation, type TranslationResponse, TranslationsEndpoint, TreeEndpoint, type TypeEnum, TypeEnumValues, ValidationEndpoint, type Version, isAttributeDatatypeEnumValue, isAttributeOverviewDatatypeEnumValue, isClassBulkDatatypeEnumValue, isDifferenceOperationEnumValue, isDocumentmodeEnumValue, isErrorFieldCodeEnumValue, isExtractorAttributeDatatypeEnumValue, isExtractorTypeEnumValue, isFieldTypeEnumValue, isMatcherTypeEnumValue, isMessageRoleEnumValue, isModeEnumValue, isPromptLabelEnumValue, isPromptOverviewPromptLabelEnumValue, isPromptPromptLabelEnumValue, isRuleFunctionTypeEnumValue, isSettingsDefaultSimilarityModeEnumValue, isSettingsExtractionStrategyEnumValue, isSettingsTaggingStrategyEnumValue, isSummarylengthEnumValue, isTypeEnumValue };
|