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

14 lines
345 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from .agent_base import Agent
from .agent_filtre_images import AgentFiltreImages
from .agent_analyse_image import AgentAnalyseImage
from .agent_question_reponse import AgentQuestionReponse
__all__ = [
'Agent',
'AgentFiltreImages',
'AgentAnalyseImage',
'AgentQuestionReponse'
]