You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MsgBox Prompt:="The OpenAI servers have experienced an error while processing your request! Please try again shortly, or for continued downtime please check the Chat status at: https://status.openai.com/"
94
+
Exit Sub
95
+
End If
96
+
87
97
Dim strResponse AsString
88
98
strResponse = .ResponseText
99
+
89
100
90
-
91
-
92
-
If Mid(strResponse, 6, 5) = "error"Then
93
-
MsgBox Prompt:="That ChatGPT model is currently overloaded with other requests. You can retry your request, or contact us through our help center at help.openai.com if the error persists."
101
+
If Mid(strResponse, 8, 5) = "error"Then
102
+
MsgBox Prompt:="The ChatGPT model is currently overloaded with other requests. You can retry your request, or contact us through our help center at help.openai.com if the error persists."
94
103
Exit Sub
95
104
End If
96
105
@@ -101,7 +110,7 @@ Sub Chat()
101
110
102
111
103
112
If intStartPos = 11Then
104
-
MsgBox Prompt:="That ChatGPT model is currently overloaded with other requests. You can retry your request, or contact us through our help center at help.openai.com if the error persists."
113
+
MsgBox Prompt:="ChatGPT is at capacity right now. Please wait a minute and try again."
0 commit comments