Samfy001 commited on
Commit
2c289eb
·
verified ·
1 Parent(s): c7af01c

Update scira_server.py

Browse files
Files changed (1) hide show
  1. 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": 8192,
141
- "max_tokens": 4096
142
  },
143
  "scira-default": {
144
  "name": "Scira Default",
145
  "description": "Default balanced model for most use cases",
146
- "context_length": 16384,
147
- "max_tokens": 8192
148
  },
149
  "scira-x-fast-mini": {
150
  "name": "Scira X-Fast Mini",
151
  "description": "Ultra-fast mini model for quick responses",
152
- "context_length": 4096,
153
- "max_tokens": 2048
154
  },
155
  "scira-x-fast": {
156
  "name": "Scira X-Fast",
157
  "description": "High-speed model optimized for performance",
158
- "context_length": 8192,
159
- "max_tokens": 4096
160
  },
161
  "scira-5-nano": {
162
  "name": "Scira 5 Nano",
163
  "description": "Lightweight nano model for simple tasks",
164
- "context_length": 2048,
165
- "max_tokens": 1024
166
  },
167
  "scira-google-lite": {
168
  "name": "Scira Google Lite",
169
  "description": "Google-powered lite model for search and reasoning",
170
- "context_length": 12288,
171
- "max_tokens": 6144
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