Files
Source/WATSONX/app2.py
T
2026-05-26 22:08:02 +09:00

13 lines
309 B
Python

import gradio as gr
def greet(name, grade):
return name + "" * int(grade)
demo = gr.Interface(
fn=greet,
inputs=[gr.Text(label = "음식명"), gr.Slider(1, 5, step=1, label = "만족도")],
outputs=[gr.Text(label= "만족도 출력")],
api_name="별점 리뷰 생성"
)
demo.launch()