Spaces:
Configuration error
Configuration error
Update app.py
Browse files
app.py
CHANGED
@@ -179,12 +179,11 @@ def greet(Text,Voicetoclone,VoiceMicrophone):
|
|
179 |
|
180 |
return "enhanced.wav"
|
181 |
|
182 |
-
|
183 |
fn=greet,
|
184 |
inputs=[gr.inputs.Textbox(label='请输入您想要合成的文字,请自觉合法合规使用!'),gr.Audio(type="filepath", source="upload",label='请上传您喜欢的声音(wav/mp3文件, max. 30mb)'),gr.Audio(source="microphone", type="filepath", label = '请用麦克风上传您喜欢的声音,与文件上传二选一即可')],
|
185 |
outputs="audio",
|
186 |
title="🥳💬💕 - TalktoAI,随时随地,谈天说地!",
|
187 |
-
description = "🔴注意🔴:请不要生成会对个人以及组织造成侵害的内容,仅供科研、学习使用。用户生成内容与程序开发者无关,请自觉合法合规使用,违反者一切后果自负。"
|
188 |
article = "🤖 - 让有人文关怀的AI造福每一个人!AI向善,文明璀璨!TalktoAI - Enable the future!",
|
189 |
-
|
190 |
-
demo.launch()
|
|
|
179 |
|
180 |
return "enhanced.wav"
|
181 |
|
182 |
+
gr.Interface(
|
183 |
fn=greet,
|
184 |
inputs=[gr.inputs.Textbox(label='请输入您想要合成的文字,请自觉合法合规使用!'),gr.Audio(type="filepath", source="upload",label='请上传您喜欢的声音(wav/mp3文件, max. 30mb)'),gr.Audio(source="microphone", type="filepath", label = '请用麦克风上传您喜欢的声音,与文件上传二选一即可')],
|
185 |
outputs="audio",
|
186 |
title="🥳💬💕 - TalktoAI,随时随地,谈天说地!",
|
187 |
+
description = "🔴注意🔴:请不要生成会对个人以及组织造成侵害的内容,仅供科研、学习使用。用户生成内容与程序开发者无关,请自觉合法合规使用,违反者一切后果自负。",
|
188 |
article = "🤖 - 让有人文关怀的AI造福每一个人!AI向善,文明璀璨!TalktoAI - Enable the future!",
|
189 |
+
).launch()
|
|