|
@@ -232,6 +232,15 @@ def get_conversation_list():
|
|
|
return wrap_response(200, data=response)
|
|
|
|
|
|
|
|
|
+@app.route("api/quitHumanConversationStatus", methods=["POST"])
|
|
|
+def quit_human_conversation_status():
|
|
|
+ """
|
|
|
+ 退出人工介入状态
|
|
|
+ :return:
|
|
|
+ """
|
|
|
+ return wrap_response(200, msg="OK")
|
|
|
+
|
|
|
+
|
|
|
@app.route("/api/sendMessage", methods=["POST"])
|
|
|
def send_message():
|
|
|
return wrap_response(200, msg="暂不实现功能")
|