Spaces:
Runtime error
Runtime error
Vipul Swarup commited on
Commit ·
3b226aa
1
Parent(s): 2911f0c
Change the context and title
Browse files
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="
|
| 19 |
-
st.header("
|
| 20 |
|
| 21 |
if "sessionMessages" not in st.session_state:
|
| 22 |
st.session_state.sessionMessages = [
|
| 23 |
-
SystemMessage(content = "You are a
|
| 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 |
|