Commit 0180f51f by CaIon

feat: automatically ban channels that exceeded quota

parent 9ba6abed
...@@ -57,6 +57,8 @@ func ShouldDisableChannel(err *relaymodel.OpenAIError, statusCode int) bool { ...@@ -57,6 +57,8 @@ func ShouldDisableChannel(err *relaymodel.OpenAIError, statusCode int) bool {
return true return true
} else if strings.HasPrefix(err.Message, "This organization has been disabled.") { } else if strings.HasPrefix(err.Message, "This organization has been disabled.") {
return true return true
} else if strings.HasPrefix(err.Message, "You exceeded your current quota") {
return true
} }
return false return false
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment