qa-generator / app.py
vinayakdev's picture
Update app.py
35b864c
raw
history blame
403 Bytes
import streamlit as st
import generator
from generator import *
col1, col2, col3 = st.columns(3)
i = 0
text_ar = st.text_area("Enter text:")
col1, col2, col3 = st.beta_columns([2,1,2])
if(col2.button("Generate!")):
text_ar = text_ar.replace("\n"," ")
pairs = creator(text_ar)
for pair in pairs:
st.text(pair)
col2.success("Generated!")
with col3:
st.write(' ')