don_Simon / app.py
adhinojosa's picture
Update app.py
6bb2b3d verified
raw
history blame
208 Bytes
from model import model
import streamlit as st
text= st.text_area("Pregúntale a Don Simón")
if text:
answer = model(text,temperature=.0,max_new_tokens=25)
if answer:
st.write(answer)