ganeshk commited on
Commit
968444f
·
verified ·
1 Parent(s): 8a98183

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -2
app.py CHANGED
@@ -1,4 +1,6 @@
1
  import streamlit as st
 
 
2
 
3
  st.title('Chat LLMs Interfaces !')
4
 
@@ -10,7 +12,9 @@ st.title('Select Interface')
10
 
11
 
12
  if st.button('Open Mistral Chat Interface'):
13
- st.markdown(mistral_url, unsafe_allow_html=True)
 
14
  elif st.button('Open Llama2 Chat Interface'):
15
- st.markdown(llama2_url, unsafe_allow_html=True)
 
16
 
 
1
  import streamlit as st
2
+ import webbrowser
3
+
4
 
5
  st.title('Chat LLMs Interfaces !')
6
 
 
12
 
13
 
14
  if st.button('Open Mistral Chat Interface'):
15
+ webbrowser.open(mistral_url)
16
+ # st.markdown(mistral_url, unsafe_allow_html=True)
17
  elif st.button('Open Llama2 Chat Interface'):
18
+ webbrowser.open(llama2_url)
19
+ # st.markdown(llama2_url, unsafe_allow_html=True)
20