DrishtiSharma
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -672,11 +672,10 @@ def set_tools() -> List[Tool]:
|
|
672 |
tool_dictionary = {
|
673 |
"ArXiv": arxiv,
|
674 |
"Wikipedia": wikipedia,
|
675 |
-
"Python_REPL": python_repl
|
|
|
676 |
}
|
677 |
|
678 |
-
if st.session_state.retriever_tool:
|
679 |
-
tool_dictionary["Retrieval"] = st.session_state.retriever_tool
|
680 |
|
681 |
|
682 |
if st.session_state.bing_subscription_validity:
|
|
|
672 |
tool_dictionary = {
|
673 |
"ArXiv": arxiv,
|
674 |
"Wikipedia": wikipedia,
|
675 |
+
"Python_REPL": python_repl,
|
676 |
+
"Retrieval": st.session_state.retriever_tool
|
677 |
}
|
678 |
|
|
|
|
|
679 |
|
680 |
|
681 |
if st.session_state.bing_subscription_validity:
|