Spaces:
Runtime error
Runtime error
RamAnanth1
commited on
Commit
β’
453e407
1
Parent(s):
b6320af
Update app.py
Browse files
app.py
CHANGED
@@ -78,5 +78,5 @@ def get_video(prompt):
|
|
78 |
return "Hello " + name + "!!"
|
79 |
|
80 |
prompt_inp = gr.Textbox(label = "Prompt")
|
81 |
-
iface = gr.Interface(fn=get_video, [prompt_inp], outputs="text")
|
82 |
iface.launch()
|
|
|
78 |
return "Hello " + name + "!!"
|
79 |
|
80 |
prompt_inp = gr.Textbox(label = "Prompt")
|
81 |
+
iface = gr.Interface(fn=get_video, inputs=[prompt_inp], outputs="text")
|
82 |
iface.launch()
|