Commit
·
ff41237
1
Parent(s):
f8e0bc0
Update app.py
Browse files
app.py
CHANGED
|
@@ -51,7 +51,7 @@ class ChatWrapper:
|
|
| 51 |
def my_inference_function(name):
|
| 52 |
return "Hello " + name + "!"
|
| 53 |
|
| 54 |
-
gradio_interface =
|
| 55 |
fn = my_inference_function,
|
| 56 |
inputs = "text",
|
| 57 |
outputs = "text"
|
|
|
|
| 51 |
def my_inference_function(name):
|
| 52 |
return "Hello " + name + "!"
|
| 53 |
|
| 54 |
+
gradio_interface = gr.Interface(
|
| 55 |
fn = my_inference_function,
|
| 56 |
inputs = "text",
|
| 57 |
outputs = "text"
|