1 /*
2  * Copyright (C) 2021-2023 Alibaba Group Holding Limited
3  */
4 
5 #ifndef _CHATBOT_H_
6 #define _CHATBOT_H_
7 
8 #include "model/internal.h"
9 
10 #ifdef __cplusplus
11 extern "C" {
12 #endif
13 
14 char *chatbot(char *pInstanceId, char *pSessionId, char *text);
15 
16 #ifdef __cplusplus
17 }
18 #endif
19 #endif // _CHATBOT_H_
20