lianghsun commited on
Commit
9a0ba59
·
1 Parent(s): 281f939

Update app.py with LLM info

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -55,4 +55,5 @@ if prompt := st.chat_input("What is up?"):
55
  st.session_state.messages.append(
56
  {"role": "assistant", "content": response})
57
 
58
- st.caption('Please be aware that current Large Language Models (LLMs) can exhibit “hallucinations,” producing plausible-sounding but inaccurate or fabricated information. It is crucial to carefully review and verify any content generated by LLMs to avoid misunderstandings or misinformation. Always cross-check facts and consult reliable sources before making important decisions based on LLM outputs.')
 
 
55
  st.session_state.messages.append(
56
  {"role": "assistant", "content": response})
57
 
58
+ with st.container():
59
+ st.caption('Please be aware that current Large Language Models (LLMs) can exhibit “hallucinations,” producing plausible-sounding but inaccurate or fabricated information. It is crucial to carefully review and verify any content generated by LLMs to avoid misunderstandings or misinformation. Always cross-check facts and consult reliable sources before making important decisions based on LLM outputs.')