mirror of
https://github.com/Ladebeze66/llm_ticket3.git
synced 2025-12-16 07:17:45 +01:00
8 lines
173 B
Python
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'] |