Spaces:
Configuration error
Configuration error
Update app.py
Browse files
app.py
CHANGED
@@ -28,4 +28,4 @@ def predict(input):
|
|
28 |
response = tokenizer.decode(history[0]).split("<|endoftext|>")
|
29 |
return response[1]
|
30 |
|
31 |
-
gr.Interface(fn = predict, inputs = ["textbox"], outputs = ["text"],allow_flagging = "manual",title = title, description = description, article = article,
|
|
|
28 |
response = tokenizer.decode(history[0]).split("<|endoftext|>")
|
29 |
return response[1]
|
30 |
|
31 |
+
gr.Interface(fn = predict, inputs = ["textbox"], outputs = ["text"],allow_flagging = "manual",title = title, description = description, article = article, examples=[["What are you doing?"], ["Where should we time travel to?"]] ).launch(debug=True)
|