| import streamlit as st | |
| import generator | |
| from generator import * | |
| import string | |
| st.info("On a large paragraph, less questions will be produced, for increased accuracy.\n") | |
| text_ar = st.text_area("Enter text:") | |
| col1, col2, col3 = st.columns([2,1,2]) | |
| x = st.container() | |
| if(col2.button("Generate!")): | |
| text_ar = text_ar.replace("\n", " ") | |
| pairs = creator(text_ar) | |
| for pair in pairs: | |
| x.text(pair) | |
| st.balloons() | |