From 3fdf2ec21a45db171f2aa7dbb1016f44290e7618 Mon Sep 17 00:00:00 2001 From: junyong Date: Thu, 19 Feb 2026 15:27:19 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20openai=20timeout=20120=EC=84=A4?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nect-client/src/main/resources/application-client.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nect-client/src/main/resources/application-client.yml b/nect-client/src/main/resources/application-client.yml index 87fb713..abe4909 100644 --- a/nect-client/src/main/resources/application-client.yml +++ b/nect-client/src/main/resources/application-client.yml @@ -4,7 +4,7 @@ openai: model: ${OPENAI_MODEL:gpt-4.1-mini} fallback-model: ${OPENAI_FALLBACK_MODEL:gpt-4.1} connect-timeout-seconds: ${OPENAI_CONNECT_TIMEOUT_SECONDS:2} - read-timeout-seconds: ${OPENAI_READ_TIMEOUT_SECONDS:20} + read-timeout-seconds: ${OPENAI_READ_TIMEOUT_SECONDS:120} max-retries: ${OPENAI_MAX_RETRIES:2} initial-backoff-millis: ${OPENAI_INITIAL_BACKOFF_MILLIS:200} max-output-token: ${OPENAI_MAX_OUTPUT_TOKEN:4000}