feat: raise default max input from 20K to 100K characters

Change-Id: Ie5b895eb1a4dba02bb84fd83adf1ef0216af067b
This commit is contained in:
wujunchen 2026-04-26 10:23:42 +08:00
parent c4b1543046
commit d60999d8df
2 changed files with 2 additions and 2 deletions

File diff suppressed because one or more lines are too long

View file

@ -4,7 +4,7 @@ import crypto from 'crypto';
import { translate } from './i18n';
import type { ApiFormat, ApiProviderPreset, CacheEntry, PluginSettings } from './types';
export const MAX_DOC_CHARS = 20000;
export const MAX_DOC_CHARS = 100000;
export const PROMPT_VERSION = 2;
export const CACHE_SCHEMA_VERSION = 2;
export const DEFAULT_MAX_CACHE_ENTRIES = 100;