1 /*
2  * Copyright (C) 2020-2023 Alibaba Group Holding Limited
3  */
4 
5 #ifndef _UCLOUD_AI_NLP_H_
6 #define _UCLOUD_AI_NLP_H_
7 #include "ucloud_ai_common.h"
8 
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12 
13 
14 /** @addtogroup ucloud_ai_aos_api
15  * @{
16  */
17 
18 /**
19  * Ucloud ai recognizing identity card face side api.
20  *
21  * @param[in]  InstanceId          chatbot's instanceId.
22  * @param[in]  text                user's input text for interaction.
23  * @return     response text result.
24  *
25  */
26 char *ucloud_ai_chatbot(char *instance_id, char *session_id, char *text);
27 
28 /**
29  * @}
30  */
31 
32 #ifdef __cplusplus
33 }
34 #endif
35 
36 #endif // _UCLOUD_AI_NLP_H_
37