import gradio as gr | |
def walking_assistant(voice_command): | |
if voice_command.lower() == 'stop': | |
return "Stopping" | |
elif voice_command.lower() == 'forward': | |
return "Moving Forward" | |
elif voice_command.lower() == 'left': | |
return "Turning Left" | |
elif voice_command.lower() == 'right': | |
return "Turning Right" | |
else: | |
return "Invalid Command" | |
iface = gr.Interface(fn=walking_assistant, inputs="text", outputs="text", title="Walking Assistant for the Visually Impaired") | |
iface.launch() | |