| # ip_adapter/__init__.py | |
| from .resampler import Resampler | |
| from .utils import is_torch2_available | |
| # pas obligatoire pour marcher, mais tu peux ajouter : | |
| # from .attention_processor import AttnProcessor, IPAttnProcessor | |
| __all__ = [ | |
| "Resampler", | |
| "is_torch2_available", | |
| # "AttnProcessor", | |
| # "IPAttnProcessor", | |
| ] |