llm_ticket3/llm/__init__.py
2025-04-02 09:01:55 +02:00

8 lines
173 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from .llm_base import LLM
from .mistral import Mistral
from .pixtral import Pixtral
__all__ = ['LLM', 'Mistral', 'Pixtral']