mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Fix TTS
This commit is contained in:
@ -1207,8 +1207,8 @@ jQuery(async function () {
|
|||||||
eventSource.on(event_types.GROUP_UPDATED, onChatChanged);
|
eventSource.on(event_types.GROUP_UPDATED, onChatChanged);
|
||||||
eventSource.on(event_types.GENERATION_STARTED, onGenerationStarted);
|
eventSource.on(event_types.GENERATION_STARTED, onGenerationStarted);
|
||||||
eventSource.on(event_types.GENERATION_ENDED, onGenerationEnded);
|
eventSource.on(event_types.GENERATION_ENDED, onGenerationEnded);
|
||||||
eventSource.makeLast(event_types.CHARACTER_MESSAGE_RENDERED, onMessageEvent);
|
eventSource.makeLast(event_types.CHARACTER_MESSAGE_RENDERED, (messageId) => onMessageEvent(messageId));
|
||||||
eventSource.makeLast(event_types.USER_MESSAGE_RENDERED, onMessageEvent);
|
eventSource.makeLast(event_types.USER_MESSAGE_RENDERED, (messageId) => onMessageEvent(messageId));
|
||||||
SlashCommandParser.addCommandObject(SlashCommand.fromProps({
|
SlashCommandParser.addCommandObject(SlashCommand.fromProps({
|
||||||
name: 'speak',
|
name: 'speak',
|
||||||
callback: async (args, value) => {
|
callback: async (args, value) => {
|
||||||
|
Reference in New Issue
Block a user