mistral-7b / app.py
promptora11's picture
Create app.py
26b9388 verified
raw
history blame contribute delete
No virus
171 Bytes
import streamlit as st
from transformers import pipeline
pipe=pipeline("text-generation")
text= st.text_area("Enter the query: ")
if text:
out=pipe(text)
st.json(out)