Update app.py
Browse files
app.py
CHANGED
@@ -127,7 +127,7 @@ def set_moa_agent(
|
|
127 |
|
128 |
st.set_page_config(
|
129 |
page_title="Mixture-Of-Agents Powered by Groq",
|
130 |
-
page_icon='static/favicon.ico',
|
131 |
menu_items={
|
132 |
'About': "## Groq Mixture-Of-Agents \n Powered by [Groq](https://groq.com)"
|
133 |
},
|
@@ -145,7 +145,7 @@ valid_model_names = [
|
|
145 |
'mixtral-8x7b-32768'
|
146 |
]
|
147 |
|
148 |
-
st.markdown("<a href='https://groq.com'><img src='static/banner.png' width='500'></a>", unsafe_allow_html=True)
|
149 |
st.write("---")
|
150 |
|
151 |
|
@@ -239,7 +239,7 @@ with st.sidebar:
|
|
239 |
# Main app layout
|
240 |
st.header("Mixture of Agents", anchor=False)
|
241 |
st.write("A demo of the Mixture of Agents architecture proposed by Together AI, Powered by Groq LLMs.")
|
242 |
-
st.image("
|
243 |
|
244 |
# Display current configuration
|
245 |
with st.expander("Current MOA Configuration", expanded=False):
|
|
|
127 |
|
128 |
st.set_page_config(
|
129 |
page_title="Mixture-Of-Agents Powered by Groq",
|
130 |
+
page_icon='/app/static/favicon.ico',
|
131 |
menu_items={
|
132 |
'About': "## Groq Mixture-Of-Agents \n Powered by [Groq](https://groq.com)"
|
133 |
},
|
|
|
145 |
'mixtral-8x7b-32768'
|
146 |
]
|
147 |
|
148 |
+
st.markdown("<a href='https://groq.com'><img src='/app/static/banner.png' width='500'></a>", unsafe_allow_html=True)
|
149 |
st.write("---")
|
150 |
|
151 |
|
|
|
239 |
# Main app layout
|
240 |
st.header("Mixture of Agents", anchor=False)
|
241 |
st.write("A demo of the Mixture of Agents architecture proposed by Together AI, Powered by Groq LLMs.")
|
242 |
+
st.image("/app/static/banner.png", caption="Mixture of Agents Workflow", width=1000)
|
243 |
|
244 |
# Display current configuration
|
245 |
with st.expander("Current MOA Configuration", expanded=False):
|