Spaces:
Build error
Build error
import os | |
import gradio as gr | |
HF_TOKEN = os.environ.get("HF_TOKEN") | |
print("is none?", HF_TOKEN is None) | |
def get_record(language,text,record): | |
# Save text and its corresponding record to flag | |
text =text.strip() | |
return f'Record for text {text} successfully saved to dataset! Thank You.' | |
title = 'African Crowdsource Speech' | |
description = 'A platform to contribute to your African language by recording your voice' | |
markdown = """# African Crowdsource Speech | |
A platform to contribute to your African language by recording your voice | |
""" | |
# Get a dropdown of all African languages | |
# Interface design begins | |
block = gr.Blocks() | |
with block: | |
gr.Markdown(markdown) | |
with gr.Tab(): | |
with gr.Row(): | |
language = gr.inputs.Textbox(placeholder='Choose your language',label='Language') | |
text = gr.inputs.Textbox(placeholder='Write your text',label='Text') | |
record = gr.inputs.Audio(source="microphone",label='Record your voice') | |
output = gr.outputs.Textbox(type="str") | |
save = gr.Button("Save") | |
save.click(get_record, inputs=[language,text,record],outputs=output) | |