Knowledgebase class
Classe représentant une base de connaissances.
Constructeurs
Knowledgebase(Qn |
Créez une base de connaissances. |
Méthodes
Détails du constructeur
Knowledgebase(QnAMakerClientContext)
Créez une base de connaissances.
new Knowledgebase(client: QnAMakerClientContext)
Paramètres
- client
- QnAMakerClientContext
Référence au client de service.
Détails de la méthode
create(CreateKbDTO, RequestOptionsBase)
function create(createKbPayload: CreateKbDTO, options?: RequestOptionsBase): Promise<KnowledgebaseCreateResponse>
Paramètres
- createKbPayload
- CreateKbDTO
Post-corps de la demande.
- options
- RequestOptionsBase
Paramètres facultatifs
Retours
Promise<KnowledgebaseCreateResponse>
Promise<Models.KnowledgebaseCreateResponse>
create(CreateKbDTO, RequestOptionsBase, ServiceCallback<Operation>)
function create(createKbPayload: CreateKbDTO, options: RequestOptionsBase, callback: ServiceCallback<Operation>)
Paramètres
- createKbPayload
- CreateKbDTO
Post-corps de la demande.
- options
- RequestOptionsBase
Paramètres facultatifs
- callback
Rappel
create(CreateKbDTO, ServiceCallback<Operation>)
function create(createKbPayload: CreateKbDTO, callback: ServiceCallback<Operation>)
Paramètres
- createKbPayload
- CreateKbDTO
Post-corps de la demande.
- callback
Rappel
deleteMethod(string, RequestOptionsBase)
function deleteMethod(kbId: string, options?: RequestOptionsBase): Promise<RestResponse>
Paramètres
- kbId
-
string
ID de base de connaissances.
- options
- RequestOptionsBase
Paramètres facultatifs
Retours
Promise<RestResponse>
Promesse<msRest.RestResponse>
deleteMethod(string, RequestOptionsBase, ServiceCallback<void>)
function deleteMethod(kbId: string, options: RequestOptionsBase, callback: ServiceCallback<void>)
Paramètres
- kbId
-
string
ID de base de connaissances.
- options
- RequestOptionsBase
Paramètres facultatifs
- callback
-
ServiceCallback<void>
Rappel
deleteMethod(string, ServiceCallback<void>)
function deleteMethod(kbId: string, callback: ServiceCallback<void>)
Paramètres
- kbId
-
string
ID de base de connaissances.
- callback
-
ServiceCallback<void>
Rappel
download(string, EnvironmentType, KnowledgebaseDownloadOptionalParams)
function download(kbId: string, environment: EnvironmentType, options?: KnowledgebaseDownloadOptionalParams): Promise<KnowledgebaseDownloadResponse>
Paramètres
- kbId
-
string
ID de base de connaissances.
- environment
- EnvironmentType
Spécifie si l’environnement est Test ou Prod. Les valeurs possibles incluent : 'Prod', 'Test'
Paramètres facultatifs
Retours
Promise<KnowledgebaseDownloadResponse>
Promise<Models.KnowledgebaseDownloadResponse>
download(string, EnvironmentType, KnowledgebaseDownloadOptionalParams, ServiceCallback<QnADocumentsDTO>)
function download(kbId: string, environment: EnvironmentType, options: KnowledgebaseDownloadOptionalParams, callback: ServiceCallback<QnADocumentsDTO>)
Paramètres
- kbId
-
string
ID de base de connaissances.
- environment
- EnvironmentType
Spécifie si l’environnement est Test ou Prod. Les valeurs possibles incluent : 'Prod', 'Test'
Paramètres facultatifs
- callback
Rappel
download(string, EnvironmentType, ServiceCallback<QnADocumentsDTO>)
function download(kbId: string, environment: EnvironmentType, callback: ServiceCallback<QnADocumentsDTO>)
Paramètres
- kbId
-
string
ID de base de connaissances.
- environment
- EnvironmentType
Spécifie si l’environnement est Test ou Prod. Les valeurs possibles incluent : 'Prod', 'Test'
- callback
Rappel
generateAnswer(string, QueryDTO, RequestOptionsBase)
function generateAnswer(kbId: string, generateAnswerPayload: QueryDTO, options?: RequestOptionsBase): Promise<KnowledgebaseGenerateAnswerResponse>
Paramètres
- kbId
-
string
ID de base de connaissances.
- generateAnswerPayload
- QueryDTO
Post-corps de la demande.
- options
- RequestOptionsBase
Paramètres facultatifs
Retours
Promise<KnowledgebaseGenerateAnswerResponse>
Promise<Models.KnowledgebaseGenerateAnswerResponse>
generateAnswer(string, QueryDTO, RequestOptionsBase, ServiceCallback<QnASearchResultList>)
function generateAnswer(kbId: string, generateAnswerPayload: QueryDTO, options: RequestOptionsBase, callback: ServiceCallback<QnASearchResultList>)
Paramètres
- kbId
-
string
ID de base de connaissances.
- generateAnswerPayload
- QueryDTO
Post-corps de la demande.
- options
- RequestOptionsBase
Paramètres facultatifs
- callback
Rappel
generateAnswer(string, QueryDTO, ServiceCallback<QnASearchResultList>)
function generateAnswer(kbId: string, generateAnswerPayload: QueryDTO, callback: ServiceCallback<QnASearchResultList>)
Paramètres
- kbId
-
string
ID de base de connaissances.
- generateAnswerPayload
- QueryDTO
Post-corps de la demande.
- callback
Rappel
getDetails(string, RequestOptionsBase)
function getDetails(kbId: string, options?: RequestOptionsBase): Promise<KnowledgebaseGetDetailsResponse>
Paramètres
- kbId
-
string
ID de base de connaissances.
- options
- RequestOptionsBase
Paramètres facultatifs
Retours
Promise<KnowledgebaseGetDetailsResponse>
Promise<Models.KnowledgebaseGetDetailsResponse>
getDetails(string, RequestOptionsBase, ServiceCallback<KnowledgebaseDTO>)
function getDetails(kbId: string, options: RequestOptionsBase, callback: ServiceCallback<KnowledgebaseDTO>)
Paramètres
- kbId
-
string
ID de base de connaissances.
- options
- RequestOptionsBase
Paramètres facultatifs
- callback
Rappel
getDetails(string, ServiceCallback<KnowledgebaseDTO>)
function getDetails(kbId: string, callback: ServiceCallback<KnowledgebaseDTO>)
Paramètres
- kbId
-
string
ID de base de connaissances.
- callback
Rappel
listAll(RequestOptionsBase)
function listAll(options?: RequestOptionsBase): Promise<KnowledgebaseListAllResponse>
Paramètres
- options
- RequestOptionsBase
Paramètres facultatifs
Retours
Promise<KnowledgebaseListAllResponse>
Promise<Models.KnowledgebaseListAllResponse>
listAll(RequestOptionsBase, ServiceCallback<KnowledgebasesDTO>)
function listAll(options: RequestOptionsBase, callback: ServiceCallback<KnowledgebasesDTO>)
Paramètres
- options
- RequestOptionsBase
Paramètres facultatifs
- callback
Rappel
listAll(ServiceCallback<KnowledgebasesDTO>)
function listAll(callback: ServiceCallback<KnowledgebasesDTO>)
Paramètres
- callback
Rappel
publish(string, RequestOptionsBase)
function publish(kbId: string, options?: RequestOptionsBase): Promise<RestResponse>
Paramètres
- kbId
-
string
ID de base de connaissances.
- options
- RequestOptionsBase
Paramètres facultatifs
Retours
Promise<RestResponse>
Promesse<msRest.RestResponse>
publish(string, RequestOptionsBase, ServiceCallback<void>)
function publish(kbId: string, options: RequestOptionsBase, callback: ServiceCallback<void>)
Paramètres
- kbId
-
string
ID de base de connaissances.
- options
- RequestOptionsBase
Paramètres facultatifs
- callback
-
ServiceCallback<void>
Rappel
publish(string, ServiceCallback<void>)
function publish(kbId: string, callback: ServiceCallback<void>)
Paramètres
- kbId
-
string
ID de base de connaissances.
- callback
-
ServiceCallback<void>
Rappel
replace(string, ReplaceKbDTO, RequestOptionsBase)
function replace(kbId: string, replaceKb: ReplaceKbDTO, options?: RequestOptionsBase): Promise<RestResponse>
Paramètres
- kbId
-
string
ID de base de connaissances.
- replaceKb
- ReplaceKbDTO
Instance de ReplaceKbDTO qui contient la liste des qnas à charger
- options
- RequestOptionsBase
Paramètres facultatifs
Retours
Promise<RestResponse>
Promesse<msRest.RestResponse>
replace(string, ReplaceKbDTO, RequestOptionsBase, ServiceCallback<void>)
function replace(kbId: string, replaceKb: ReplaceKbDTO, options: RequestOptionsBase, callback: ServiceCallback<void>)
Paramètres
- kbId
-
string
ID de base de connaissances.
- replaceKb
- ReplaceKbDTO
Instance de ReplaceKbDTO qui contient la liste des qnas à charger
- options
- RequestOptionsBase
Paramètres facultatifs
- callback
-
ServiceCallback<void>
Rappel
replace(string, ReplaceKbDTO, ServiceCallback<void>)
function replace(kbId: string, replaceKb: ReplaceKbDTO, callback: ServiceCallback<void>)
Paramètres
- kbId
-
string
ID de base de connaissances.
- replaceKb
- ReplaceKbDTO
Instance de ReplaceKbDTO qui contient la liste des qnas à charger
- callback
-
ServiceCallback<void>
Rappel
train(string, FeedbackRecordsDTO, RequestOptionsBase)
function train(kbId: string, trainPayload: FeedbackRecordsDTO, options?: RequestOptionsBase): Promise<RestResponse>
Paramètres
- kbId
-
string
ID de base de connaissances.
- trainPayload
- FeedbackRecordsDTO
Post-corps de la demande.
- options
- RequestOptionsBase
Paramètres facultatifs
Retours
Promise<RestResponse>
Promesse<msRest.RestResponse>
train(string, FeedbackRecordsDTO, RequestOptionsBase, ServiceCallback<void>)
function train(kbId: string, trainPayload: FeedbackRecordsDTO, options: RequestOptionsBase, callback: ServiceCallback<void>)
Paramètres
- kbId
-
string
ID de base de connaissances.
- trainPayload
- FeedbackRecordsDTO
Post-corps de la demande.
- options
- RequestOptionsBase
Paramètres facultatifs
- callback
-
ServiceCallback<void>
Rappel
train(string, FeedbackRecordsDTO, ServiceCallback<void>)
function train(kbId: string, trainPayload: FeedbackRecordsDTO, callback: ServiceCallback<void>)
Paramètres
- kbId
-
string
ID de base de connaissances.
- trainPayload
- FeedbackRecordsDTO
Post-corps de la demande.
- callback
-
ServiceCallback<void>
Rappel
update(string, UpdateKbOperationDTO, RequestOptionsBase)
function update(kbId: string, updateKb: UpdateKbOperationDTO, options?: RequestOptionsBase): Promise<KnowledgebaseUpdateResponse>
Paramètres
- kbId
-
string
ID de base de connaissances.
- updateKb
- UpdateKbOperationDTO
Post-corps de la demande.
- options
- RequestOptionsBase
Paramètres facultatifs
Retours
Promise<KnowledgebaseUpdateResponse>
Promise<Models.KnowledgebaseUpdateResponse>
update(string, UpdateKbOperationDTO, RequestOptionsBase, ServiceCallback<Operation>)
function update(kbId: string, updateKb: UpdateKbOperationDTO, options: RequestOptionsBase, callback: ServiceCallback<Operation>)
Paramètres
- kbId
-
string
ID de base de connaissances.
- updateKb
- UpdateKbOperationDTO
Post-corps de la demande.
- options
- RequestOptionsBase
Paramètres facultatifs
- callback
Rappel
update(string, UpdateKbOperationDTO, ServiceCallback<Operation>)
function update(kbId: string, updateKb: UpdateKbOperationDTO, callback: ServiceCallback<Operation>)
Paramètres
- kbId
-
string
ID de base de connaissances.
- updateKb
- UpdateKbOperationDTO
Post-corps de la demande.
- callback
Rappel