Spaces:
Sleeping
Sleeping
File size: 653 Bytes
6ddeb4a |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
import streamlit as st
from langchain.llms import HuggingFaceHub
st.set_page_config(page_title="Educational Chatbot")
st.title("π Educational Chatbot")
user_input = st.text_input("Ask me anything:")
if "history" not in st.session_state:
st.session_state.history = []
if user_input:
llm = HuggingFaceHub(repo_id="tiiuae/falcon-7b-instruct", model_kwargs={"temperature": 0.5, "max_new_tokens": 100})
response = llm(user_input)
st.session_state.history.append(("You", user_input))
st.session_state.history.append(("Bot", response))
for sender, msg in reversed(st.session_state.history):
st.markdown(f"**{sender}:** {msg}")
|