mirror of
https://github.com/fancive/obsidian-parallel-reader.git
synced 2026-07-22 06:53:43 +00:00
feat: raise default max input from 20K to 100K characters
Change-Id: Ie5b895eb1a4dba02bb84fd83adf1ef0216af067b
This commit is contained in:
parent
c4b1543046
commit
d60999d8df
2 changed files with 2 additions and 2 deletions
2
main.js
2
main.js
File diff suppressed because one or more lines are too long
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue