Skip to content

Commit beb623c

Browse files
authored
fix: config default settings
1 parent cd5198a commit beb623c

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)