mirror of
https://github.com/Ladebeze66/AIagent.git
synced 2025-12-15 19:26:49 +01:00
15 lines
545 B
Python
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'
|
|
] |