llm_lab_perso/chat_gui.py
2025-03-27 18:40:52 +01:00

8 lines
156 B
Python

#!/usr/bin/env python3
"""
Interface graphique pour le chat avec les modèles LLM
"""
from utils.chat_ui import main
if __name__ == "__main__":
main()