2023-03-22 19:55:03 +01:00
|
|
|
import re
|
2023-03-06 23:38:36 +01:00
|
|
|
from pathlib import Path
|
2023-03-06 23:28:53 +01:00
|
|
|
|
2023-05-06 15:56:31 +02:00
|
|
|
import elevenlabs
|
2023-05-06 15:57:34 +02:00
|
|
|
import gradio as gr
|
2023-05-06 15:56:31 +02:00
|
|
|
from modules import chat, shared
|
2023-04-07 19:42:03 +02:00
|
|
|
|
2023-03-06 23:28:53 +01:00
|
|
|
params = {
|
|
|
|
'activate': True,
|
2023-05-06 15:56:31 +02:00
|
|
|
'api_key': None,
|
2023-03-06 23:28:53 +01:00
|
|
|
'selected_voice': 'None',
|
2023-05-06 15:56:31 +02:00
|
|
|
'autoplay': False,
|
|
|
|
'show_text': True,
|
2023-03-06 23:28:53 +01:00
|
|
|
}
|
2023-03-06 23:46:46 +01:00
|
|
|
|
2023-05-06 15:56:31 +02:00
|
|
|
voices = None
|
2023-03-06 23:28:53 +01:00
|
|
|
wav_idx = 0
|
|
|
|
|
|
|
|
|
2023-05-06 15:56:31 +02:00
|
|
|
def refresh_voices():
|
|
|
|
global params
|
|
|
|
your_voices = elevenlabs.voices(api_key=params['api_key'])
|
|
|
|
voice_names = [voice.name for voice in your_voices]
|
|
|
|
return voice_names
|
2023-04-07 05:15:45 +02:00
|
|
|
|
|
|
|
|
2023-05-06 15:56:31 +02:00
|
|
|
def refresh_voices_dd():
|
|
|
|
all_voices = refresh_voices()
|
|
|
|
return gr.Dropdown.update(value=all_voices[0], choices=all_voices)
|
|
|
|
|
2023-04-07 05:15:45 +02:00
|
|
|
|
2023-05-11 20:37:04 +02:00
|
|
|
def remove_tts_from_history():
|
2023-05-06 15:56:31 +02:00
|
|
|
for i, entry in enumerate(shared.history['internal']):
|
|
|
|
shared.history['visible'][i] = [shared.history['visible'][i][0], entry[1]]
|
2023-05-06 15:57:34 +02:00
|
|
|
|
2023-05-06 15:56:31 +02:00
|
|
|
|
2023-05-11 20:37:04 +02:00
|
|
|
def toggle_text_in_history():
|
2023-05-06 15:56:31 +02:00
|
|
|
for i, entry in enumerate(shared.history['visible']):
|
|
|
|
visible_reply = entry[1]
|
|
|
|
if visible_reply.startswith('<audio'):
|
|
|
|
if params['show_text']:
|
|
|
|
reply = shared.history['internal'][i][1]
|
|
|
|
shared.history['visible'][i] = [
|
|
|
|
shared.history['visible'][i][0], f"{visible_reply.split('</audio>')[0]}</audio>\n\n{reply}"
|
|
|
|
]
|
|
|
|
else:
|
|
|
|
shared.history['visible'][i] = [
|
|
|
|
shared.history['visible'][i][0], f"{visible_reply.split('</audio>')[0]}</audio>"
|
|
|
|
]
|
2023-05-06 15:57:34 +02:00
|
|
|
|
2023-04-07 05:15:45 +02:00
|
|
|
|
2023-03-06 23:28:53 +01:00
|
|
|
def remove_surrounded_chars(string):
|
2023-03-22 05:47:54 +01:00
|
|
|
# this expression matches to 'as few symbols as possible (0 upwards) between any asterisks' OR
|
|
|
|
# 'as few symbols as possible (0 upwards) between an asterisk and the end of the string'
|
2023-04-07 05:15:45 +02:00
|
|
|
return re.sub('\*[^\*]*?(\*|$)', '', string)
|
|
|
|
|
2023-03-06 23:28:53 +01:00
|
|
|
|
2023-05-05 23:53:03 +02:00
|
|
|
def state_modifier(state):
|
|
|
|
state['stream'] = False
|
|
|
|
return state
|
|
|
|
|
|
|
|
|
2023-03-06 23:28:53 +01:00
|
|
|
def input_modifier(string):
|
|
|
|
"""
|
|
|
|
This function is applied to your text inputs before
|
|
|
|
they are fed into the model.
|
|
|
|
"""
|
2023-05-06 15:56:31 +02:00
|
|
|
# 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>')
|
|
|
|
]
|
2023-05-06 15:57:34 +02:00
|
|
|
|
2023-05-06 15:56:31 +02:00
|
|
|
if params['activate']:
|
|
|
|
shared.processing_message = "*Is recording a voice message...*"
|
2023-05-06 15:57:34 +02:00
|
|
|
|
2023-03-06 23:28:53 +01:00
|
|
|
return string
|
|
|
|
|
2023-04-07 05:15:45 +02:00
|
|
|
|
2023-03-06 23:28:53 +01:00
|
|
|
def output_modifier(string):
|
|
|
|
"""
|
|
|
|
This function is applied to the model outputs.
|
|
|
|
"""
|
2023-03-06 23:46:46 +01:00
|
|
|
|
2023-05-06 16:03:12 +02:00
|
|
|
global params, wav_idx
|
2023-04-07 05:15:45 +02:00
|
|
|
|
|
|
|
if not params['activate']:
|
2023-03-06 23:28:53 +01:00
|
|
|
return string
|
|
|
|
|
2023-05-06 15:56:31 +02:00
|
|
|
original_string = string
|
2023-03-06 23:28:53 +01:00
|
|
|
string = remove_surrounded_chars(string)
|
|
|
|
string = string.replace('"', '')
|
|
|
|
string = string.replace('“', '')
|
|
|
|
string = string.replace('\n', ' ')
|
|
|
|
string = string.strip()
|
|
|
|
if string == '':
|
|
|
|
string = 'empty reply, try regenerating'
|
2023-04-07 05:15:45 +02:00
|
|
|
|
2023-05-06 15:56:31 +02:00
|
|
|
output_file = Path(f'extensions/elevenlabs_tts/outputs/{wav_idx:06d}.mp3'.format(wav_idx))
|
|
|
|
print(f'Outputing audio to {str(output_file)}')
|
|
|
|
try:
|
|
|
|
audio = elevenlabs.generate(text=string, voice=params['selected_voice'], model="eleven_monolingual_v1")
|
|
|
|
elevenlabs.save(audio, str(output_file))
|
|
|
|
|
|
|
|
autoplay = 'autoplay' if params['autoplay'] else ''
|
|
|
|
string = f'<audio src="file/{output_file.as_posix()}" controls {autoplay}></audio>'
|
|
|
|
wav_idx += 1
|
|
|
|
except elevenlabs.api.error.UnauthenticatedRateLimitError:
|
|
|
|
string = "🤖 ElevenLabs Unauthenticated Rate Limit Reached - Please create an API key to continue\n\n"
|
|
|
|
except elevenlabs.api.error.RateLimitError:
|
|
|
|
string = "🤖 ElevenLabs API Tier Limit Reached\n\n"
|
|
|
|
except elevenlabs.api.error.APIError as err:
|
|
|
|
string = f"🤖 ElevenLabs Error: {err}\n\n"
|
|
|
|
|
|
|
|
if params['show_text']:
|
|
|
|
string += f'\n\n{original_string}'
|
|
|
|
|
|
|
|
shared.processing_message = "*Is typing...*"
|
2023-03-06 23:28:53 +01:00
|
|
|
return string
|
|
|
|
|
2023-04-07 05:15:45 +02:00
|
|
|
|
2023-03-06 23:28:53 +01:00
|
|
|
def ui():
|
2023-05-06 15:56:31 +02:00
|
|
|
global voices
|
|
|
|
if not voices:
|
|
|
|
voices = refresh_voices()
|
|
|
|
params['selected_voice'] = voices[0]
|
2023-05-06 15:57:34 +02:00
|
|
|
|
2023-03-06 23:28:53 +01:00
|
|
|
# Gradio elements
|
|
|
|
with gr.Row():
|
|
|
|
activate = gr.Checkbox(value=params['activate'], label='Activate TTS')
|
2023-05-06 15:56:31 +02:00
|
|
|
autoplay = gr.Checkbox(value=params['autoplay'], label='Play TTS automatically')
|
|
|
|
show_text = gr.Checkbox(value=params['show_text'], label='Show message text under audio player')
|
2023-05-06 15:57:34 +02:00
|
|
|
|
2023-05-06 15:56:31 +02:00
|
|
|
with gr.Row():
|
|
|
|
voice = gr.Dropdown(value=params['selected_voice'], choices=voices, label='TTS Voice')
|
|
|
|
refresh = gr.Button(value='Refresh')
|
2023-05-06 15:57:34 +02:00
|
|
|
|
2023-03-06 23:28:53 +01:00
|
|
|
with gr.Row():
|
|
|
|
api_key = gr.Textbox(placeholder="Enter your API key.", label='API Key')
|
2023-05-06 15:57:34 +02:00
|
|
|
|
2023-05-06 15:56:31 +02:00
|
|
|
with gr.Row():
|
|
|
|
convert = gr.Button('Permanently replace audios with the message texts')
|
|
|
|
convert_cancel = gr.Button('Cancel', visible=False)
|
|
|
|
convert_confirm = gr.Button('Confirm (cannot be undone)', variant="stop", visible=False)
|
|
|
|
|
|
|
|
# Convert history with confirmation
|
|
|
|
convert_arr = [convert_confirm, convert, convert_cancel]
|
2023-05-11 20:37:04 +02:00
|
|
|
convert.click(lambda: [gr.update(visible=True), gr.update(visible=False), gr.update(visible=True)], None, convert_arr)
|
2023-05-06 15:56:31 +02:00
|
|
|
convert_confirm.click(
|
2023-05-11 20:37:04 +02:00
|
|
|
lambda: [gr.update(visible=False), gr.update(visible=True), gr.update(visible=False)], None, convert_arr).then(
|
|
|
|
remove_tts_from_history, None, None).then(
|
|
|
|
chat.save_history, shared.gradio['mode'], None, show_progress=False).then(
|
|
|
|
chat.redraw_html, shared.reload_inputs, shared.gradio['display'])
|
|
|
|
|
|
|
|
convert_cancel.click(lambda: [gr.update(visible=False), gr.update(visible=True), gr.update(visible=False)], None, convert_arr)
|
|
|
|
|
|
|
|
# Toggle message text in history
|
|
|
|
show_text.change(
|
|
|
|
lambda x: params.update({"show_text": x}), show_text, None).then(
|
|
|
|
toggle_text_in_history, None, None).then(
|
|
|
|
chat.save_history, shared.gradio['mode'], None, show_progress=False).then(
|
|
|
|
chat.redraw_html, shared.reload_inputs, shared.gradio['display'])
|
|
|
|
|
|
|
|
convert_cancel.click(lambda: [gr.update(visible=False), gr.update(visible=True), gr.update(visible=False)], None, convert_arr)
|
2023-05-06 15:57:34 +02:00
|
|
|
|
2023-03-06 23:28:53 +01:00
|
|
|
# Event functions to update the parameters in the backend
|
|
|
|
activate.change(lambda x: params.update({'activate': x}), activate, None)
|
|
|
|
voice.change(lambda x: params.update({'selected_voice': x}), voice, None)
|
|
|
|
api_key.change(lambda x: params.update({'api_key': x}), api_key, None)
|
2023-05-06 15:56:31 +02:00
|
|
|
# connect.click(check_valid_api, [], connection_status)
|
|
|
|
refresh.click(refresh_voices_dd, [], voice)
|
|
|
|
# Event functions to update the parameters in the backend
|
|
|
|
autoplay.change(lambda x: params.update({"autoplay": x}), autoplay, None)
|