Update app.py
Browse files
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="
|
16 |
-
st.title("
|
17 |
-
st.markdown(f"*This
|
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:
|