Spaces:
Running
Running
Update main.py
Browse files
main.py
CHANGED
@@ -14,6 +14,10 @@ iface = gr.Interface(
|
|
14 |
outputs="text",
|
15 |
title="Command Output Viewer",
|
16 |
description="Enter a command and view its output.",
|
|
|
|
|
|
|
|
|
17 |
)
|
18 |
|
19 |
iface.launch(server_name="0.0.0.0", server_port=7860)
|
|
|
14 |
outputs="text",
|
15 |
title="Command Output Viewer",
|
16 |
description="Enter a command and view its output.",
|
17 |
+
examples=[
|
18 |
+
["ls"],
|
19 |
+
["pwd"],
|
20 |
+
["echo 'Hello, Gradio!'"]
|
21 |
)
|
22 |
|
23 |
iface.launch(server_name="0.0.0.0", server_port=7860)
|