| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-06-02 | 326 Bytes | |
| Release v2.7 source code.tar.gz | 2026-06-02 | 17.2 MB | |
| Release v2.7 source code.zip | 2026-06-02 | 17.2 MB | |
| Totals: 3 Items | 34.3 MB | 1 | |
fix: resolve config shadowing crash for custom/LM Studio models
In resolve_model_config(), the local variable 'config' shadowed the imported config module. For models not in _llm_config_map (LM Studio, custom API), the local was None, causing AttributeError on config.CUSTOM_API_MODEL. Rename local to 'cfg' to fix the crash.