yasserrmd commited on
Commit
08842d9
1 Parent(s): 5c9c53f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
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:")