最近、頻繁に出てます。レスポンスボディ。
{
"error": {
"message": "That 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. (Please include the request ID XXXXXXXXXXXXXXXXXXXXX in your message.)",
"type": "server_error",
"param": null,
"code": null
}
}
エラーコードが null
なので、API クライアントの実装によっては影響あるか。
こんなの出ました。
Expected string literal but 'null' literal was found at path: $.error.code
Use 'coerceInputValues = true' in 'Json {}` builder to coerce nulls to default values.
👉 Kotlin Serialization ガイド 第5章 JSONの機能 - Qiita
レスポンスボディでなく、レスポンスヘッダーから見るべきか。
一応、サーバーステータスのページでも確認するといいですね。