dify/api/controllers/web/error.py

88 lines
2.8 KiB
Python
Raw Normal View History

2023-05-15 08:51:32 +08:00
# -*- coding:utf-8 -*-
from libs.exception import BaseHTTPException
class AppUnavailableError(BaseHTTPException):
error_code = 'app_unavailable'
2023-05-22 17:39:28 +08:00
description = "App unavailable, please check your app configurations."
2023-05-15 08:51:32 +08:00
code = 400
class NotCompletionAppError(BaseHTTPException):
error_code = 'not_completion_app'
2023-05-22 17:39:28 +08:00
description = "Please check if your Completion app mode matches the right API route."
2023-05-15 08:51:32 +08:00
code = 400
class NotChatAppError(BaseHTTPException):
error_code = 'not_chat_app'
2023-05-22 17:39:28 +08:00
description = "Please check if your Chat app mode matches the right API route."
2023-05-15 08:51:32 +08:00
code = 400
class ConversationCompletedError(BaseHTTPException):
error_code = 'conversation_completed'
2023-05-22 17:39:28 +08:00
description = "The conversation has ended. Please start a new conversation."
2023-05-15 08:51:32 +08:00
code = 400
class ProviderNotInitializeError(BaseHTTPException):
error_code = 'provider_not_initialize'
2023-05-22 17:39:28 +08:00
description = "No valid model provider credentials found. " \
"Please go to Settings -> Model Provider to complete your provider credentials."
2023-05-15 08:51:32 +08:00
code = 400
class ProviderQuotaExceededError(BaseHTTPException):
error_code = 'provider_quota_exceeded'
2023-05-22 17:39:28 +08:00
description = "Your quota for Dify Hosted OpenAI has been exhausted. " \
"Please go to Settings -> Model Provider to complete your own provider credentials."
2023-05-15 08:51:32 +08:00
code = 400
class ProviderModelCurrentlyNotSupportError(BaseHTTPException):
error_code = 'model_currently_not_support'
2023-05-22 17:39:28 +08:00
description = "Dify Hosted OpenAI trial currently not support the GPT-4 model."
2023-05-15 08:51:32 +08:00
code = 400
class CompletionRequestError(BaseHTTPException):
error_code = 'completion_request_error'
description = "Completion request failed."
code = 400
class AppMoreLikeThisDisabledError(BaseHTTPException):
error_code = 'app_more_like_this_disabled'
2023-05-22 17:39:28 +08:00
description = "The 'More like this' feature is disabled. Please refresh your page."
2023-05-15 08:51:32 +08:00
code = 403
class AppSuggestedQuestionsAfterAnswerDisabledError(BaseHTTPException):
error_code = 'app_suggested_questions_after_answer_disabled'
2023-05-22 17:39:28 +08:00
description = "The 'Suggested Questions After Answer' feature is disabled. Please refresh your page."
2023-05-15 08:51:32 +08:00
code = 403
2023-07-07 17:50:42 +08:00
class NoAudioUploadedError(BaseHTTPException):
error_code = 'no_audio_uploaded'
description = "Please upload your audio."
code = 400
class AudioTooLargeError(BaseHTTPException):
error_code = 'audio_too_large'
description = "Audio size exceeded. {message}"
code = 413
class UnsupportedAudioTypeError(BaseHTTPException):
error_code = 'unsupported_audio_type'
description = "Audio type not allowed."
code = 415
class ProviderNotSupportSpeechToTextError(BaseHTTPException):
error_code = 'provider_not_support_speech_to_text'
description = "Provider not support speech to text."
code = 400