Spaces:
Sleeping
Sleeping
Ron Vallejo
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -20,18 +20,22 @@ model_links ={
|
|
20 |
}
|
21 |
|
22 |
#Pull info about the model to display
|
23 |
-
model_info ={
|
24 |
-
"Meta-Llama-3.1-8B":
|
25 |
-
|
26 |
-
\nIt was created by the [**Meta's AI**](https://llama.meta.com/) team and has over
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
|
|
|
|
|
|
|
|
35 |
}
|
36 |
|
37 |
|
|
|
20 |
}
|
21 |
|
22 |
#Pull info about the model to display
|
23 |
+
model_info = {
|
24 |
+
"Meta-Llama-3.1-8B": {
|
25 |
+
'description': """The Llama (3.1) model is a **Large Language Model (LLM)** that's able to have question and answer interactions.
|
26 |
+
\nIt was created by the [**Meta's AI**](https://llama.meta.com/) team and has over **8 billion parameters.**\n""",
|
27 |
+
'logo': 'llama_logo.gif'
|
28 |
+
},
|
29 |
+
"Mistral-7B-Instruct-v0.3": {
|
30 |
+
'description': """The Mistral-7B-Instruct-v0.3 Large Language Model (LLM) is an instruct fine-tuned version of the Mistral-7B-v0.3.
|
31 |
+
\nIt was created by the [**Mistral AI**](https://mistral.ai/news/announcing-mistral-7b/) team as has over **7 billion parameters.**\n""",
|
32 |
+
'logo': 'https://mistral.ai/images/logo_hubc88c4ece131b91c7cb753f40e9e1cc5_2589_256x0_resize_q97_h2_lanczos_3.webp'
|
33 |
+
},
|
34 |
+
"Gemma-7b-it": {
|
35 |
+
'description': """Gemma is a family of lightweight, state-of-the-art open models from Google, built from the same research and technology used to create the Gemini models.
|
36 |
+
\nThey are text-to-text, decoder-only large language models, available in English, with open weights, pre-trained variants, and instruction-tuned variants.\n""",
|
37 |
+
'logo': 'gemma.jpeg'
|
38 |
+
},
|
39 |
}
|
40 |
|
41 |
|