richardorama commited on
Commit
49fe952
·
verified ·
1 Parent(s): 337b608

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 with GPT</h3>", unsafe_allow_html=True)
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 = ""