Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -9,5 +9,5 @@ def predict(prompt):
|
|
9 |
completion = model(prompt)[0]["generated_text"]
|
10 |
return completion
|
11 |
|
12 |
-
gr.Interface(fn=predict, inputs="text", outputs="text").launch()
|
13 |
|
|
|
9 |
completion = model(prompt)[0]["generated_text"]
|
10 |
return completion
|
11 |
|
12 |
+
gr.Interface(fn=predict, inputs="text", outputs="text", title="My completion app").launch()
|
13 |
|