rbuell commited on
Commit
6a6cf3a
·
1 Parent(s): 77c484e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -7
app.py CHANGED
@@ -11,15 +11,16 @@ if api_key is None:
11
  openai.api_key = api_key
12
 
13
  # Add a sidebar with instructions
14
- st.sidebar.title("Instructions")
15
- st.sidebar.write("1. Copy & paste or type in student data from your data collection forms.")
16
- st.sidebar.write("2. Click the 'Analyze' button to generate a PLAAFP statement based on your inputted information.")
17
- st.sidebar.write("3. Take the analysis from IEP Assist.")
 
18
 
19
- st.sidebar.write("")
20
- st.sidebar.write("")
21
 
22
- st.sidebar.write("Note: This app uses OpenAI's GPT-3 API to generate the PLAAFP statement. Please enter data that is relevant and appropriate for generating the statement.")
23
 
24
  def write_iep():
25
  st.title("IEP Assist")
 
11
  openai.api_key = api_key
12
 
13
  # Add a sidebar with instructions
14
+ def write_sidebar():
15
+ st.sidebar.title("Instructions")
16
+ st.sidebar.write("1. Copy & paste or type in student data from your data collection forms.")
17
+ st.sidebar.write("2. Click the 'Analyze' button to generate a PLAAFP statement based on your inputted information.")
18
+ st.sidebar.write("3. Take the analysis from IEP Assist.")
19
 
20
+ st.sidebar.write("")
21
+ st.sidebar.write("")
22
 
23
+ st.sidebar.write("Note: This app uses OpenAI's GPT-3 API to generate the PLAAFP statement. Please enter data that is relevant and appropriate for generating the statement.")
24
 
25
  def write_iep():
26
  st.title("IEP Assist")