Spaces:
Running
Running
fix: Correct LFM2 2.6B Transcript context window to 32K
Browse files- Updated max_context from 8192 to 32768 (32K)
- Updated display name from 8K to 32K Context
- Matches official LiquidAI documentation
app.py
CHANGED
|
@@ -205,10 +205,10 @@ AVAILABLE_MODELS = {
|
|
| 205 |
},
|
| 206 |
},
|
| 207 |
"lfm2_2_6b_transcript": {
|
| 208 |
-
"name": "LFM2 2.6B Transcript (
|
| 209 |
"repo_id": "LiquidAI/LFM-2.6B-Transcript-GGUF",
|
| 210 |
"filename": "*Q4_0.gguf",
|
| 211 |
-
"max_context":
|
| 212 |
"default_temperature": 0.6,
|
| 213 |
"supports_toggle": False,
|
| 214 |
"inference_settings": {
|
|
|
|
| 205 |
},
|
| 206 |
},
|
| 207 |
"lfm2_2_6b_transcript": {
|
| 208 |
+
"name": "LFM2 2.6B Transcript (32K Context)",
|
| 209 |
"repo_id": "LiquidAI/LFM-2.6B-Transcript-GGUF",
|
| 210 |
"filename": "*Q4_0.gguf",
|
| 211 |
+
"max_context": 32768,
|
| 212 |
"default_temperature": 0.6,
|
| 213 |
"supports_toggle": False,
|
| 214 |
"inference_settings": {
|