GUI / app.py
unim4er's picture
Create app.py
457194a
raw
history blame
329 Bytes
import gradio as gr
import random as rd
with gr blocks() as my App:
with gr.ROW():
with gr.column(scale=1):
inp = gr.Radio (CHOICES=list(range(10)),lable= 'เลือก 1 หมายเลข'
with gr.column(scale=1):
out= gr.textbox(lable='ผลลัพธ์')
my App.launch()