AIagent/llm_classes/__init__.py
2025-03-24 17:34:55 +01:00

15 lines
545 B
Python

# Importation des classes pour faciliter l'accès
from .llm import LLM
from .mistral import Mistral
from .ollama import Ollama
from .deepseek import DeepSeek
from .perplexity import Perplexity
from .deepl import DeepL
from .rag import RAG
from .llama_vision import LlamaVision
from .agents import Agent, AgentAnalyseImage, AgentAnalyseJSON, AgentQuestionReponse
__all__ = [
'LLM', 'Mistral', 'Ollama', 'DeepSeek', 'Perplexity', 'DeepL', 'RAG',
'LlamaVision', 'Agent', 'AgentAnalyseImage', 'AgentAnalyseJSON', 'AgentQuestionReponse'
]