← back to Exo

.typings/mflux/models/flux/model/flux_text_encoder/clip_encoder/encoder_clip.pyi

13 lines

"""
This type stub file was generated by pyright.
"""

import mlx.core as mx
from mlx import nn

class EncoderCLIP(nn.Module):
    def __init__(self, num_encoder_layers: int) -> None: ...
    def __call__(
        self, tokens: mx.array, causal_attention_mask: mx.array
    ) -> mx.array: ...