Myranda commited on
Commit
587e02a
·
1 Parent(s): 15bcf31

Merge pull request #163 from vanderbilt-data-science/issue-155

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -150,7 +150,7 @@ if authentication_status:
150
 
151
  with right_col:
152
  regenerate_background = False
153
- background_info = st.text_area("Background information on original post (This autopopulates for your reference). The Background information generated by OpenAI's GPT-4.", height = 780, value=st.session_state.background_info if 'background_info' in st.session_state else '', key = 'background_info_key')
154
  if st.button("Request New Background Information"):
155
  regenerate_background = True
156
 
 
150
 
151
  with right_col:
152
  regenerate_background = False
153
+ background_info = st.text_area("Background information on original post (This autopopulates for your reference). The Background information is generated by OpenAI's GPT-4, and used by the model to generate a response. Because the Background information is generated by an LLM, it may contain mistakes.", height = 780, value=st.session_state.background_info if 'background_info' in st.session_state else '', key = 'background_info_key')
154
  if st.button("Request New Background Information"):
155
  regenerate_background = True
156