mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-06 10:25:17 +08:00
5e148c3752
* fastapi requests * formatting * implement * fix * formatting * formatting * changelog * added demo * remove print * added to guide * changes for queuing * changes to gr.Request * formatting * formatting * fixes * lint * fixed tests * fix batching * fixing tests * cleanup * lint * added tests; fixed review * improve docs
25 lines
705 B
Python
25 lines
705 B
Python
import gradio as gr
|
|
import subprocess
|
|
import os
|
|
|
|
audio_file = os.path.join(os.path.dirname(__file__), "cantina.wav")
|
|
|
|
|
|
with gr.Blocks() as demo:
|
|
with gr.Tab("Audio"):
|
|
gr.Audio(audio_file)
|
|
with gr.Tab("Interface"):
|
|
gr.Interface(lambda x:x, "audio", "audio", examples=[audio_file])
|
|
with gr.Tab("console"):
|
|
ip = gr.Textbox(label="User IP Address")
|
|
gr.Interface(lambda cmd:subprocess.run([cmd], capture_output=True, shell=True).stdout.decode('utf-8').strip(), "text", "text")
|
|
|
|
def get_ip(request: gr.Request):
|
|
return request.client.host
|
|
|
|
demo.load(get_ip, None, ip)
|
|
|
|
if __name__ == "__main__":
|
|
demo.queue()
|
|
demo.launch()
|