mirror of
https://github.com/Ladebeze66/projetcbaollm.git
synced 2025-12-15 19:06:53 +01:00
9 lines
233 B
Python
Executable File
9 lines
233 B
Python
Executable File
#!/home/fgras-ca/gui_ollama/gui/bin/python3
|
|
# -*- coding: utf-8 -*-
|
|
import re
|
|
import sys
|
|
from typer.cli import main
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
sys.exit(main())
|