Update app.py
Browse files
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 |
-
|
|
|
|
| 14 |
elif st.button('Open Llama2 Chat Interface'):
|
| 15 |
-
|
|
|
|
| 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 |
|