Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -13,6 +13,16 @@ if not os.path.exists(AI_PFP) or not os.path.exists(USER_PFP):
|
|
| 13 |
st.stop()
|
| 14 |
|
| 15 |
model_info = {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 16 |
"command-a-03-2025": {
|
| 17 |
"description": "Command A is our most performant model to date, excelling at tool use, agents, retrieval augmented generation (RAG), and multilingual use cases. Command A has a context length of 256K, only requires two GPUs to run, and has 150% higher throughput compared to Command R+ 08-2024.",
|
| 18 |
"context": "256K",
|
|
@@ -68,16 +78,6 @@ model_info = {
|
|
| 68 |
"context": "128K",
|
| 69 |
"output": "4K"
|
| 70 |
},
|
| 71 |
-
"c4ai-aya-expanse-8b": {
|
| 72 |
-
"description": "Aya Expanse is a highly performant 8B multilingual model, designed to rival monolingual performance through innovations in instruction tuning with data arbitrage, preference training, and model merging. Serves 23 languages.",
|
| 73 |
-
"context": "4K",
|
| 74 |
-
"output": "4K"
|
| 75 |
-
},
|
| 76 |
-
"c4ai-aya-expanse-32b": {
|
| 77 |
-
"description": "Aya Expanse is a highly performant 32B multilingual model, designed to rival monolingual performance through innovations in instruction tuning with data arbitrage, preference training, and model merging. Serves 23 languages.",
|
| 78 |
-
"context": "128K",
|
| 79 |
-
"output": "4K"
|
| 80 |
-
},
|
| 81 |
}
|
| 82 |
|
| 83 |
with st.sidebar:
|
|
|
|
| 13 |
st.stop()
|
| 14 |
|
| 15 |
model_info = {
|
| 16 |
+
"c4ai-aya-expanse-8b": {
|
| 17 |
+
"description": "Aya Expanse is a highly performant 8B multilingual model, designed to rival monolingual performance through innovations in instruction tuning with data arbitrage, preference training, and model merging. Serves 23 languages.",
|
| 18 |
+
"context": "4K",
|
| 19 |
+
"output": "4K"
|
| 20 |
+
},
|
| 21 |
+
"c4ai-aya-expanse-32b": {
|
| 22 |
+
"description": "Aya Expanse is a highly performant 32B multilingual model, designed to rival monolingual performance through innovations in instruction tuning with data arbitrage, preference training, and model merging. Serves 23 languages.",
|
| 23 |
+
"context": "128K",
|
| 24 |
+
"output": "4K"
|
| 25 |
+
},
|
| 26 |
"command-a-03-2025": {
|
| 27 |
"description": "Command A is our most performant model to date, excelling at tool use, agents, retrieval augmented generation (RAG), and multilingual use cases. Command A has a context length of 256K, only requires two GPUs to run, and has 150% higher throughput compared to Command R+ 08-2024.",
|
| 28 |
"context": "256K",
|
|
|
|
| 78 |
"context": "128K",
|
| 79 |
"output": "4K"
|
| 80 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 81 |
}
|
| 82 |
|
| 83 |
with st.sidebar:
|