Skip to content

Commit aebaf8e

Browse files
committed
更新README,增加一些杂项文件
1 parent 04b5cb5 commit aebaf8e

File tree

5 files changed

+56
-2
lines changed

5 files changed

+56
-2
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
/__pycache__
21
/Novel_Src
32
/vectorstore
43
/.conda
4+
/build
5+
/dist
6+
/.vscode
7+
__pycache__
58
config.json

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
## **2. 安装依赖**
2323
**手动安装以下依赖**
2424
```bash
25-
pip install openai langchain chromadb langchain_openai langchain_chroma langgraph typing_extensions
25+
pip install openai langchain chromadb langchain_openai langchain_chroma langgraph typing_extensions langchain-community
2626
```
2727

2828
---

icon.ico

16.6 KB
Binary file not shown.

main.spec

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
# -*- mode: python ; coding: utf-8 -*-
2+
3+
4+
a = Analysis(
5+
['main.py'],
6+
pathex=[],
7+
binaries=[],
8+
datas=[],
9+
hiddenimports=['typing_extensions', 'langchain-openai', 'langgraph', 'openai', 'chromadb','langchain-community','pydantic','pydantic.deprecated.decorator'],
10+
hookspath=[],
11+
hooksconfig={},
12+
runtime_hooks=[],
13+
excludes=[],
14+
noarchive=False,
15+
optimize=0,
16+
)
17+
pyz = PYZ(a.pure)
18+
19+
exe = EXE(
20+
pyz,
21+
a.scripts,
22+
[],
23+
exclude_binaries=True,
24+
name='AI_NovelGenerator_V1.0',
25+
debug=False,
26+
bootloader_ignore_signals=False,
27+
strip=False,
28+
upx=True,
29+
console=True,
30+
disable_windowed_traceback=False,
31+
argv_emulation=False,
32+
target_arch=None,
33+
codesign_identity=None,
34+
entitlements_file=None,
35+
icon=['icon.ico']
36+
)
37+
coll = COLLECT(
38+
exe,
39+
a.binaries,
40+
a.datas,
41+
strip=False,
42+
upx=True,
43+
upx_exclude=[],
44+
name='AI_NovelGenerator_V1.0',
45+
)

requirements.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
typing_extensions
2+
langchain-openai
3+
langgraph
4+
openai
5+
chromadb
6+
langchain-community

0 commit comments

Comments
 (0)