avreymi commited on
Commit
3c40360
·
1 Parent(s): f5f0444
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -8,10 +8,10 @@ import pipline
8
  if "app" not in state:
9
  state.app = "model"
10
  state.out = ""
11
- st.title("Streamlit using Huggingface Transformers and langchain")
12
  in_area = st.container()
13
- out_area = st.container().empty()
14
- in_area.empty()
 
15
 
16
 
17
 
 
8
  if "app" not in state:
9
  state.app = "model"
10
  state.out = ""
 
11
  in_area = st.container()
12
+ out_area = st.container()
13
+ in_area.title("Streamlit using Huggingface Transformers and langchain")
14
+ out_area.header("Output")
15
 
16
 
17