Spaces:
Runtime error
Runtime error
Commit ·
7a3ebcf
1
Parent(s): 4734e0d
Update app.py
Browse files
app.py
CHANGED
|
@@ -12,8 +12,6 @@ def evaluate_comment(Comment):
|
|
| 12 |
|
| 13 |
return text
|
| 14 |
|
| 15 |
-
interface = gr.Interface(fn = evaluate_comment,
|
| 16 |
-
inputs = gr.inputs.Textbox(lines = 4, placeholder='Comment to evaluate'),
|
| 17 |
-
outputs = 'text')
|
| 18 |
|
| 19 |
interface.launch(share=True)
|
|
|
|
| 12 |
|
| 13 |
return text
|
| 14 |
|
| 15 |
+
interface = gr.Interface(fn = evaluate_comment, inputs = gr.inputs.Textbox(lines = 4, placeholder='Comment to evaluate'), outputs = 'text')
|
|
|
|
|
|
|
| 16 |
|
| 17 |
interface.launch(share=True)
|