schuler commited on
Commit
efa7713
·
verified ·
1 Parent(s): 3b00c09

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -12,9 +12,9 @@ model = AutoModelForCausalLM.from_pretrained(REPO_NAME, trust_remote_code=True)
12
  generator = pipeline("text-generation", model=model, tokenizer=tokenizer)
13
 
14
  # Configure the Streamlit app
15
- st.set_page_config(page_title="HuggingFace ChatBot", page_icon="🤗")
16
- st.title("Personal HuggingFace ChatBot")
17
- st.markdown(f"*This is a simple chatbot that uses the HuggingFace transformers library to generate responses to your text input. It uses the {REPO_NAME} model.*")
18
 
19
  # Initialize session state for avatars
20
  if "avatars" not in st.session_state:
 
12
  generator = pipeline("text-generation", model=model, tokenizer=tokenizer)
13
 
14
  # Configure the Streamlit app
15
+ st.set_page_config(page_title="Experimental Model - Under Construction", page_icon="🤗")
16
+ st.title("Experimental Model - Under Construction")
17
+ st.markdown(f"*This chat uses the {REPO_NAME} model. Feel free to ask questions such as 'What is biology?' or 'What is the human body?'*")
18
 
19
  # Initialize session state for avatars
20
  if "avatars" not in st.session_state: