Luigi commited on
Commit
2129c2f
·
1 Parent(s): 70126c5

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

Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -205,10 +205,10 @@ AVAILABLE_MODELS = {
205
  },
206
  },
207
  "lfm2_2_6b_transcript": {
208
- "name": "LFM2 2.6B Transcript (8K Context)",
209
  "repo_id": "LiquidAI/LFM-2.6B-Transcript-GGUF",
210
  "filename": "*Q4_0.gguf",
211
- "max_context": 8192,
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": {