Spaces:
Sleeping
Sleeping
File size: 8,500 Bytes
3e72a37 48798a9 3e72a37 e2a384e 3e72a37 1b614f5 3e72a37 1b614f5 3e72a37 1b614f5 3e72a37 1eb9410 3e72a37 7c90524 3e72a37 11d2fa9 3e72a37 |
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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 |
#To access my personal API key from operation system environment variables.
#Inside the HuggingFace Space, this will be substituted by HF's "Secret" variable option.
#Feel free to use the tool as is (via my personal API key) for the time of my evaluation.
import os
import time
#Loading Streamlit for GUI
import streamlit as st
#Session variables - saved locally to not run the whole script everytime a user input is entered
if True:
if "standard_set" not in st.session_state:
st.session_state.standard_set = False
if "topic_set" not in st.session_state:
st.session_state.topic_set = False
if "content_set" not in st.session_state:
st.session_state.content_set = False
if "answer_set" not in st.session_state:
st.session_state.answer_set = False
if "evaluated" not in st.session_state:
st.session_state.evaluated = False
if "chosen_standard" not in st.session_state:
st.session_state.chosen_standard = ""
if "standard_definition" not in st.session_state:
st.session_state.standard_definition = ""
if "question_or_task" not in st.session_state:
st.session_state.question_or_task = ""
if "chosen_topic" not in st.session_state:
st.session_state.chosen_topic = ""
if "wikitext" not in st.session_state:
st.session_state.wikitext = ""
if "context" not in st.session_state:
st.session_state.context = ""
if "frq" not in st.session_state:
st.session_state.frq = ""
if "chosen_answer" not in st.session_state:
st.session_state.chosen_answer = ""
answer_logged=False
#Importing variables, objects, templates from "common"
from common import llm, wikipedia #language models
from common import standard_definition_dict, question_or_task_dict, rubric_dict #dictionaries
from common import prompt_context, prompt_frq, prompt_evaluation #prompt templates
from common import context_chain, frq_chain, evaluation_chain #prompting chains
from common import trim_text, plagiate #custom functions
#Setting up streamlit UI, intro
st.set_page_config(page_title="FQR Generator", page_icon="🎓",
menu_items={"About":"Version 1.0 \n\n Not for commercial use.",
"Get help":"https://www.linkedin.com/in/alex-c-fischer"})
st.title("🎓Common Core FRQ Generator")
with st.sidebar:
st.title("Menu")
st.link_button(label="Admin", url="https://huggingface.co/spaces/AlexCasF/QCTestRun")
st.link_button(label="Contact", url="https://www.linkedin.com/in/alex-c-fischer/")
st.write("This little tool automatically generates free-response questions (FQRs) \
to evaluate a 4th grade student's knowledge of a given Common Core Writing Standard \
by reading and writing on a topic of their own choice. \
After the FRQ is answered, an evaluation will be provided.")
st.write("(The language processing is done by an AI model, \
yet the facts are sourced from the topic's wikipedia page, to ensure hallucination-free and up-to-date content.)" )
#FRQ based on standard, student input and prompting engine
with st.form("standard_form"):
st.session_state.chosen_standard = st.selectbox(
"Choose 4th Grade Common Core Writing standard:",
("CCSS.ELA-LITERACY.W.4.1","CCSS.ELA-LITERACY.W.4.2","CCSS.ELA-LITERACY.W.4.3","CCSS.ELA-LITERACY.W.4.4",
"CCSS.ELA-LITERACY.W.4.5","CCSS.ELA-LITERACY.W.4.6","CCSS.ELA-LITERACY.W.4.7","CCSS.ELA-LITERACY.W.4.8",
"CCSS.ELA-LITERACY.W.4.9","CCSS.ELA-LITERACY.W.4.10")
)
st.session_state.standard_definition = standard_definition_dict[st.session_state.chosen_standard]
st.session_state.question_or_task = question_or_task_dict[st.session_state.chosen_standard]
subm_standard =st.form_submit_button("Set")
if subm_standard:
st.session_state.standard_set=True
st.write("We will test your ability to:")
st.write(f"📜{st.session_state.standard_definition}.")
if st.session_state.standard_set:
with st.form("topic_form"):
st.session_state.chosen_topic = st.text_input("Type in a topic of your interest, then click 'Submit'.")
subm_topic = st.form_submit_button("Submit")
if st.session_state.standard_set and subm_topic:
st.empty()
with st.spinner('🤖Browsing wikipedia...'):
st.empty()
if st.session_state.wikitext=="":
wikitext = trim_text(wikipedia.run(st.session_state.chosen_topic))
if wikitext=="No good Wikipedia Search Result was found":
st.write(f"🤖Sorry - I can't find anything in wikipedia on '{st.session_state.chosen_topic}'. \
I would love to make something up, but I can't do that in here. Please try something else.")
got_it = st.button("Got it")
st.session_state.topic_set=False
st.stop()
else:
st.session_state.wikitext = wikitext
st.session_state.topic_set=True
st.success("Article found")
st.empty()
with st.spinner('🤖So interesting! Now please give me a few seconds to create the context and FRQ.'):
st.empty()
if st.session_state.context=="":
st.session_state.context = context_chain.run(
chosen_topic=st.session_state.chosen_topic,
wikitext=st.session_state.wikitext
)
if st.session_state.frq=="":
st.session_state.frq = frq_chain.run(
context=st.session_state.context,
standard_definition=st.session_state.standard_definition,
question_or_task=st.session_state.question_or_task
)
st.success("Content and FRQ created")
st.empty()
if st.session_state.topic_set:
with st.form("content_form"):
st.write("🤖Here we go - that was quick, wasn't it?")
st.subheader("Context required to answer the FRQ:")
st.write(st.session_state.context)
st.subheader("Free Response Question:")
st.write(st.session_state.frq)
st.write("🤖Read all of the above? Great! Continue with the assignment at your own pace.")
next = st.form_submit_button("Continue")
if next:
st.session_state.content_set=True
if st.session_state.content_set:
with st.form("answer_form"):
st.session_state.chosen_answer = st.text_area("Type in your answer, then click 'Submit'. Please do not simply copy/paste from above.")
subm_answer = st.form_submit_button("Submit")
if st.session_state.content_set and subm_answer:
with st.spinner('🤖Logging...'):
pass
if len(st.session_state.chosen_answer) and plagiate(context=st.session_state.context, answer=st.session_state.chosen_answer):
st.session_state.content_set=False
st.write("🤖Using Crtl+C/P defeats the purpose of this test, young friend.")
time.sleep(0.1)
st.write("🤖Those are the rules. Please overwrite above answer in your own words - \
trust me, this is a great way to learn interesting new things.")
got_it = st.button("Got it")
st.stop()
else:
st.subheader("Answer submitted")
answer_logged=True
if answer_logged:
st.session_state.answer_set=True
if st.session_state.answer_set:
with st.form("evaluation_form"):
st.subheader("Evaluation")
with st.spinner("🤖Let me see how you did today."):
evaluation = evaluation_chain.run(
context=st.session_state.context,
rubric=rubric_dict[st.session_state.chosen_standard],
frq=st.session_state.frq,
chosen_answer=st.session_state.chosen_answer)
st.write(evaluation)
def clear_form():
st.session_state.answer_set=False
next
st.form_submit_button(label="Reformulate answer", on_click=clear_form)
st.empty()
with st.expander("Show Evaluation & Feedback Rubric"):
st.write("✔️ AI evaluated the student's ability to:")
st.text(rubric_dict[st.session_state.chosen_standard])
rerun = st.button("Rerun")
if rerun:
for key in st.session_state.keys():
del st.session_state[key]
st.rerun()
st.divider()
st.write("Admin area: clicking below will open a new app")
st.link_button(label="QC Test run - let GPT-4 take this test", url="https://huggingface.co/spaces/AlexCasF/QCTestRun")
|