Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -68,6 +68,34 @@ title_chatdev = "ChatDev"
|
|
68 |
emoji_summary_chatdev = "π¬π» Comm. Agents"
|
69 |
link_button_with_emoji(url_chatdev, title_chatdev, emoji_summary_chatdev)
|
70 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
|
72 |
def generate_filename_old(prompt, file_type):
|
73 |
central = pytz.timezone('US/Central')
|
|
|
68 |
emoji_summary_chatdev = "π¬π» Comm. Agents"
|
69 |
link_button_with_emoji(url_chatdev, title_chatdev, emoji_summary_chatdev)
|
70 |
|
71 |
+
# 2. Paper Interface with LLM
|
72 |
+
def add_paper_buttons():
|
73 |
+
# Expander for MemGPT
|
74 |
+
with st.expander("MemGPT π§ πΎ", expanded=False):
|
75 |
+
if st.button("Discuss MemGPT Features"):
|
76 |
+
outline_memgpt = "Memory Hierarchy, Context Paging, Self-directed Memory Updates, Memory Editing, Memory Retrieval, Semantic & Episodic Memory, Emotional Contextual Understanding"
|
77 |
+
chat_with_model("Discuss the key features of MemGPT: " + outline_memgpt, "MemGPT")
|
78 |
+
|
79 |
+
# Expander for AutoGen
|
80 |
+
with st.expander("AutoGen π€π", expanded=False):
|
81 |
+
if st.button("Explore AutoGen Multi-Agent LLM"):
|
82 |
+
outline_autogen = "Cooperative Conversations, Combining Capabilities, Complex Task Solving, Divergent Thinking, Factuality, Highly Capable Agents, Generic Abstraction"
|
83 |
+
chat_with_model("Explore the key features of AutoGen: " + outline_autogen, "AutoGen")
|
84 |
+
|
85 |
+
# Expander for Whisper
|
86 |
+
with st.expander("Whisper ππ§βπ", expanded=False):
|
87 |
+
if st.button("Learn About Whisper STT"):
|
88 |
+
outline_whisper = "Scaling, Deep Learning Approaches, Weak Supervision, Zero-shot Transfer Learning, Accuracy & Robustness, Pre-training Techniques, Broad Environments"
|
89 |
+
chat_with_model("Learn about the key features of Whisper: " + outline_whisper, "Whisper")
|
90 |
+
|
91 |
+
# Expander for ChatDev
|
92 |
+
with st.expander("ChatDev π¬π»", expanded=False):
|
93 |
+
if st.button("Deep Dive into ChatDev"):
|
94 |
+
outline_chatdev = "Effective Communication, Comprehensive Software Solutions, Diverse Social Identities, Tailored Codes, Environment Dependencies, User Manuals"
|
95 |
+
chat_with_model("Deep dive into the features of ChatDev: " + outline_chatdev, "ChatDev")
|
96 |
+
|
97 |
+
|
98 |
+
add_paper_buttons()
|
99 |
|
100 |
def generate_filename_old(prompt, file_type):
|
101 |
central = pytz.timezone('US/Central')
|