Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -600,29 +600,37 @@ def add_multi_system_agent_topics():
|
|
600 |
# Add buttons to columns
|
601 |
if col1.button("Reinforcement Learning ๐ฎ"):
|
602 |
st.write(descriptions["Reinforcement Learning ๐ฎ"])
|
|
|
603 |
|
604 |
if col2.button("Natural Language Processing ๐ฃ๏ธ"):
|
605 |
st.write(descriptions["Natural Language Processing ๐ฃ๏ธ"])
|
|
|
606 |
|
607 |
if col3.button("Multi-Agent Systems ๐ค"):
|
608 |
st.write(descriptions["Multi-Agent Systems ๐ค"])
|
|
|
609 |
|
610 |
if col4.button("Conversational AI ๐จ๏ธ"):
|
611 |
st.write(descriptions["Conversational AI ๐จ๏ธ"])
|
|
|
612 |
|
613 |
col5, col6, col7, col8 = st.columns([1, 1, 1, 1], gap="small")
|
614 |
|
615 |
if col5.button("Distributed AI Systems ๐"):
|
616 |
st.write(descriptions["Distributed AI Systems ๐"])
|
|
|
617 |
|
618 |
if col6.button("AI Ethics and Bias ๐ค"):
|
619 |
st.write(descriptions["AI Ethics and Bias ๐ค"])
|
|
|
620 |
|
621 |
if col7.button("AI in Healthcare ๐ฅ"):
|
622 |
st.write(descriptions["AI in Healthcare ๐ฅ"])
|
|
|
623 |
|
624 |
if col8.button("AI in Autonomous Vehicles ๐"):
|
625 |
st.write(descriptions["AI in Autonomous Vehicles ๐"])
|
|
|
626 |
|
627 |
|
628 |
# 17. Main
|
|
|
600 |
# Add buttons to columns
|
601 |
if col1.button("Reinforcement Learning ๐ฎ"):
|
602 |
st.write(descriptions["Reinforcement Learning ๐ฎ"])
|
603 |
+
StreamLLMChatResponse(descriptions["Reinforcement Learning ๐ฎ"])
|
604 |
|
605 |
if col2.button("Natural Language Processing ๐ฃ๏ธ"):
|
606 |
st.write(descriptions["Natural Language Processing ๐ฃ๏ธ"])
|
607 |
+
StreamLLMChatResponse(descriptions["Natural Language Processing ๐ฃ๏ธ"])
|
608 |
|
609 |
if col3.button("Multi-Agent Systems ๐ค"):
|
610 |
st.write(descriptions["Multi-Agent Systems ๐ค"])
|
611 |
+
StreamLLMChatResponse(descriptions["Multi-Agent Systems ๐ค"])
|
612 |
|
613 |
if col4.button("Conversational AI ๐จ๏ธ"):
|
614 |
st.write(descriptions["Conversational AI ๐จ๏ธ"])
|
615 |
+
StreamLLMChatResponse(descriptions["Conversational AI ๐จ๏ธ"])
|
616 |
|
617 |
col5, col6, col7, col8 = st.columns([1, 1, 1, 1], gap="small")
|
618 |
|
619 |
if col5.button("Distributed AI Systems ๐"):
|
620 |
st.write(descriptions["Distributed AI Systems ๐"])
|
621 |
+
StreamLLMChatResponse(descriptions["Distributed AI Systems ๐"])
|
622 |
|
623 |
if col6.button("AI Ethics and Bias ๐ค"):
|
624 |
st.write(descriptions["AI Ethics and Bias ๐ค"])
|
625 |
+
StreamLLMChatResponse(descriptions["AI Ethics and Bias ๐ค"])
|
626 |
|
627 |
if col7.button("AI in Healthcare ๐ฅ"):
|
628 |
st.write(descriptions["AI in Healthcare ๐ฅ"])
|
629 |
+
StreamLLMChatResponse(descriptions["AI in Healthcare ๐ฅ"])
|
630 |
|
631 |
if col8.button("AI in Autonomous Vehicles ๐"):
|
632 |
st.write(descriptions["AI in Autonomous Vehicles ๐"])
|
633 |
+
StreamLLMChatResponse(descriptions["AI in Autonomous Vehicles ๐"])
|
634 |
|
635 |
|
636 |
# 17. Main
|