T-579 内置默认AI提示词

This commit is contained in:
chengma
2026-07-10 09:00:24 +08:00
parent 9742448750
commit e5b7fc4afa
11 changed files with 306 additions and 4 deletions
+7 -1
View File
@@ -7,13 +7,19 @@ include config files, SQLite databases, Chrome profiles, generated images,
logs, prompts, or other operator data.
"""
from PyInstaller.utils.hooks import collect_data_files
block_cipher = None
default_prompt_datas = collect_data_files(
"app.default_prompts",
includes=["**/*.txt"],
)
a = Analysis(
["main.py"],
pathex=[],
binaries=[],
datas=[],
datas=default_prompt_datas,
hiddenimports=[
"PySide6.QtCore",
"PySide6.QtGui",