Skip to content

Commit

Permalink
Merge pull request #109 from devoxx/issue-107
Browse files Browse the repository at this point in the history
Fix 107: Increased max timeout
  • Loading branch information
stephanj authored Jun 24, 2024
2 parents 481e1e6 + 08bfa07 commit a6caf6c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a6caf6c

Please sign in to comment.