ErikH commited on
Commit
3076e0a
1 Parent(s): b884de1

Update pages/bot.py

Browse files
Files changed (1) hide show
  1. pages/bot.py +2 -1
pages/bot.py CHANGED
@@ -121,7 +121,8 @@ def main():
121
  | StrOutputParser()
122
  )
123
 
124
- st.text(chain.invoke(question))
 
125
 
126
 
127
 
 
121
  | StrOutputParser()
122
  )
123
 
124
+ ausgabetext = chain.invoke(question)
125
+ st.text(ausgabetext)
126
 
127
 
128