Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -25,7 +25,7 @@ def translate(input_text):
|
|
25 |
if process.returncode != 0:
|
26 |
raise Exception(f"Error occurred: {stderr.decode().strip()}")
|
27 |
with open ('./output_file.txt','r') as f:
|
28 |
-
|
29 |
return stdout.decode().strip()
|
30 |
|
31 |
demo = gr.Interface(fn=translate, inputs="textbox", outputs="textbox")
|
|
|
25 |
if process.returncode != 0:
|
26 |
raise Exception(f"Error occurred: {stderr.decode().strip()}")
|
27 |
with open ('./output_file.txt','r') as f:
|
28 |
+
resultado= f.read()
|
29 |
return stdout.decode().strip()
|
30 |
|
31 |
demo = gr.Interface(fn=translate, inputs="textbox", outputs="textbox")
|