Spaces:
Runtime error
Runtime error
File size: 533 Bytes
68df196 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
import streamlit as st
from langchain import HuggingFaceHub
def get_answer(question,model):
return model(question)
def get_model():
model=HuggingFaceHub("google/flan-t5-small")
return model
st.set_page_config(
page_title="Simple Q&A App",
page_icon=":robot:"
)
st.header("Do It!!!!. Ask the Question.....")
question=st.text_input("Question:")
model=get_model()
submit=st.button("Submit")
if submit:
with st.spinner("In progress..."):
response=model(question)
st.text_area(f"{response}") |