Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -14,7 +14,9 @@ st.write("Get recommendations for optimizing your AWS architecture.")
|
|
14 |
|
15 |
# Session state to store messages (conversation history)
|
16 |
if "messages" not in st.session_state:
|
17 |
-
st.session_state.messages = [
|
|
|
|
|
18 |
|
19 |
# User input for AWS architecture description
|
20 |
architecture_input = st.text_area("Describe your AWS architecture:")
|
|
|
14 |
|
15 |
# Session state to store messages (conversation history)
|
16 |
if "messages" not in st.session_state:
|
17 |
+
st.session_state.messages = [
|
18 |
+
{"role": "system", "content": "You are an assistant that provides recommendations based on AWS Well-Architected Review best practices. Focus on the 5 pillars: Operational Excellence, Security, Reliability, Performance Efficiency, and Cost Optimization."}
|
19 |
+
]
|
20 |
|
21 |
# User input for AWS architecture description
|
22 |
architecture_input = st.text_area("Describe your AWS architecture:")
|