File size: 4,872 Bytes
6efa67a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 |
/**
* Common debounce timeout values to use with `debounce` calls.
* @readonly
* @enum {number}
*/
export const debounce_timeout = {
/** [100 ms] For ultra-fast responses, typically for keypresses or executions that might happen multiple times in a loop or recursion. */
quick: 100,
/** [200 ms] Slightly slower than quick, but still very responsive. */
short: 200,
/** [300 ms] Default time for general use, good balance between responsiveness and performance. */
standard: 300,
/** [1.000 ms] For situations where the function triggers more intensive tasks. */
relaxed: 1000,
/** [5 sec] For delayed tasks, like auto-saving or completing batch operations that need a significant pause. */
extended: 5000,
};
/**
* Used as an ephemeral key in message extra metadata.
* When set, the message will be excluded from generation
* prompts without affecting the number of chat messages,
* which is needed to preserve world info timed effects.
*/
export const IGNORE_SYMBOL = Symbol.for('ignore');
/**
* Common video file extensions. Should be the same as supported by Gemini.
* https://ai.google.dev/gemini-api/docs/video-understanding#supported-formats
*/
export const VIDEO_EXTENSIONS = ['mp4', 'avi', 'mov', 'wmv', 'flv', 'webm', '3gp', 'mkv', 'mpg'];
/**
* Known generation triggers that can be passed to Generate function.
*/
export const GENERATION_TYPE_TRIGGERS = [
'normal',
'continue',
'impersonate',
'swipe',
'regenerate',
'quiet',
];
/**
* Known injection IDs and helper functions for system extensions handling.
*/
export const inject_ids = {
STORY_STRING: '__STORY_STRING__',
QUIET_PROMPT: 'QUIET_PROMPT',
DEPTH_PROMPT: 'DEPTH_PROMPT',
DEPTH_PROMPT_INDEX: (index) => `DEPTH_PROMPT_${index}`,
CUSTOM_WI_DEPTH: 'customDepthWI',
CUSTOM_WI_DEPTH_ROLE: (depth, role) => `customDepthWI_${depth}_${role}`,
CUSTOM_WI_OUTLET: (key) => `customWIOutlet_${key}`,
};
export const COMETAPI_IGNORE_PATTERNS = [
// Image generation models
'dall-e', 'dalle', 'midjourney', 'mj_', 'stable-diffusion', 'sd-',
'flux-', 'playground-v', 'ideogram', 'recraft-', 'black-forest-labs',
'/recraft-v3', 'recraftv3', 'stability-ai/', 'sdxl',
// Audio generation models
'suno_', 'tts', 'whisper',
// Video generation models
'runway', 'luma_', 'luma-', 'veo', 'kling_', 'minimax_video', 'hunyuan-t1',
// Utility models
'embedding', 'search-gpts', 'files_retrieve', 'moderation',
];
/**
* @readonly
* @enum {string}
*/
export const MEDIA_SOURCE = {
API: 'api',
UPLOAD: 'upload',
GENERATED: 'generated',
CAPTIONED: 'captioned',
};
/**
* @readonly
* @enum {string}
*/
export const MEDIA_DISPLAY = {
LIST: 'list',
GALLERY: 'gallery',
};
/**
* @readonly
* @enum {string}
*/
export const IMAGE_OVERSWIPE = {
GENERATE: 'generate',
ROLLOVER: 'rollover',
};
/**
* @readonly
*/
export const MEDIA_TYPE = {
getFromMime: (/** @type {string} */ mimeType) => {
if (mimeType.startsWith('image/')) {
return MEDIA_TYPE.IMAGE;
}
if (mimeType.startsWith('video/')) {
return MEDIA_TYPE.VIDEO;
}
if (mimeType.startsWith('audio/')) {
return MEDIA_TYPE.AUDIO;
}
return null;
},
IMAGE: 'image',
VIDEO: 'video',
AUDIO: 'audio',
};
/**
* Bitwise flag-style media request types.
* @readonly
* @enum {number}
*/
export const MEDIA_REQUEST_TYPE = {
IMAGE: 0b001,
VIDEO: 0b010,
AUDIO: 0b100,
};
/**
* Scroll behavior options when appending media to messages.
* @readonly
* @enum {string}
*/
export const SCROLL_BEHAVIOR = {
NONE: 'none',
KEEP: 'keep',
ADJUST: 'adjust',
};
/**
* @readonly
* @enum {string}
*/
export const OVERSWIPE_BEHAVIOR = {
/** The overswipe right chevron will not be displayed. */
NONE: 'none',
/** An overswipe will loop to the first swipe. */
LOOP: 'loop',
/** Pristine greetings will loop, and chevrons will always be shown: https://github.com/SillyTavern/SillyTavern/pull/4712#issuecomment-3557893373 */
PRISTINE_GREETING: 'pristine_greeting',
/** If chat tree is enabled, then an overswipe will allow the user to edit the message before starting a new generation. */
EDIT_GENERATE: 'edit_generate',
/** This is the default behavior on character messages. */
REGENERATE: 'regenerate',
};
/**
* @readonly
* @enum {string}
*/
export const SWIPE_DIRECTION = {
LEFT: 'left',
RIGHT: 'right',
};
/**
* @readonly
* @enum {string}
*/
export const SWIPE_SOURCE = {
DELETE: 'delete',
KEYBOARD: 'keyboard',
BACK: 'back',
AUTO_SWIPE: 'auto_swipe',
};
/**
* @readonly
* @enum {string}
*/
export const SWIPE_STATE = {
NONE: 'none',
SWIPING: 'swiping',
EDITING: 'editing',
};
|