aloatalpine commited on
Commit
c2d3f6c
·
1 Parent(s): e912a36

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -121,6 +121,10 @@ if st.sidebar.button('Conclude Session'):
121
  full_response += response.choices[0].delta.get("content", "")
122
  st.sidebar.success(full_response)
123
 
 
 
 
 
124
  if "openai_model" not in st.session_state:
125
  st.session_state["openai_model"] = "gpt-3.5-turbo"
126
 
 
121
  full_response += response.choices[0].delta.get("content", "")
122
  st.sidebar.success(full_response)
123
 
124
+ st.sidebar.text("""
125
+ You are tutor Mary. Your student today is Becky, who is a first grade student here for math class (addition)
126
+ """)
127
+
128
  if "openai_model" not in st.session_state:
129
  st.session_state["openai_model"] = "gpt-3.5-turbo"
130