Update app.py
Browse files
app.py
CHANGED
@@ -23,7 +23,7 @@ ai_message_format = lambda message, references: (
|
|
23 |
f"{message}\n\n---\n\n{references}" if references != "" else message
|
24 |
)
|
25 |
welcome_message = """
|
26 |
-
Hi I'm Agent
|
27 |
|
28 |
Here's a quick guide to getting started with me:
|
29 |
|
@@ -135,7 +135,7 @@ def query_llm_wrapper(inputs):
|
|
135 |
|
136 |
|
137 |
def boot(command_center):
|
138 |
-
st.write("# Agent
|
139 |
if "costing" not in st.session_state:
|
140 |
st.session_state.costing = []
|
141 |
if "messages" not in st.session_state:
|
@@ -173,4 +173,4 @@ if __name__ == "__main__":
|
|
173 |
default_function=query_llm_wrapper,
|
174 |
all_commands=all_commands,
|
175 |
)
|
176 |
-
boot(command_center)
|
|
|
23 |
f"{message}\n\n---\n\n{references}" if references != "" else message
|
24 |
)
|
25 |
welcome_message = """
|
26 |
+
Hi I'm Agent Zeta, your AI assistant, dedicated to making your journey through machine learning research papers as insightful and interactive as possible. Whether you're diving into the latest studies or brushing up on foundational papers, I'm here to help navigate, discuss, and analyze content with you.
|
27 |
|
28 |
Here's a quick guide to getting started with me:
|
29 |
|
|
|
135 |
|
136 |
|
137 |
def boot(command_center):
|
138 |
+
st.write("# Agent Zeta")
|
139 |
if "costing" not in st.session_state:
|
140 |
st.session_state.costing = []
|
141 |
if "messages" not in st.session_state:
|
|
|
173 |
default_function=query_llm_wrapper,
|
174 |
all_commands=all_commands,
|
175 |
)
|
176 |
+
boot(command_center)
|