whisper_wrapper / app.py
nico-schiappa's picture
Fix: Revert share=True
d257e00
raw
history blame
399 Bytes
#!/usr/bin/python
# -*- coding: utf-8 -*-
import gradio as gr
# -->> Tunables <<---------------------
# -->> Definitions <<------------------
def greet(name):
return "Helloo" + name + "!"
# -->> API <<--------------------------
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
iface.launch()
# -->> Execute <<----------------------
# -->> Export <<-----------------------