From 08bfa07e2ea707a4e8651c80276b41e2f6627289 Mon Sep 17 00:00:00 2001 From: Stephan Janssen Date: Mon, 24 Jun 2024 08:50:27 +0200 Subject: [PATCH] Fix 107: Increased max timeout --- .../genie/ui/settings/llmconfig/LLMConfigSettingsComponent.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/devoxx/genie/ui/settings/llmconfig/LLMConfigSettingsComponent.java b/src/main/java/com/devoxx/genie/ui/settings/llmconfig/LLMConfigSettingsComponent.java index b8d7100b..0c427fab 100644 --- a/src/main/java/com/devoxx/genie/ui/settings/llmconfig/LLMConfigSettingsComponent.java +++ b/src/main/java/com/devoxx/genie/ui/settings/llmconfig/LLMConfigSettingsComponent.java @@ -24,7 +24,7 @@ public class LLMConfigSettingsComponent implements SettingsComponent { @Getter private final JBIntSpinner maxOutputTokensField = new JBIntSpinner(new UINumericRange(stateService.getMaxOutputTokens(), 1, 1_000_000)); @Getter - private final JBIntSpinner timeoutField = new JBIntSpinner(new UINumericRange(stateService.getTimeout(), 1, 60)); + private final JBIntSpinner timeoutField = new JBIntSpinner(new UINumericRange(stateService.getTimeout(), 1, 600)); @Getter private final JBIntSpinner retryField = new JBIntSpinner(new UINumericRange(stateService.getMaxRetries(), 1, 5)); @Getter