Update scira_server.py
Browse files- scira_server.py +12 -12
scira_server.py
CHANGED
|
@@ -137,38 +137,38 @@ SUPPORTED_MODELS = {
|
|
| 137 |
"scira-5-mini": {
|
| 138 |
"name": "Scira 5 Mini",
|
| 139 |
"description": "Fast and efficient model for general tasks",
|
| 140 |
-
"context_length":
|
| 141 |
-
"max_tokens":
|
| 142 |
},
|
| 143 |
"scira-default": {
|
| 144 |
"name": "Scira Default",
|
| 145 |
"description": "Default balanced model for most use cases",
|
| 146 |
-
"context_length":
|
| 147 |
-
"max_tokens":
|
| 148 |
},
|
| 149 |
"scira-x-fast-mini": {
|
| 150 |
"name": "Scira X-Fast Mini",
|
| 151 |
"description": "Ultra-fast mini model for quick responses",
|
| 152 |
-
"context_length":
|
| 153 |
-
"max_tokens":
|
| 154 |
},
|
| 155 |
"scira-x-fast": {
|
| 156 |
"name": "Scira X-Fast",
|
| 157 |
"description": "High-speed model optimized for performance",
|
| 158 |
-
"context_length":
|
| 159 |
-
"max_tokens":
|
| 160 |
},
|
| 161 |
"scira-5-nano": {
|
| 162 |
"name": "Scira 5 Nano",
|
| 163 |
"description": "Lightweight nano model for simple tasks",
|
| 164 |
-
"context_length":
|
| 165 |
-
"max_tokens":
|
| 166 |
},
|
| 167 |
"scira-google-lite": {
|
| 168 |
"name": "Scira Google Lite",
|
| 169 |
"description": "Google-powered lite model for search and reasoning",
|
| 170 |
-
"context_length":
|
| 171 |
-
"max_tokens":
|
| 172 |
}
|
| 173 |
}
|
| 174 |
|
|
|
|
| 137 |
"scira-5-mini": {
|
| 138 |
"name": "Scira 5 Mini",
|
| 139 |
"description": "Fast and efficient model for general tasks",
|
| 140 |
+
"context_length": 128000,
|
| 141 |
+
"max_tokens": 32768
|
| 142 |
},
|
| 143 |
"scira-default": {
|
| 144 |
"name": "Scira Default",
|
| 145 |
"description": "Default balanced model for most use cases",
|
| 146 |
+
"context_length": 200000,
|
| 147 |
+
"max_tokens": 65536
|
| 148 |
},
|
| 149 |
"scira-x-fast-mini": {
|
| 150 |
"name": "Scira X-Fast Mini",
|
| 151 |
"description": "Ultra-fast mini model for quick responses",
|
| 152 |
+
"context_length": 128000,
|
| 153 |
+
"max_tokens": 32768
|
| 154 |
},
|
| 155 |
"scira-x-fast": {
|
| 156 |
"name": "Scira X-Fast",
|
| 157 |
"description": "High-speed model optimized for performance",
|
| 158 |
+
"context_length": 200000,
|
| 159 |
+
"max_tokens": 65536
|
| 160 |
},
|
| 161 |
"scira-5-nano": {
|
| 162 |
"name": "Scira 5 Nano",
|
| 163 |
"description": "Lightweight nano model for simple tasks",
|
| 164 |
+
"context_length": 128000,
|
| 165 |
+
"max_tokens": 32768
|
| 166 |
},
|
| 167 |
"scira-google-lite": {
|
| 168 |
"name": "Scira Google Lite",
|
| 169 |
"description": "Google-powered lite model for search and reasoning",
|
| 170 |
+
"context_length": 200000,
|
| 171 |
+
"max_tokens": 65536
|
| 172 |
}
|
| 173 |
}
|
| 174 |
|