mirror of
https://github.com/langgenius/dify.git
synced 2026-03-10 09:56:13 +08:00
add workflow api for installed app & web api & service api
This commit is contained in:
@ -13,6 +13,12 @@ class NotChatAppError(BaseHTTPException):
|
||||
code = 400
|
||||
|
||||
|
||||
class NotWorkflowAppError(BaseHTTPException):
|
||||
error_code = 'not_workflow_app'
|
||||
description = "Only support workflow app."
|
||||
code = 400
|
||||
|
||||
|
||||
class AppSuggestedQuestionsAfterAnswerDisabledError(BaseHTTPException):
|
||||
error_code = 'app_suggested_questions_after_answer_disabled'
|
||||
description = "Function Suggested questions after answer disabled."
|
||||
|
||||
Reference in New Issue
Block a user