File size: 5,456 Bytes
c120a1c |
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 |
import libs from './lib';
import getContext from './scripts/st-context';
import { power_user } from './scripts/power-user';
import { QuickReplyApi } from './scripts/extensions/quick-reply/api/QuickReplyApi';
import { oai_settings } from './scripts/openai';
import { textgenerationwebui_settings } from './scripts/textgen-settings';
import { FileAttachment } from './scripts/chats';
import { ReasoningMessageExtra } from './scripts/reasoning';
declare global {
// Custom types
type InstructSettings = typeof power_user.instruct;
type ContextSettings = typeof power_user.context;
type ReasoningSettings = typeof power_user.reasoning;
type ChatCompletionSettings = typeof oai_settings;
type TextCompletionSettings = typeof textgenerationwebui_settings;
type MessageTimestamp = string | number | Date;
interface ChatMessage {
name?: string;
mes?: string;
title?: string;
gen_started?: MessageTimestamp;
gen_finished?: MessageTimestamp;
send_date?: MessageTimestamp;
is_user?: boolean;
is_system?: boolean;
force_avatar?: string;
original_avatar?: string;
swipes?: string[];
swipe_info?: Record<string, any>;
swipe_id?: number;
extra?: ChatMessageExtra & Partial<ReasoningMessageExtra> & Record<string, any>;
};
interface ChatMessageExtra {
bias?: string;
uses_system_ui?: boolean;
memory?: string;
display_text?: string;
reasoning_display_text?: string;
tool_invocations?: any[];
title?: string;
isSmallSys?: boolean;
token_count?: number;
files?: FileAttachment[];
inline_image?: boolean;
media_display?: string;
media_index?: number;
media?: MediaAttachment[],
/** @deprecated Use `files` instead */
file?: FileAttachment;
/** @deprecated Use `media` instead */
image?: string;
/** @deprecated Use `media` instead */
video?: string;
/** @deprecated Use `media` with `media_display = 'gallery'` instead */
image_swipes?: string[];
/** @deprecated Use `MediaAttachment.append_title` instead */
append_title?: boolean;
/** @deprecated Use `MediaAttachment.generation_type` instead */
generationType?: number;
/** @deprecated Use `MediaAttachment.negative` instead */
negative?: string;
}
type MediaAttachment = MediaAttachmentProps & ImageGenerationAttachmentProps & ImageCaptionAttachmentProps;
interface MediaAttachmentProps {
url: string;
title?: string;
type: string;
source?: string;
}
interface ImageGenerationAttachmentProps {
generation_type?: number;
negative?: string;
}
interface ImageCaptionAttachmentProps {
/** Append title to the message text in case of non-inline captions. */
append_title?: boolean;
/** Marker for captioned images to prevent auto-caption from firing again. */
captioned?: boolean;
}
/** Media playback state */
interface MediaState {
/** Current playback time */
currentTime: number;
/** Whether the media is paused */
paused: boolean;
}
// Global namespace modules
interface Window {
ai: any;
}
var pdfjsLib;
var ePub;
var quickReplyApi: QuickReplyApi;
var SillyTavern: {
getContext(): typeof getContext;
llm: any;
libs: typeof libs;
};
// Jquery plugins
interface JQuery {
nanogallery2(options?: any): JQuery;
nanogallery2(method: string, options?: any): JQuery;
pagination(method: 'getCurrentPageNum'): number;
pagination(method: string, options?: any): JQuery;
pagination(options?: any): JQuery;
izoomify(options?: any): JQuery;
}
// NPM package doesn't have the 'queue' property in the type definition
interface JQueryTransitOptions {
queue?: boolean;
}
namespace Select2 {
interface Options<Result = DataFormat | GroupedDataFormat, RemoteResult = any> {
/**
* Extends Select2 v4 plugin by adding an option to set a placeholder for the 'search' input field
* [Custom Field]
* @default ''
*/
searchInputPlaceholder?: string;
/**
* Extends select2 plugin by adding a custom css class for the 'search' input field
* [Custom Field]
* @default ''
*/
searchInputCssClass?: string;
}
}
/**
* Translates a text to a target language using a translation provider.
* @param text Text to translate
* @param lang Target language
* @param provider Translation provider
*/
function translate(text: string, lang: string, provider?: string | null): Promise<string>;
interface ConvertVideoArgs {
buffer: Uint8Array;
name: string;
}
/**
* Converts a video file to an animated WebP format using FFmpeg.
* @param args - The arguments for the conversion function.
*/
function convertVideoToAnimatedWebp(args: ConvertVideoArgs): Promise<Uint8Array>;
type ColorPickerEvent = Omit<JQuery.ChangeEvent<HTMLElement>, "detail"> & {
detail: {
rgba: string;
}
};
}
|