Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
J
jinchat-server
概览
概览
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
aigc-pioneer
jinchat-server
Commits
7d4560e5
提交
7d4560e5
authored
4月 19, 2023
作者:
imClumsyPanda
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update local_doc_qa.py
上级
25ecc7f8
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
20 行增加
和
8 行删除
+20
-8
api.py
api.py
+4
-3
local_doc_qa.py
chains/local_doc_qa.py
+15
-4
cli_demo.py
cli_demo.py
+1
-1
没有找到文件。
api.py
浏览文件 @
7d4560e5
...
...
@@ -54,10 +54,11 @@ async def upload_file(UserFile: UploadFile=File(...)):
# print(UserFile.filename)
with
open
(
filepath
,
'wb'
)
as
f
:
f
.
write
(
content
)
vs_path
=
local_doc_qa
.
init_knowledge_vector_store
(
filepath
)
vs_path
,
files
=
local_doc_qa
.
init_knowledge_vector_store
(
filepath
)
response
=
{
'msg'
:
'seccessful'
,
'status'
:
1
'msg'
:
'seccess'
if
len
(
files
)
>
0
else
'fail'
,
'status'
:
1
if
len
(
files
)
>
0
else
0
,
'loaded_files'
:
files
}
except
Exception
as
err
:
...
...
chains/local_doc_qa.py
浏览文件 @
7d4560e5
...
...
@@ -53,7 +53,9 @@ class LocalDocQA:
self
.
top_k
=
top_k
def
init_knowledge_vector_store
(
self
,
filepath
:
str
or
List
[
str
]):
filepath
:
str
or
List
[
str
],
vs_path
:
str
or
os
.
PathLike
=
None
):
loaded_files
=
[]
if
isinstance
(
filepath
,
str
):
if
not
os
.
path
.
exists
(
filepath
):
print
(
"路径不存在"
)
...
...
@@ -63,6 +65,7 @@ class LocalDocQA:
try
:
docs
=
load_file
(
filepath
)
print
(
f
"{file} 已成功加载"
)
loaded_files
.
append
(
filepath
)
except
Exception
as
e
:
print
(
e
)
print
(
f
"{file} 未能成功加载"
)
...
...
@@ -74,6 +77,7 @@ class LocalDocQA:
try
:
docs
+=
load_file
(
fullfilepath
)
print
(
f
"{file} 已成功加载"
)
loaded_files
.
append
(
fullfilepath
)
except
Exception
as
e
:
print
(
e
)
print
(
f
"{file} 未能成功加载"
)
...
...
@@ -83,14 +87,21 @@ class LocalDocQA:
try
:
docs
+=
load_file
(
file
)
print
(
f
"{file} 已成功加载"
)
loaded_files
.
append
(
file
)
except
Exception
as
e
:
print
(
e
)
print
(
f
"{file} 未能成功加载"
)
vector_store
=
FAISS
.
from_documents
(
docs
,
self
.
embeddings
)
vs_path
=
f
"""./vector_store/{os.path.splitext(file)[0]}_FAISS_{datetime.datetime.now().strftime("
%
Y
%
m
%
d_
%
H
%
M
%
S")}"""
if
vs_path
and
os
.
path
.
isdir
(
vs_path
):
vector_store
=
FAISS
.
load_local
(
vs_path
,
self
.
embeddings
)
vector_store
.
add_documents
(
docs
)
else
:
if
not
vs_path
:
vs_path
=
f
"""{VS_ROOT_PATH}{os.path.splitext(file)[0]}_FAISS_{datetime.datetime.now().strftime("
%
Y
%
m
%
d_
%
H
%
M
%
S")}"""
vector_store
=
FAISS
.
from_documents
(
docs
,
self
.
embeddings
)
vector_store
.
save_local
(
vs_path
)
return
vs_path
if
len
(
docs
)
>
0
else
None
return
vs_path
if
len
(
docs
)
>
0
else
None
,
loaded_files
def
get_knowledge_based_answer
(
self
,
query
,
...
...
cli_demo.py
浏览文件 @
7d4560e5
...
...
@@ -24,7 +24,7 @@ if __name__ == "__main__":
vs_path
=
None
while
not
vs_path
:
filepath
=
input
(
"Input your local knowledge file path 请输入本地知识文件路径:"
)
vs_path
=
local_doc_qa
.
init_knowledge_vector_store
(
filepath
)
vs_path
,
_
=
local_doc_qa
.
init_knowledge_vector_store
(
filepath
)
history
=
[]
while
True
:
query
=
input
(
"Input your question 请输入问题:"
)
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论