Update app.py
Browse files
app.py
CHANGED
@@ -89,6 +89,9 @@ tavily_tool = TavilySearchResults(max_results=5, tavily_api_key=TAVILY_API_KEY)
|
|
89 |
python_repl_tool = PythonREPLTool()
|
90 |
|
91 |
# Streamlit UI
|
|
|
|
|
|
|
92 |
st.title("Multi-Agent Workflow with Supervisor")
|
93 |
|
94 |
example_questions = [
|
|
|
89 |
python_repl_tool = PythonREPLTool()
|
90 |
|
91 |
# Streamlit UI
|
92 |
+
# Sidebar with References
|
93 |
+
st.sidebar.title("References")
|
94 |
+
st.sidebar.markdown("1. https://github.com/aritrasen87/LLM_RAG_Model_Deployment/blob/main/LangGraph_03_MultiAgent_With_Supervisor.ipynb")
|
95 |
st.title("Multi-Agent Workflow with Supervisor")
|
96 |
|
97 |
example_questions = [
|