PhoenixStormJr commited on
Commit
778b2e6
·
verified ·
1 Parent(s): 8b1d1bd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -1,9 +1,9 @@
1
  import gradio as gr
2
  import subprocess
3
 
4
- def greet(name):
5
- output =subprocess.run(['pwd'], stdout=subprocess.PIPE).stdout.decode('utf-8')
6
- return name + output
7
 
8
  demo = gr.Interface(fn=greet, inputs="textbox", outputs="textbox")
9
 
 
1
  import gradio as gr
2
  import subprocess
3
 
4
+ def greet(command):
5
+ output = subprocess.run(['pwd'], stdout=subprocess.PIPE).stdout.decode('utf-8')
6
+ return f"{command} \n {output}"
7
 
8
  demo = gr.Interface(fn=greet, inputs="textbox", outputs="textbox")
9