File size: 669 Bytes
4338994 0a4dae4 4338994 213bfb5 4338994 0a4dae4 4338994 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
import gradio as gr
import io
import sys
import os
class PersistentRunner:
def __init__(self):
self.globals = {}
def run(self, code):
old_stdout = sys.stdout
sys.stdout = buffer = io.StringIO()
try:
exec(code, self.globals)
except Exception as e:
print(f"Error: {e}")
finally:
sys.stdout = old_stdout
return buffer.getvalue()
runner = PersistentRunner()
def run(code):
if code.startswith("!"):
os.system(code[1:])
else:
return runner.run(code.replace("\\n", "\n"))
demo = gr.Interface(fn=run, inputs="text", outputs="text")
demo.launch()
|