Added model descriptions
Browse files
app.py
CHANGED
@@ -30,6 +30,18 @@ model_links ={
|
|
30 |
|
31 |
}
|
32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
|
34 |
|
35 |
# Define the available models
|
@@ -39,6 +51,10 @@ models =[key for key in model_links.keys()]
|
|
39 |
# Create the sidebar with the dropdown for model selection
|
40 |
selected_model = st.sidebar.selectbox("Select Model", models)
|
41 |
|
|
|
|
|
|
|
|
|
42 |
|
43 |
|
44 |
#Pull in the model we want to use
|
|
|
30 |
|
31 |
}
|
32 |
|
33 |
+
#Pull info about the model to display
|
34 |
+
model_info ={
|
35 |
+
"Mistral":
|
36 |
+
{'description':"""The Mistral model is a **Large Language Model (LLM)** that's able to have question and answer interactions.\n \
|
37 |
+
\nIt was created by the [**Mistral AI**](https://mistral.ai/news/announcing-mistral-7b/) team as has over **7 billion parameters.** \n""",
|
38 |
+
'logo':'https://mistral.ai/images/logo_hubc88c4ece131b91c7cb753f40e9e1cc5_2589_256x0_resize_q97_h2_lanczos_3.webp'},
|
39 |
+
"Gemma":
|
40 |
+
{'description':"""The Gemma model is a **Large Language Model (LLM)** that's able to have question and answer interactions.\n \
|
41 |
+
\nIt was created by the [**Google's AI Team**](https://blog.google/technology/developers/gemma-open-models/) team as has over **7 billion parameters.** \n""",
|
42 |
+
'logo':'https://pbs.twimg.com/media/GG3sJg7X0AEaNIq.jpg'},
|
43 |
+
|
44 |
+
}
|
45 |
|
46 |
|
47 |
# Define the available models
|
|
|
51 |
# Create the sidebar with the dropdown for model selection
|
52 |
selected_model = st.sidebar.selectbox("Select Model", models)
|
53 |
|
54 |
+
# Create model description
|
55 |
+
st.sidebar.write(f"You're now chatting with **{selected_model}**")
|
56 |
+
st.sidebar.markdown(model_info[selected_model]['description'])
|
57 |
+
st.sidebar.image(model_info[selected_model]['logo'])
|
58 |
|
59 |
|
60 |
#Pull in the model we want to use
|