Vipul Swarup commited on
Commit
3b226aa
·
1 Parent(s): 2911f0c

Change the context and title

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -15,12 +15,12 @@ from langchain.schema import (
15
 
16
 
17
  #App UI starts here
18
- st.set_page_config(page_title="LangChain Demo", page_icon=":robot:")
19
- st.header("Chat GPT using Langchain")
20
 
21
  if "sessionMessages" not in st.session_state:
22
  st.session_state.sessionMessages = [
23
- SystemMessage(content = "You are a helpful assistant who only replies in the style of Imran Khan.")
24
  ]
25
 
26
 
 
15
 
16
 
17
  #App UI starts here
18
+ st.set_page_config(page_title="FRQ Generator", page_icon=":robot:")
19
+ st.header("FRQs using GPT-4")
20
 
21
  if "sessionMessages" not in st.session_state:
22
  st.session_state.sessionMessages = [
23
+ SystemMessage(content = "You are a bot that generates free response questions based on the input of a Common Core Standard, and area of interest.")
24
  ]
25
 
26