mcq_generation / app.py
Nikhitha2310's picture
Create app.py
fae3755 verified
raw
history blame
198 Bytes
from transformers import pipeline
import streamlit as st
input=st.text_input("Enter the text")
pipe = pipeline("text-generation", model="ardneebwar/mistral_7b_mcq_generator")
st.write(pipe(input))