andreska commited on
Commit
c2dd4a5
·
verified ·
1 Parent(s): 819658d

Fixed build problem

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -21,7 +21,7 @@ user_input = st.text_input('Ask me a question')
21
  if st.button("Submit"):
22
  if user_input:
23
  messages = [
24
- {"role": "system", "content": f"Context: {context}"
25
  {"role": "user","content": user_input}
26
  ]
27
 
 
21
  if st.button("Submit"):
22
  if user_input:
23
  messages = [
24
+ {"role": "system", "content": f"Context: {context}"},
25
  {"role": "user","content": user_input}
26
  ]
27