feat: Add GEMINI.md and update README files

This commit is contained in:
tukuaiai
2025-12-18 13:21:08 +08:00
parent 275bc9cc3b
commit fe06ba9b1b
32 changed files with 2117 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
@echo off
echo 安装打包工具...
pip install pyinstaller -q
echo 开始打包...
pyinstaller --onefile --name ai-chat-converter ^
--add-data "src;src" ^
--hidden-import tiktoken_ext.openai_public ^
--hidden-import tiktoken_ext ^
--collect-data tiktoken ^
src/main.py
echo.
echo 完成! 输出: dist\ai-chat-converter.exe
pause