polpoDevs commited on
Commit
9ccad8f
·
verified ·
1 Parent(s): 8f8fb0c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -76,5 +76,5 @@ if "model_name" not in st.session_state.keys():
76
  text = st.text_area("Enter text to summarize here.")
77
 
78
  if text:
79
- out = get_answer(llm_chatbot, text)
80
  st.write(out)
 
76
  text = st.text_area("Enter text to summarize here.")
77
 
78
  if text:
79
+ out = get_answer(st.session_state["model"], text)
80
  st.write(out)