DrishtiSharma commited on
Commit
f0b58d7
·
verified ·
1 Parent(s): 4257887

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py CHANGED
@@ -47,6 +47,16 @@ with st.sidebar:
47
 
48
  openai_key = st.secrets.get("OPENAI_API_KEY", "")
49
 
 
 
 
 
 
 
 
 
 
 
50
  # Initialize agents function
51
  def initialize_agents():
52
  if not openai_key:
@@ -132,3 +142,5 @@ st.markdown(
132
  """,
133
  unsafe_allow_html=True,
134
  )
 
 
 
47
 
48
  openai_key = st.secrets.get("OPENAI_API_KEY", "")
49
 
50
+ # Divider for separation
51
+ st.divider()
52
+
53
+ # Reference section
54
+ st.subheader("References")
55
+ st.markdown(
56
+ '[Multi-Agent System with CrewAI and LangChain](https://discuss.streamlit.io/t/new-project-i-have-build-a-multi-agent-system-with-crewai-and-langchain/84002)',
57
+ unsafe_allow_html=True
58
+ )
59
+
60
  # Initialize agents function
61
  def initialize_agents():
62
  if not openai_key:
 
142
  """,
143
  unsafe_allow_html=True,
144
  )
145
+
146
+