awacke1 commited on
Commit
0dee2f1
Β·
1 Parent(s): 09bd973

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +28 -0
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')