eogreen commited on
Commit
48ad9ce
·
verified ·
1 Parent(s): 5b4e1dc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -38,7 +38,7 @@ def dprocess(command, ddddd):
38
  return 42
39
 
40
  # Set-up the Gradio UI
41
- textbox = gr.Textbox(label='Command:')
42
  # company = gr.Radio(label='Company:',
43
  # choices=["aws", "google", "IBM", "Meta", "msft"],
44
  # value="aws")
@@ -50,7 +50,7 @@ demo = gr.Interface(fn=dprocess,
50
  outputs="text",
51
  title="operand data automation CLI",
52
  description="The description...",
53
- theme=gr.themes.Soft(),
54
 
55
  demo.queue()
56
  demo.launch()
 
38
  return 42
39
 
40
  # Set-up the Gradio UI
41
+ textbox = gr.Textbox(label='Command')
42
  # company = gr.Radio(label='Company:',
43
  # choices=["aws", "google", "IBM", "Meta", "msft"],
44
  # value="aws")
 
50
  outputs="text",
51
  title="operand data automation CLI",
52
  description="The description...",
53
+ theme=gr.themes.Soft())
54
 
55
  demo.queue()
56
  demo.launch()