ronniet commited on
Commit
43439da
1 Parent(s): 0b1f80f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -63,10 +63,13 @@ def predict(image):
63
 
64
  return text, audio
65
 
 
 
66
  demo = gr.Interface(
67
  fn=predict,
68
  inputs=gr.Image(type="pil"),
69
- outputs=['text', gr.Audio(type="numpy")]
 
70
  )
71
 
72
  demo.launch()
 
63
 
64
  return text, audio
65
 
66
+ # theme = gr.themes.Default(primary_hue="blue")
67
+
68
  demo = gr.Interface(
69
  fn=predict,
70
  inputs=gr.Image(type="pil"),
71
+ outputs=['text', gr.Audio(type="numpy")],
72
+ css=".gradio-container {background-color: blue}"
73
  )
74
 
75
  demo.launch()