更新README,增加一些杂项文件

This commit is contained in:
YILING0013
2025-01-30 23:13:55 +08:00
parent 04b5cb598e
commit aebaf8efc1
5 changed files with 56 additions and 2 deletions
+4 -1
View File
@@ -1,5 +1,8 @@
/__pycache__
/Novel_Src /Novel_Src
/vectorstore /vectorstore
/.conda /.conda
/build
/dist
/.vscode
__pycache__
config.json config.json
+1 -1
View File
@@ -22,7 +22,7 @@
## **2. 安装依赖** ## **2. 安装依赖**
**手动安装以下依赖** **手动安装以下依赖**
```bash ```bash
pip install openai langchain chromadb langchain_openai langchain_chroma langgraph typing_extensions pip install openai langchain chromadb langchain_openai langchain_chroma langgraph typing_extensions langchain-community
``` ```
--- ---
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

+45
View File
@@ -0,0 +1,45 @@
# -*- mode: python ; coding: utf-8 -*-
a = Analysis(
['main.py'],
pathex=[],
binaries=[],
datas=[],
hiddenimports=['typing_extensions', 'langchain-openai', 'langgraph', 'openai', 'chromadb','langchain-community','pydantic','pydantic.deprecated.decorator'],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=[],
noarchive=False,
optimize=0,
)
pyz = PYZ(a.pure)
exe = EXE(
pyz,
a.scripts,
[],
exclude_binaries=True,
name='AI_NovelGenerator_V1.0',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=True,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
icon=['icon.ico']
)
coll = COLLECT(
exe,
a.binaries,
a.datas,
strip=False,
upx=True,
upx_exclude=[],
name='AI_NovelGenerator_V1.0',
)
+6
View File
@@ -0,0 +1,6 @@
typing_extensions
langchain-openai
langgraph
openai
chromadb
langchain-community