新增功能:自定义知识库、生成指导
允许用户上传自己的知识库(建议在线版API,或上下文长的用户使用) 允许在生成下一章节时加入提前指导 模型Temperature参数支持
This commit is contained in:
@@ -6,7 +6,19 @@ a = Analysis(
|
||||
pathex=[],
|
||||
binaries=[],
|
||||
datas=[],
|
||||
hiddenimports=['typing_extensions', 'langchain-openai', 'langgraph', 'openai', 'chromadb','langchain-community','pydantic','pydantic.deprecated.decorator'],
|
||||
hiddenimports=['typing_extensions',
|
||||
'langchain-openai',
|
||||
'langgraph',
|
||||
'openai',
|
||||
'chromadb',
|
||||
'nltk',
|
||||
'sentence_transformers',
|
||||
'scikit-learn',
|
||||
'langchain-community',
|
||||
'pydantic',
|
||||
'pydantic.deprecated.decorator',
|
||||
'chromadb.utils.embedding_functions.onnx_mini_lm_l6_v2'
|
||||
],
|
||||
hookspath=[],
|
||||
hooksconfig={},
|
||||
runtime_hooks=[],
|
||||
@@ -21,7 +33,7 @@ exe = EXE(
|
||||
a.scripts,
|
||||
[],
|
||||
exclude_binaries=True,
|
||||
name='AI_NovelGenerator_V1.0',
|
||||
name='AI_NovelGenerator_V1.1',
|
||||
debug=False,
|
||||
bootloader_ignore_signals=False,
|
||||
strip=False,
|
||||
@@ -41,5 +53,5 @@ coll = COLLECT(
|
||||
strip=False,
|
||||
upx=True,
|
||||
upx_exclude=[],
|
||||
name='AI_NovelGenerator_V1.0',
|
||||
name='AI_NovelGenerator_V1.1',
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user