eagle0504 commited on
Commit
6dce21c
·
1 Parent(s): d4a32ac

button added

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -59,7 +59,7 @@ special_threshold = st.sidebar.number_input(
59
  st.sidebar.success(
60
  "The 'distances' score indicates the proximity of your question to our database questions (lower is better). The 'ai_judge' ranks the similarity between user's question and database answers independently (higher is better)."
61
  )
62
- submit_button = st.button("Submit", type="primary")
63
  clear_button = st.sidebar.button("Clear Conversation", key="clear")
64
  if clear_button:
65
  st.session_state.messages = []
 
59
  st.sidebar.success(
60
  "The 'distances' score indicates the proximity of your question to our database questions (lower is better). The 'ai_judge' ranks the similarity between user's question and database answers independently (higher is better)."
61
  )
62
+ submit_button = st.sidebar.button("Submit", type="primary")
63
  clear_button = st.sidebar.button("Clear Conversation", key="clear")
64
  if clear_button:
65
  st.session_state.messages = []