File size: 1,898 Bytes
3db8a14
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import openai
import streamlit as st
import config

st.markdown(
    """
    <style>
    /* Add your CSS code here */
    </style>
    """,
    unsafe_allow_html=True,
)
# Set OpenAI API key
api_key = config

def write_iep():
    st.title("IEP Assist")

def write_sidebar():
    st.sidebar.title("What is IEP Assist?")
    st.sidebar.info(
        "IEP Assist generates responses using OpenAI's language generation technology. The technology uses machine learning algorithms trained on large amounts of text data to generate new text based on a given prompt. In the case of IEP Assist, the prompt consists of the student data entered by the user (academic, functional, behavioral information), and the technology generates a Present Levels of Academic Achievement and Functional Performance (PLAAFP) for the student based on the data.")
        
    # Add a text area
    user_query = st.text_area("Enter student data (ie. academic, functional, behavioral). To ensure that the generated PLAAFP statement accurately reflects the student's needs and abilities, it is important to provide as much relevant information as possible:", height=250)

    # Add a submit button
    if st.button("Analyze"):
        # Use OpenAI to generate IEP based on student
        response = openai.Completion.create(
            engine="text-davinci-003",
            prompt= "You are a special education case manager, the following data has been collected. Analyze and summarize this data into a cohesive PLAAFP statement, make it clear and concise and provide areas of strength and areas of need and strageties to improve areas of need: \n" + user_query,
            max_tokens=2048,
            n=1,
            stop=None,
            temperature=0.8
        )
        iep = response["choices"][0]["text"]
        st.write(iep)

def main():
    write_iep()
    write_sidebar()

if __name__ == "__main__":
    main()