Skip to content

Commit 60a7650

Browse files
authored
Merge pull request #456 from kvokka/fix-config-default-settings
2 parents cd5198a + beb623c commit 60a7650

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commands/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -155,8 +155,8 @@ const getDefaultModel = (provider: string | undefined): string => {
155155
};
156156

157157
export enum DEFAULT_TOKEN_LIMITS {
158-
DEFAULT_MAX_TOKENS_INPUT = 40960,
159-
DEFAULT_MAX_TOKENS_OUTPUT = 4096
158+
DEFAULT_MAX_TOKENS_INPUT = 4096,
159+
DEFAULT_MAX_TOKENS_OUTPUT = 500
160160
}
161161

162162
const validateConfig = (

0 commit comments

Comments
 (0)