yasserrmd commited on
Commit
b973eef
·
verified ·
1 Parent(s): 08842d9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -12,7 +12,10 @@ client = OpenAI(
12
  st.title("AWS Well-Architected Review")
13
  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
  {"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."}
 
12
  st.title("AWS Well-Architected Review")
13
  st.write("Get recommendations for optimizing your AWS architecture.")
14
 
15
+
16
+ if "nvidia_model" not in st.session_state:
17
+ st.session_state["nvidia_model"] = "nvidia/llama-3.1-nemotron-70b-instruct"
18
+
19
  if "messages" not in st.session_state:
20
  st.session_state.messages = [
21
  {"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."}