mirror of
https://github.com/Ladebeze66/llm_lab.git
synced 2025-12-16 02:57:47 +01:00
8 lines
156 B
Python
Executable File
8 lines
156 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
Interface graphique pour le chat avec les modèles LLM
|
|
"""
|
|
from utils.chat_ui import main
|
|
|
|
if __name__ == "__main__":
|
|
main() |