Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
J
jinchat-server
概览
概览
详情
活动
周期分析
版本库
存储库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
问题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
aigc-pioneer
jinchat-server
Commits
37ceeae6
提交
37ceeae6
authored
4月 21, 2023
作者:
soon
提交者:
imClumsyPanda
4月 21, 2023
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
提交更
上级
d35eb120
隐藏空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
33 行增加
和
16 行删除
+33
-16
local_doc_qa.py
chains/local_doc_qa.py
+18
-15
model_config.py
configs/model_config.py
+2
-1
chatglm_llm.py
models/chatglm_llm.py
+13
-0
没有找到文件。
chains/local_doc_qa.py
浏览文件 @
37ceeae6
...
...
@@ -117,22 +117,25 @@ class LocalDocQA:
问题:
{question}"""
prompt
=
PromptTemplate
(
template
=
prompt_template
,
input_variables
=
[
"context"
,
"question"
]
)
self
.
llm
.
history
=
chat_history
vector_store
=
FAISS
.
load_local
(
vs_path
,
self
.
embeddings
)
knowledge_chain
=
RetrievalQA
.
from_llm
(
llm
=
self
.
llm
,
retriever
=
vector_store
.
as_retriever
(
search_kwargs
=
{
"k"
:
self
.
top_k
}),
prompt
=
prompt
)
knowledge_chain
.
combine_documents_chain
.
document_prompt
=
PromptTemplate
(
input_variables
=
[
"page_content"
],
template
=
"{page_content}"
)
if
vs_path
is
None
or
vs_path
==
""
:
# or (not os.path.exists(vs_path))
result
=
self
.
llm
.
chat
(
query
)
else
:
prompt
=
PromptTemplate
(
template
=
prompt_template
,
input_variables
=
[
"context"
,
"question"
]
)
self
.
llm
.
history
=
chat_history
vector_store
=
FAISS
.
load_local
(
vs_path
,
self
.
embeddings
)
knowledge_chain
=
RetrievalQA
.
from_llm
(
llm
=
self
.
llm
,
retriever
=
vector_store
.
as_retriever
(
search_kwargs
=
{
"k"
:
self
.
top_k
}),
prompt
=
prompt
)
knowledge_chain
.
combine_documents_chain
.
document_prompt
=
PromptTemplate
(
input_variables
=
[
"page_content"
],
template
=
"{page_content}"
)
knowledge_chain
.
return_source_documents
=
True
knowledge_chain
.
return_source_documents
=
True
result
=
knowledge_chain
({
"query"
:
query
})
self
.
llm
.
history
[
-
1
][
0
]
=
query
...
...
configs/model_config.py
浏览文件 @
37ceeae6
...
...
@@ -19,10 +19,11 @@ llm_model_dict = {
"chatglm-6b-int4-qe"
:
"THUDM/chatglm-6b-int4-qe"
,
"chatglm-6b-int4"
:
"THUDM/chatglm-6b-int4"
,
"chatglm-6b"
:
"THUDM/chatglm-6b"
,
"chatyuan"
:
"ClueAI/ChatYuan-large-v2"
,
}
# LLM model name
LLM_MODEL
=
"chatglm-6b"
LLM_MODEL
=
"chat
yuan"
#"chat
glm-6b"
# Use p-tuning-v2 PrefixEncoder
USE_PTUNING_V2
=
False
...
...
models/chatglm_llm.py
浏览文件 @
37ceeae6
...
...
@@ -82,6 +82,19 @@ class ChatGLM(LLM):
self
.
history
=
self
.
history
+
[[
None
,
response
]]
return
response
def
chat
(
self
,
prompt
:
str
)
->
str
:
response
,
_
=
self
.
model
.
chat
(
self
.
tokenizer
,
prompt
,
history
=
[],
#self.history[-self.history_len:] if self.history_len>0 else
max_length
=
self
.
max_token
,
temperature
=
self
.
temperature
,
)
torch_gc
()
self
.
history
=
self
.
history
+
[[
None
,
response
]]
return
response
def
load_model
(
self
,
model_name_or_path
:
str
=
"THUDM/chatglm-6b"
,
llm_device
=
LLM_DEVICE
,
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论