왓슨 기초

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
+11
View File
@@ -0,0 +1,11 @@
import gradio as gr
def echo(message, history):
return message
demo = gr.ChatInterface(
fn=echo, examples=["hello", "hola", "merhaba"], title="Echo Bot"
)
demo.launch()