ngebodh commited on
Commit
2428902
·
verified ·
1 Parent(s): f6ca864

Added contact info

Browse files
Files changed (1) hide show
  1. app.py +15 -0
app.py CHANGED
@@ -349,8 +349,23 @@ temp_values = st.sidebar.slider('Select a temperature value', 0.0, 1.0, (0.5))
349
  #Add reset button to clear conversation
350
  st.sidebar.button('Reset Chat', on_click=reset_conversation, type="primary") #Reset button
351
 
 
 
 
 
 
 
 
 
 
 
 
 
352
  st.sidebar.divider() # Add a visual separator
353
 
 
 
 
354
  # Create model description
355
  st.sidebar.subheader(f"About {selected_model}")
356
  st.sidebar.write(f"You're now chatting with **{selected_model}**")
 
349
  #Add reset button to clear conversation
350
  st.sidebar.button('Reset Chat', on_click=reset_conversation, type="primary") #Reset button
351
 
352
+ # Contact info
353
+ # Contact info
354
+ st.sidebar.markdown(
355
+ "<span style='font-size:0.85em; color:#bbbbbb; font-style:italic;'>"
356
+ "Created by "
357
+ "<a href='https://ngebodh.github.io/' target='_blank' style='color:#bbbbbb; text-decoration:none;'>"
358
+ "Nigel Gebodh</a></span>",
359
+ unsafe_allow_html=True
360
+ )
361
+
362
+
363
+
364
  st.sidebar.divider() # Add a visual separator
365
 
366
+
367
+
368
+
369
  # Create model description
370
  st.sidebar.subheader(f"About {selected_model}")
371
  st.sidebar.write(f"You're now chatting with **{selected_model}**")