[Typo] Possible error in model_type from LTXV base model
- Dominant language
- Python
- Stars
- 133k
- Forks
- 15.7k
- Avg merge
- 1d 10h
- Merged PRs (30d)
- 153
Description
### Expected Behavior
Maybe I'm wrong but the `model_type` from from the LTXV class init (`model_base.py`) is not `ModelType.FLUX` but `ModelType.FLOW` ?
```
class LTXV(BaseModel):
def __init__(self, model_config, model_type=ModelType.FLOW, device=None):
super().__init__(model_config, model_type, device=device, unet_model=comfy.ldm.lightricks.model.LTXVModel) #TODO
```
### Actual Behavior
The current implementation is:
```
class LTXV(BaseModel):
def __init__(self, model_config, model_type=ModelType.FLUX, device=None):
super().__init__(model_config, model_type, device=device, unet_model=comfy.ldm.lightricks.model.LTXVModel) #TODO
```
### Steps to Reproduce
Nothing
### Debug Logs
```powershell
Nothing
```
### Other
_No response_
Contributor guide
Assessment
This issue has not been assessed yet.