Update app.py
Browse files
app.py
CHANGED
@@ -174,7 +174,7 @@ tokenizer = GPT2Tokenizer.from_pretrained(model_name)
|
|
174 |
gpt_pipeline = pipeline("text-generation", model=model, tokenizer=tokenizer)
|
175 |
|
176 |
# Streamlit UI
|
177 |
-
st.markdown("<h3 style='text-align: center; font-size: 20px; background-color: white; color: black;'>Chat
|
178 |
|
179 |
if 'conversation' not in st.session_state:
|
180 |
st.session_state.conversation = ""
|
|
|
174 |
gpt_pipeline = pipeline("text-generation", model=model, tokenizer=tokenizer)
|
175 |
|
176 |
# Streamlit UI
|
177 |
+
st.markdown("<h3 style='text-align: center; font-size: 20px; background-color: white; color: black;'>Chat - gpt2-medium</h3>", unsafe_allow_html=True)
|
178 |
|
179 |
if 'conversation' not in st.session_state:
|
180 |
st.session_state.conversation = ""
|