Update app.py
Browse files
app.py
CHANGED
@@ -8,6 +8,7 @@ REPETITION_PENALTY = 1.05
|
|
8 |
MAX_NEW_TOKENS = 500
|
9 |
MODEL_NAME = "ericzzz/falcon-rw-1b-chat"
|
10 |
|
|
|
11 |
|
12 |
if "chat_history" not in st.session_state:
|
13 |
st.session_state.chat_history = []
|
|
|
8 |
MAX_NEW_TOKENS = 500
|
9 |
MODEL_NAME = "ericzzz/falcon-rw-1b-chat"
|
10 |
|
11 |
+
st.write("**💬Tiny Chat with [Falcon-RW-1B-Chat](https://huggingface.co/ericzzz/falcon-rw-1b-chat)**" )
|
12 |
|
13 |
if "chat_history" not in st.session_state:
|
14 |
st.session_state.chat_history = []
|