mirror of
https://github.com/tcsenpai/agenticSeek.git
synced 2025-06-06 11:05:26 +00:00
9 lines
275 B
Python
Executable File
9 lines
275 B
Python
Executable File
#!/Users/mlg/Documents/A-project/AI/Agents/agenticSeek/agentic_env/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
import re
|
|
import sys
|
|
from pypinyin.__main__ import main
|
|
if __name__ == '__main__':
|
|
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
sys.exit(main())
|