1 /*
2  * Copyright (C) 2021-2023 Alibaba Group Holding Limited
3  */
4 
5 #include <stdio.h>
6 #include <string.h>
7 #include "ucloud_ai_common.h"
8 #define TAG "UCLOUD_AI_CHATBOT"
9 
ucloud_ai_chatbot(char * instance_id,char * session_id,char * text)10 char *ucloud_ai_chatbot(char *instance_id, char *session_id, char *text)
11 {
12     if (!instance_id || !text) {
13         return NULL;
14     }
15     return chatbot(instance_id, session_id, text);
16 }
17 
18