Skip to content

Commit

Permalink
Fix defaults for AI
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexProgrammerDE committed Nov 17, 2024
1 parent a28e3d0 commit 79a4415
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@ public class AISettings implements SettingsObject {
.key("api-request-timeout")
.uiName("API Request Timeout")
.description("Ollama API request timeout (seconds)")
.defaultValue(5)
.minValue(1)
.maxValue(6)
.defaultValue(60)
.minValue(0)
.maxValue(Integer.MAX_VALUE)
.stepValue(1)
.build();
public static final BooleanProperty PULL_MODELS =
Expand Down

0 comments on commit 79a4415

Please sign in to comment.