ruslanmv commited on
Commit
c7eed2a
1 Parent(s): 2c4e8d2

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +4 -0
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)