왓슨 기초

This commit is contained in:
Mingu Kim
2026-05-26 22:08:02 +09:00
parent 8a18105599
commit a1cb6fcdf9
26 changed files with 3921 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
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()