ezeanubis commited on
Commit
d900235
verified
1 Parent(s): a7aea10

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -9
app.py CHANGED
@@ -1,15 +1,9 @@
1
  import gradio as gr
2
 
3
- def demo_fn(texto):
4
- return f"Respuesta del modelo a: {texto}"
5
 
6
- demo = gr.Interface(
7
- fn=demo_fn,
8
- inputs="text",
9
- outputs="text",
10
- title="HunyuanWorld-Voyager Demo",
11
- description="Demostraci贸n del modelo real"
12
- )
13
 
14
  if __name__ == "__main__":
15
  demo.launch()
 
1
  import gradio as gr
2
 
3
+ def greet(name):
4
+ return f"Hola {name}, 隆HunyuanWorld est谩 listo!"
5
 
6
+ demo = gr.Interface(fn=greet, inputs="text", outputs="text", title="HunyuanWorld Demo")
 
 
 
 
 
 
7
 
8
  if __name__ == "__main__":
9
  demo.launch()