Fix silero tts autoplay

This commit is contained in:
oobabooga 2023-05-21 12:11:59 -03:00
parent 78b2478d9c
commit a5d5bb9390
2 changed files with 10 additions and 14 deletions

View file

@ -85,7 +85,10 @@ def input_modifier(string):
# Remove autoplay from the last reply
if shared.is_chat() and len(shared.history['internal']) > 0:
shared.history['visible'][-1] = [shared.history['visible'][-1][0], shared.history['visible'][-1][1].replace('controls autoplay>', 'controls>')]
shared.history['visible'][-1] = [
shared.history['visible'][-1][0],
shared.history['visible'][-1][1].replace('controls autoplay>', 'controls>')
]
shared.processing_message = "*Is recording a voice message...*"
return string
@ -127,16 +130,6 @@ def output_modifier(string):
return string
def bot_prefix_modifier(string):
"""
This function is only applied in chat mode. It modifies
the prefix text for the Bot and can be used to bias its
behavior.
"""
return string
def setup():
global model
model = load_model()