Spaces:
Sleeping
Sleeping
button added
Browse files
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 = []
|