Madhuri commited on
Commit
8009ea0
1 Parent(s): 6fda2a0

Add warp for deployment in huggingface

Browse files
Files changed (2) hide show
  1. audiobot.py +1 -1
  2. chatbot.py +1 -1
audiobot.py CHANGED
@@ -46,7 +46,7 @@ def show():
46
  st.session_state.gallery,
47
  titles=[f"Image #{str(i)}" for i in range(2)],
48
  div_style={"display": "flex",
49
- "justify-content": "center", "flex-wrap": "nowrap"},
50
  img_style={"margin": "5px", "height": "100px"},
51
  )
52
 
 
46
  st.session_state.gallery,
47
  titles=[f"Image #{str(i)}" for i in range(2)],
48
  div_style={"display": "flex",
49
+ "justify-content": "center", "flex-wrap": "wrap"},
50
  img_style={"margin": "5px", "height": "100px"},
51
  )
52
 
chatbot.py CHANGED
@@ -77,7 +77,7 @@ def show():
77
  st.session_state.gallery,
78
  titles=[f"Image #{str(i)}" for i in range(2)],
79
  div_style={"display": "flex",
80
- "justify-content": "center", "flex-wrap": "nowrap"},
81
  img_style={"margin": "5px", "height": "100px"},
82
  )
83
 
 
77
  st.session_state.gallery,
78
  titles=[f"Image #{str(i)}" for i in range(2)],
79
  div_style={"display": "flex",
80
+ "justify-content": "center", "flex-wrap": "wrap"},
81
  img_style={"margin": "5px", "height": "100px"},
82
  )
83